--建立表空間權限
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