ERR_1000001:未知的系統(tǒng)錯誤(ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
ORA-06512: at "WMSYS.WM_CONCAT_IMPL", line 31
) Nested Exception is:ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
ORA-06512: at "WMSYS.WM_CONCAT_IMPL", line 31
可以用如下語句進行temp 表空間的使用情況:
select * from
(select username,session_addr,sql_id,contents,segtype,blocks*8/1024/1024 gb
from gv$sort_usage order by blocks desc)
where rownum<=200;
經(jīng)檢查發(fā)現(xiàn)是一個查詢語句把temp表空間給撐滿了。