1、创建表空间
create tablespace 表空间名 logging datafile 'C:\test.dbf' size 10M
2、删除表空间
drop tablespace 表空间名 including contents and datafiles
3、修改表空间名称
alter tablespace 原来表空间名 rename to 新表空间名;
4、创建用户
create user 用户名 identified by 密码 default tablespace 表空间名
5、删除用户
drop user 用户名 cascade