臨時表空間達到幾十G,執行SQL語句報錯解決

sky850623發表於2014-11-05
最近開發人員反應執行SQL語句時報以下錯誤:

查了下是臨時表空間達到了32g
解決辦法:
1. 建立一個新的臨時表空間
create temporary tablespace temp2 tempfile '/app/oradata/temp02.dbf' size 4096M autoextend on next 640k;
2.把預設臨時表空間改為temp2
alter database default temporary tablespace temp2
3.刪除舊的臨時表空間
drop tablespace temp including contents and datafiles;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26937943/viewspace-1321609/,如需轉載,請註明出處,否則將追究法律責任。

相關文章