DBMS_WORKLOAD_REPOSITORY包

cow977發表於2011-03-11
強制MMON程式立即收集快照:
execute DBMS_WORKLOAD_REPOSITORY.create_snapshot;
 
調整快照管理:
execute DBMS_WORKLOAD_REPOSITORY.modify_snapshot_settings(retention =>43200, interval =>30);
快照每30分鐘採集一次,保留30天(60*24*30=43200),單位:分鐘。
 
將指定快照無限期地儲存為指定的基準:
execute DBMS_WORKLOAD_REPOSITORY.create_baseline(start_snap_id =>487, end_snap_id =>488, baseline_name => 'FridayPM');
 
列出AWR中的所有快照:
select snap_id, begin_interval_time, from dba_hist_snapshot
order by begin_interval_time desc;

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

相關文章