working with ASH and AWR
The ASH contains recent information on active sessions sampled every second. The AWR takes snapshots of the database every hour, so the information in the AWR could be almost an hour old and will not help in diagnosing issues that are current on the database. Typically, to resolve issues currently on the database, detailed information pertaining to the last 5 or 10 minutes is critical. Because recording session activity is expensive, ASH samples V$SESSION every second and records the events for which the sessions are waiting.ASH is designed as a rolling buffer in memory; old information is overwritten after saving it to the AWR. You can query ASH information using the V$ACTIVE_SESSION_HISTORY view.The view contains one row for each active session per sample and returns the latest session’s sample rows first.
The AWR is a collection of persistent system performance statistics owned by the SYS schema.Over time, you should purge the statistics, and sometimes you may want to get a snapshot of the system for performance diagnosing outside the regular interval. 10g provides several programs in a package named DBMS_WORKLOAD_REPOSITORY. Using these programs, you can manage the snapshots and perform. baselines.
使用dbms_workload_repository.create_snapshot手工建立2個snapshot:
EXEC dbms_workload_repository.create_snapshot();
..................................
EXEC dbms_workload_repository.create_snapshot();
接著可以生成報告
You can view AWR reports using the awrrpt.sql and awrrpti.sql scripts located in the $ORACLE_HOME/rdbms/admin directory. The awrrpt.sql script. displays statistics for a range of snapshot IDs. The report can be saved as text file or HTML file. The awrrpti.sql script. is similar to awrrpt.sql; the only difference is you can specify the database ID and instance ID as parameters. The report contains the following categories of information:
Report summary:
Wait events
statistics
Instance activity statistics
I/O statistics
Buffer pool statistics
Advisory statistics
Wait statistics
Undo statistics
Latch statistics
Segment statistics
Dictionary cache statistics
Library cache statistics
SGA statistics
Resource limit statistics
init.ora parameters
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/19602/viewspace-1021230/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- In 10g/11g,working with ASH and AWR
- oracle awr ashOracle
- ASH, AWR , 等待事件事件
- 學用ORACLE AWR和ASH特性(1)-ASH和AWR的故事Oracle
- Oracle10g ASH and AWROracle
- 學用ORACLE AWR和ASH特性(8)-生成ASH報表Oracle
- statspack、awr、addm,ash影片分享
- AWR、ASH、ADDM和顧問程式
- ASH、AWR、ADDM區別聯絡
- statspack、awr、addm,ash視訊分享
- 學用ORACLE AWR和ASH特性(7)-AWR的幾個幫Oracle
- Oracle AWR與ASH效能報告深入解析Oracle
- oracle效能調憂工具AWR,ASH,ADDMOracle
- ASH buffers 資料取樣到AWR的問題
- Oracle10g AWR及ASH詳解(final)Oracle
- ASH可以生成指定的session或sql_id的報告,ASH和AWR的區別SessionSQL
- [轉]Oracle資料庫ASH和AWR的簡單介紹Oracle資料庫
- ORACLE AWR效能報告和ASH效能報告的解讀Oracle
- Oracle效能調整的三把利劍--ASH,AWR,ADDMOracle
- 轉載詳細的Oracle ASH/AWR介紹及報告分析Oracle
- 10G新特性筆記之AWR,ASH,METRIC,ALERT&ADVISOR筆記
- 學用ORACLE AWR和ASH特性(4)-生成指定SQL的統計報表OracleSQL
- oracle實用sql(9)--批量生成一天的ash報告或awr報告OracleSQL
- oracle ASHOracle
- Working with State
- Oracle AWR與ASH效能報告深入解析-核心引數詳解-手操-圖文-可下載Oracle
- 學用ORACLE AWR和ASH特性(3)-生成指定資料庫例項的統計報表Oracle資料庫
- 【筆記】ash筆記
- Active Session History (ASH)Session
- Working with Errors in Go 1.13ErrorGo
- Working with Matplotlib on OSX
- RxSwift (二) Working with SubjectsSwift
- Working With Node.js and RedisNode.jsRedis
- SCC.369 Working with GPIO
- ASH(Active Session History)——概述(1)!Session
- 如何設定ASH buffer大小
- ash的一點總結
- Get a working copy of a bare repository