ORA-00959: tablespace 'TB01' does not exist


當前的表空間如下:

SQL> select name from v$tablespace;

NAME
--------------------------------------------------------------------------------
SYSTEM
SYSAUX
UNDOTBS1
USERS
TEMP
tb01
tb02

刪除表空間,報錯如下

SQL> drop tablespace tb01 including contents and datafiles;
drop tablespace tb01 including contents and datafiles
*
ERROR at line 1:
ORA-00959: tablespace 'TB01' does not exist

原因:建立表空間的時候,使用了小寫名稱

解決辦法:因此刪除時候必須加上雙引號

SQL> drop tablespace "tb01" including contents and datafiles;

Tablespace dropped.
 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM