Oracle 10g 新增的dba_tab_modifications檢視
ColumnDatatypeNULLDescriptionTABLE_OWNERVARCHAR2(30)
Owner of the modified table.TABLE_NAMEVARCHAR2(30)
Name of the modified tablePARTITION_NAMEVARCHAR2(30)
Name of the modified partitionSUBPARTITION_NAMEVARCHAR2(30)
Name of the modified subpartitionINSERTSNUMBER
Approximate number of inserts since the last time statistics were gatheredUPDATESNUMBER
Approximate number of updates since the last time statistics were gatheredDELETESNUMBER
Approximate number of deletes since the last time statistics were gatheredTIMESTAMPDATE
Indicates the last time the table was modifiedDROP_SEGMENTSNUMBER
Number of partition and subpartition segments dropped since the last analyze
dba_tab_modifications的重新整理機制
oracle 10g 的自動分析原則,就是看資料量變更超過了10% ,就觸發dbms_stat 收集統計資訊
這個10% 的就靠dba_tab_modifications 來統計的,
這個表是記錄自上次執行dbms_stat 以來的表的資料量的變更的統計,insert, delete, update
為了效能優先這個表式不是實時跟新的, 需要執行一個儲存過程來重新整理
[code]
dbms_stats.FLUSH_DATABASE_MONITORING_INFO();
[/code]
或者開啟awr 功能也會自動呼叫這個過程重新整理
這個過程執行很快,沒有什麼效能影響
可以考慮掛個crontab 定期執行。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29209863/viewspace-2126264/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle 10g 常用檢視Oracle 10g
- Oracle 常用效能檢視一覽表(10g)Oracle
- Oracle10g新增的檢視dba_tablespace_usage_metricsOracle
- oracle 10g 命令檢視錶空間大小情況Oracle 10g
- 10G開始Oracle區分物化檢視和表Oracle
- Oracle 10G中spool新增加的方法Oracle 10g
- Oracle 10g新增DROP DATABASE命令Oracle 10gDatabase
- 檢視Oracle Database 10g 的資料庫支援的作業系統OracleDatabase資料庫作業系統
- oracle 10G 物化檢視新特性(測試效果不理想)Oracle 10g
- Oracle普通檢視和物化檢視的區別Oracle
- 檢視、修改oracle字符集,檢視oracle版本Oracle
- Oracle常用的V$檢視Oracle
- 11、Oracle中的檢視Oracle
- Oracle11gr2物化檢視日誌新增PURGE語句Oracle
- Oracle檢視:常用動態效能檢視Oracle
- oracle 10g 新增:自定義聚集函式Oracle 10g函式
- oracle效能檢視Oracle
- oracle檢視大全Oracle
- 管理oracle檢視Oracle
- oracle物化檢視Oracle
- Oracle的V$檢視和DBA_檢視的參考提示Oracle
- Linux下檢視、新增及配置Linux
- 檢視oracle臨時表空間佔用率的檢視Oracle
- oracle-一些檢視效能相關的檢視Oracle
- 10g 動態效能檢視[final]
- Oracle 12C R2-新特性-新增兩個檢視:方便檢視trace檔案和內容Oracle
- Oracle 10G RAC巡檢指令碼Oracle 10g指令碼
- ORACLE 程式的作用及檢視Oracle
- 檢視oracle rac的節點Oracle
- 9個重要的oracle檢視Oracle
- oracle常用的動態檢視Oracle
- ORACLE中的物化檢視建立Oracle
- 動態新增子檢視 UIView 的正確方法UIView
- 轉:Oracle RAC 新增和刪除OCR(10g)Oracle
- Oracle OCP(24):檢視Oracle
- Oracle EMGC檢視埠OracleGC
- Oracle dba 常用檢視Oracle
- Oracle檢視TOP SQLOracleSQL