--查看表空間 select tablespace_name from dba_tablespaces; --查看表空間存放位置 select name from v$datafile; --刪除用戶(cascade包含資料庫的關聯) drop user yang cascade; --刪除表空間( ...
--查看表空間
select tablespace_name from dba_tablespaces;
--查看表空間存放位置
select name from v$datafile;
--刪除用戶(cascade包含資料庫的關聯)
drop user yang cascade;
--刪除表空間(包含物理文件)
drop tablespace yang_space including contents and datafiles;
oracle中有對象不能刪除的情況,大多數都與創建對象時對象名中加了雙引號有關係。
對資料庫的操作,規範非常重要!!!