--建立表空间权限
grant create tablespace to QJT
--删除表空间权限
grant DROP tablespace to QJTapp
--建立表空间
create tablespace qjttest
datafile 'F:\app\QiuShao\oradata\orcl\qjt_1.dbf' size 10m,
'F:\app\QiuShao\oradata\orcl\qjt_2.dbf' size 10m
autoextend on next 32m maxsize unlimitedspa
--检索当前用户的表空间
select tablespace_name from user_tablespaces; it
--删除表空间
drop tablespace qjttesttable
--删除表空间的同时清除物理文件
drop tablespace qjttest including contents and datafilestest