--创建用户 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;