tablespace 表空间

--创建用户 yc 并赋予权限
	create user 用户名 identified by 密码;
	grant create session to 用户名;  --权限
--删除用户
	drop user 用户名;
--查看表空间
	select *from dba_tablespaces;
	   --system :系统表空间
	--undotbs1:撤销表空间
	--sysaux:系统辅助表空间
	--temp:临时表空间
	--users:用户表空间
	--example:实例表空间
--创建表空间语法
	create tablespace 表空间名字
	datafile 'F:\表空间名字.dbf'  --F表示存在的磁盘位置
	   size 10M  --数据文件的初始大小
--删除表空间
	drop tablespace 表空间名 including contents and datafiles;
--创建表空间后,设置自动扩展数据文件大小
	create tablespace 表空间名
	datafile 'F:\表空间名.dbf'
	size 10M
	autoextend on next 200M
	maxsize 2048M
--修改表空间权限
	alter tablespace 表空间名  offline;   --离线
	alter tablespace 表空间名  online;    --在线
	alter tablespace 表空间名  read only; --只读
	alter tablespace 表空间名  read write;--读写
--授予权限
	grant create session to 用户名;
	grant create table to  用户名;
	grant unlimited tablespace to 用户名;
--创建表 emp 并查询
	create table emp( --表名为emp
		empno number(4),
		empname varchar(10),
		depto  int
	
	select * from emp;


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值