使用user_tab_modifications檢視業務運算元據庫記錄

eymit發表於2016-11-25


1.使用系統管理員使用者重新整理統計
exec DBMS_STATS.FLUSH_DATABASE_MONITORING_INFO;

2.在owner使用者下查詢已經存在記錄,執行這些記錄並清空
select 'exec dbms_stats.gather_table_stats(ownname =>  '||''''||''''||',tabname => '||''''||TABLE_NAME||''''||' ,cascade=>true,estimate_percent=>DBMS_STATS.AUTO_SAMPLE_SIZE,method_opt=> '||''''|| 'for all columns size 1' ||''''||' );'  from user_tab_modifications  t  where t.table_name not like '%MLOG$_%'


3.手動在頁面上執行操作


4.使用系統管理員使用者重新整理統計
exec DBMS_STATS.FLUSH_DATABASE_MONITORING_INFO;

5.查詢更新了哪些操作
select TABLE_NAME,INSERTS,UPDATES,DELETES,TIMESTAMP from user_tab_modifications  t  where t.table_name not like '%MLOG$_%'

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

相關文章