大家好,又见面了,我是你们的朋友全栈君。
— 创建表空间
–语法: create tablespace 表空间名 datafile ‘路径’ size 100M [aotuextend to];
create tablespace myspace
datafile ‘d:/myspace/myspace.dbf’
size 100M
autoextend on;
–给表空间重命名
— 语法: alter tablespace 旧名称 rename to 新名称;
alter tablespace newspace rename to myspace;
— 删除表空间
–[including contents cascade constraints] 并把包含的数据和约束删除
— 语法: drop tablespace 表空间名 [including contents cascade constraints];
drop tablespace myspace including contents cascade constraints;
— 创建一个临时表空间
–语法: create temporary tablespace 临时表空间名 tempfile ‘路径’ size 100M;
create temporary tablespace mytempspace
tempfile ‘d:/myspace/mytempspace.dbf’
size 20M;
— 创建一个用户,并指定表空间和临时表空间
create user lisi
identified by lisi
default tablespace myspace
temporary tablespace mytempspace;
— 一个新建的用户,是没有任何权限的,不能连接
— 给用户授予权限
–连接数据库的权限
grant create session to lisi;
–创建表的权限
grant create table to lisi;
— 使用表空间的权限
grant unlimited tablespace to lisi;
— 创建一张用户表
create table tb_user(
u_id number primary key,u_name varchar2(50),u_pass varchar2(20)
);
—查看表空间
select * from v$tablespace;
总结
如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。
本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/157527.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...