首先以DBA连接到数据库:sqlplus / as sysdba;
--创建表空间
create tablespace test_tablespace datafile 'D:\developer\oracle\product\10.2.0\oradata\orcl\test.dbf' size 1024M;
--创建用户
create user test identified by test default tablespace test_tablespace;
--授权
grant dba,connect,resource to test;
--删除用户
drop user test cascade;--说明: 删除了user,只是删除了该user下的schema objects,是不会删除相应的tablespace的。
--删除表空间
DROP TABLESPACE test_tablespace INCLUDING CONTENTS AND DATAFILES;