oracle 11g sysaux表空間使用率非常高的問題解決

甲骨文技術支援發表於2017-10-28

今天發現有個資料庫的sysaux表空間暴漲,快要100%了,如圖:



檢視一下是什麼內容佔用了空間:



是awr的相關內容,需要重建awr來釋放空間,具體重建步驟,請參考我的另一篇博文:http://blog.itpub.net/20893244/viewspace-2146541/


~~~~~~~~~~~~~~臨時刪除的辦法~~~~~~~~~~~~~~~··

truncate  table  WRH$_ACTIVE_SESSION_HISTORY;
truncate  table  WRH$_EVENT_HISTOGRAM;
truncate  table  WRH$_SQLSTAT;
truncate  table  WRH$_LATCH_MISSES_SUMMARY;
truncate  table  WRH$_LATCH;
truncate  table  WRH$_SYSSTAT;
truncate  table  WRH$_SEG_STAT;
truncate  table  WRH$_PARAMETER;
truncate  table  WRH$_SYSTEM_EVENT;
truncate  table  WRH$_SQL_PLAN;
truncate  table  WRH$_DLM_MISC;
truncate  table  WRH$_SERVICE_STAT;
truncate  table  WRH$_TABLESPACE_STAT;
truncate  table  WRH$_ROWCACHE_SUMMARY;
truncate  table  WRH$_MVPARAMETER;

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~···

select distinct 'truncate  table  '||segment_name||';',s.bytes/1024/1024
  from dba_segments s
 where s.segment_name like 'WRH$%'
   and segment_type in ('TABLE PARTITION', 'TABLE')
   and s.bytes/1024/1024>100
   order by s.bytes/1024/1024/1024 desc;


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

相關文章