Oracle创建表空间及用户

一、创建表空间

1、创建临时表空间

create temporary tablespace bgt_temp  
tempfile '/u01/app/oracle/oradata/ORCL/temp.dbf' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;

2、创建数据表空间

create tablespace bgt_data  
logging  
datafile '/u01/app/oracle/oradata/ORCL/bgt__data.dbf' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local; 

二、创建用户并指定表空间

1、创建用户并指定表空间

create user username identified by password  default tablespace  tablespace_name  temporary tablespace temp_tablespace_name; 

2、给用户授予权限

grant connect,resource,dba to username;

三、删除表空间及用户

--删除空的表空间,但是不包含物理文件
drop tablespace tablespace_name;
--删除非空表空间,但是不包含物理文件
drop tablespace tablespace_name including contents;
--删除空表空间,包含物理文件
drop tablespace tablespace_name including datafiles;
--删除非空表空间,包含物理文件
drop tablespace tablespace_name including contents and datafiles;
--如果其他表空间中的表有外键等约束关联到了本表空间中的表的字段,就要加上CASCADE CONSTRAINTS
drop tablespace tablespace_name including contents and datafiles CASCADE CONSTRAINTS;

--说明: 删除了user,只是删除了该user下的schema objects,是不会删除相应的tablespace的。
drop user username cascade
  • 4
    点赞
  • 15
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值