oracletemp表空間滿了?
temp表空間過大時,可通過如下方法重建 SQL> create temporary tablespace temp2 tempfile '/opt/oracle/oradata/conner/temp1.dbf' size 200M autoextend off; SQL> alter database default temporary tablespace temp2; SQL> drop tablespace temp; 或者SQL> drop tablespace temp including contents and datafiles cascade constraints(徹底刪除包括操作系統中的臨時表空間的數據文件) 最后在操作系統上把temp的文件刪除,就可以釋放空間。
上一篇mysql怎樣加注釋