How To Read AWR Reports
How To Read AWR Reports
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
7th May
The output of the AWR report contains a wealth of information that you can use to tune your database. The output of the AWR report can be divided into the following sections:
Report Header This section is self explanatory which provides database name, id, instance if RAC , platform information and snap interval. (database workload time duration in review). This report is for instance number 2 of my RAC environment. So if you need to the analysis on RAC environment, you need to do it separately of all the instances in the RAC to see if all the instances are balanced the way they should be.
DB Name
TestRAC
DB Id
Instance
Inst num
Startup Time
2 17-Aug-11 19:08
Release
11.1.0.6.0
RAC
YES
3626203793 TestRac2
Platform
Linux 64-bit for AMD
CPUs
8
Cores
8
Socke ts
2
Me mory (GB)
31. 44
Snap Time 27-Sep-11 01:00:21 27-Sep-11 02:00:43 60.35 (mins) 15.07 (mins)
Load Profile This section provides the snapshot of the database workload occurred during the snapshot interval.
Per Second DB Time(s): DB CPU(s): Redo size: Logical reads: Block changes: Physical reads: Physical writes: User calls: 0.3 0.3 48,933.6 1,124.4 195.9 80.5 4.3 141.4
1 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
DB time(s): Its the amount of time oracle has spent performing database user calls. Note it does not include background processes. DB CPU(s): Its the amount of CPU time spent on user calls. Same as DB time it does not include background process. The value is in microseconds Redo size: For example, the table below shows that an average transaction generates about 19,000 of redo data along with around 48,000 redo per second. Logical reads: Consistent Gets+ DB blocks Gets = Logical reads Block Changes: The number of block modified during the sample interval Physical reads: No of block request causing I/O operation Physical writes: Number of physical writes performed User calls: Number of user queries generated Parses: The total of all parses; both hard and soft. Hard Parses: The parses requiring a completely new parse of the SQL statement. These consume both latches and shared pool area. Soft Parses: Soft parses are not listed but derived by subtracting the hard parses from parses. A soft parse reuses a previous hard parse; hence it consumes far fewer resources. Sorts: No of sorts performed Logons: No of logons during the interval Executes: No of SQL Executes Transactions: No of transactions per second ---------------------------------------------------------------------------
Load Profile
The load profile provides an at-a-glance look at some specific operational statistics. You can compare these statistics with a baseline snapshot report to determine if database activity is different. Values for these statistics are
2 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
presented in two formats. The first is the value per second (for example, how much redo was generated per second) and the second is the value per transaction (for example, 1,024 bytes of redo were generated per transaction). Statistics presented in the load profile include such things as: Redo size - An indication of the amount of DML activity the database is experiencing. Logical and physical reads - A measure of how many IO's (Physical and logical) that the database is performing. User calls - Indicates how many user calls have occurred during the snapshot period. This value can give you some indication if usage has increased. Parses and hard parses - Provides an indication of the efficiency of SQL re-usage. Sorts - This number gives you an indication of how much sorting is occurring in the database. Logons - Indicates how many logons occurred during the snapshot period. Executes - Indicates how many SQL statements were executed during the snapshot period. Transactions - Indicates how many transactions occurred during the snapshot period. Additionally, the load profile section provides the percentage of blocks that were changed per read, the percentage of recursive calls that occurred, the percentage of transactions that were rolled back and the number of rows sorted per sort operation.
Instance Efficiency Percentages (Target 100%) These statistics include several buffer related ratios including the buffer hit percentage and the library hit percentage. Also, shared pool memory usage statistics are included in this section. Instance efficiency should be close to 100 %
Buffer Nowait %: Buffer Hit %: Library Hit %: Execute to Parse %: Parse CPU to Parse Elapsd %:
99.99 Redo NoWait %: 93.06 In-memory Sort %: 98.67 Soft Parse %: 3.40 Latch Hit %: 0.01 % Non-Parse CPU:
Execute to Parse % and Parse CPU to Parse Elapsd %: If the the value are low like in the above case of 3.40 and 0.01 means that there could be a parsing problem. You may need to look at bind variable issues or shared pool sizing issue. Redo NoWait%: Usually this stats is 99 or greater In-memory Sort %: This can tell you how efficient is you sort_area_size, hash_area_size or pga_aggrigate_target are. If you dont have adequate sizes of sort,hash and pga parameters, then you in-memory sort per cent will go down
3 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
Soft parse %: with 98.20 % for the soft parse meaning that about 1.72 % (100 -soft parse) is happening for hard parsing. You might want to look at you bind variables issues. Latch Hit %: should be close to 100. % Non-Parse CPU: Most of our statements were already parsed so we weren't doing a lot of re parsing. Re parsing is high on CPU and should be avoided. ------------------------------------------------------------------------------------------------------------------------------Shared Pool Statistics
Begin Memory Usage %: % SQL with executions>1: % Memory for SQL w/exec>1: 73.86 92.61 94.33
Memory Usage % is the shared pool usage. So here we have use 73.86 per cent of our shared pool and out of that almost 94 percent is being re-used. if Memory Usage % is too large like 90 % it could mean that your shared pool is tool small and if the percent is in 50 for example then this could mean that you shared pool is too large --------------------------------------------------------------------------------------------------------------------------------------Top 5 Timed Foreground Events This section provides insight into what events the Oracle database is spending most of it's time on (see wait events). Each wait event is listed, along with the number of waits, the time waited (in seconds), the average wait per event (in microseconds) and the associated wait class
Event DB CPU log file sync db file scattered read library cache pin db file sequential read
Waits
% DB time 112.73
Wait Class
43 40 27 24
2 13 0 3
4.73 Commit 4.43 User I/O 2.98 Concurrency 2.71 User I/O
its critical to look into this section. If you turn off the statistic parameter, then the Time(s) wont appear. Wait analysis should be done with respect to Time(s) as there could be million of waits but if that happens for a second or so then who cares. Therefore, time is very important component. So you have several different types of waits. So you may see the different waits on your AWR report. So lets discuss the most common waits.
4 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
db file sequential read: Is the wait that comes from the physical side of the database. it related to memory starvation and non selective index use. sequential read is an index read followed by table read because it is doing index lookups which tells exactly which block to go to db file scattered read: caused due to full table scans may be because of insufficient indexes or un-avilablity of updated statistics direct Path writes: You wont see them unless you are doing some appends or data loads direct Path reads: could happen if you are doing a lot of parallel query activity db file parallel writes / read: if you are doing a lot of partition activity then expect to see that wait even. it could be a table or index partition db file single write: if you see this event than probably you have a lot of data files in your database. direct path read temp or direct path write temp: this wait event shows Temp file activity (sort,hashes,temp tables, bitmap) check pga parameter or sort area or hash area parameters. You might want to increase them
so what's going on in your memory latch: cache buffer chains: check hot objects free buffer waits: insufficient buffers, process holding buffers too long or i/o subsystem is over loaded. Also check you db writes may be getting clogged up. buffer busy waits: see what is causing them further along in report. most of the time its data block related. gc buffer busy: its in the RAC environment. caused may be because of not enough memory on your nodes,overloaded interconnect. Also look RAC specific section of the report latch: cache buffers lru chain Freelist issues, hot blocks latch: cache buffer handles Freelist issues, hot blocks buffer busy - See what is causing them further along in report no free buffers Insufficient buffers, dbwr contention
Log Type Waits log file parallel write Look for log file contention log buffer space Look at increasing log buffer size log file switch (checkpoint incomplete) May indicate excessive db files or slow IO subsystem log file switch (archiving needed) Indicates archive files are written too slowly log file switch completion May need more log files per log file sync Could indicate excessive commits
5 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
GC Events gccr multi block request Full table or index scans gc current multi block request Full table or index scans gccr block 2-way Blocks are busy in another instance, check for block level contention or hot blocks gccr block 3-way Blocks are busy in another instance, check for block level contention or hot blocks gccr block busy Blocks are busy in another instance, check for block level contention or hot blocks gccr block congested cr block congestion, check for hot blocks or busy interconnect gccr block lost Indicates interconnect issues and contention gc current block 2-way Blocks are busy in another instance, check for block level contention or hot blocks gc current block 3-way Blocks are busy in another instance, check for block level contention or hot blocks gc current block busy Block is already involved in GC operation, shows hot blocks or congestion gc current block congested current block congestion, check for hot blocks or busy interconnect gc current block lost - Indicates interconnect issues and contention
Undo Events undo segment extension If excessive, tune undo latch: In memory undo latch If excessive could be bug, check for your version, may have to turn off in memory undo wait for a undo record Usually only during recovery of large transactions, look at turning off parallel undo recovery. What Next? Determine wait events of concern Drill down to specific sections of report for deeper analysis Use custom scripts, ADDM and Ash to investigate issues ====================================================================== ======================================================================
RAC Statistics
If you are running on a RAC cluster, then the AWRRPT.SQL report will provide various RAC statistics including statistics on the number of RAC instances, as well as global cache and enqueue related performance statistics. Here is an example of the RAC statistics part of the report: RAC Statistics DB/Inst: A109/a1092 Snaps: 2009-2010
6 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
~~~~~~~~~~~~~~~~~~~~~~~~~ Global Cache blocks received: Global Cache blocks served: GCS/GES messages received: GCS/GES messages sent: DBWR Fusion writes: Estd Interconnect traffic (KB)
Global Cache Efficiency Percentages (Target local+remote 100%) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Buffer access - local cache %: 99.47 Buffer access - remote cache %: 0.53 Buffer access disk %: 0.00 Global Cache and Enqueue Services - Workload Characteristics ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Avg global enqueue get time (ms): 0.0 Avg global cache cr block receive time (ms): Avg global cache current block receive time (ms): Avg global cache cr block build time (ms): Avg global cache cr block send time (ms): Global cache log flushes for cr blocks served %: Avg global cache cr block flush time (ms): Avg global cache current block pin time (ms): Avg global cache current block send time (ms): Global cache log flushes for current blocks served %: Avg global cache current block flush time (ms): 0.2 0.3 0.0 0.0 1.8 4.0 0.0 0.1 0.4 0.0
Global Cache and Enqueue Services - Messaging Statistics ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Avg message sent queue time (ms): ######## Avg message sent queue time on ksxp (ms): 0.1 Avg message received queue time (ms): 4.6 Avg GCS message process time (ms): 0.0 Avg GES message process time (ms): 0.0 % of direct sent messages: 45.26 % of indirect sent messages: 31.59 % of flow controlled messages: 23.15 -------------------------------------------------------------
7 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
-> Statistics including the word "background" measure background process time, and so do not contribute to the DB time statistic -> Ordered by % or DB time desc, Statistic name Statistic Name Time (s) % of DB Time ------------------------------------------ ------------------ -----------sql execute elapsed time 4.5 82.8 DB CPU 3.5 64.4 connection management call elapsed time 0.1 1.6 parse time elapsed 0.1 1.3 PL/SQL execution elapsed time 0.0 .9 hard parse elapsed time 0.0 .3 sequence load elapsed time 0.0 .1 repeated bind elapsed time 0.0 .0 DB time 5.5 N/A background elapsed time 33.0 N/A background cpu time 9.7 N/A -------------------------------------------------------------
Avg %Time Total Wait wait Waits Wait Class Waits -outs Time (s) (ms) /txn -------------------- ---------------- ------ ---------------- ------- --------System I/O 8,142 .0 25 3 10.9 Other 439,596 99.6 3 0 589.3 User I/O 112 .0 0 3 0.2 Cluster 443 .0 0 0 0.6 Concurrency 216 .0 0 0 0.3 Commit 16 .0 0 2 0.0 Network 3,526 .0 0 0 4.7 Application 13 .0 0 0 0.0 -------------------------------------------------------------
In this report the system I/O wait class has the largest number of waits (total of 25 seconds) and an average wait of 3 milliseconds. Wait events are normal occurrences, but if a particular sub-system is having a problem performing (e.g. the disk
8 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
sub-system) this fact will appear in the form of one or more wait events with an excessive duration. The wait event report then provides some insight into the detailed wait events. Here is an example of the wait event report (we have eliminated some of the bulk of this report, because it can get quite long). Note that this section is sorted by wait time (listed in microseconds). Avg %Time Total Wait wait Waits -outs Time (s) (ms) /txn ------ ----------- ------- --------.0 18 15 1.6 .0 6 1 8.7 100.0 1 0 566.0 .0 1 13 0.1 .0 0 1 0.4 .0 0 4 0.1 .0 0 1 0.2 .0 0 2 0.1 .0 0 60 0.0 .0 0 0 0.3 .0 0 1 0.1
Event Waits ---------------------------- -------------control file parallel write 1,220 control file sequential read 6,508 CGS wait for IPC msg 422,253 change tracking file synchro 60 db file parallel write 291 db file sequential read 90 reliable message 136 log file parallel write 106 lms flush message acks 1 gc current block 2-way 200 change tracking file synchro 59
In this example our control file parallel write waits (which occurs during writes to the control file) are taking up 18 seconds total, with an average wait of 15 milliseconds per wait. Additionally we can see that we have 1.6 waits per transaction (or 15ms * 1.6 per transaction = 24ms).
9 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
Physical reads Executions Parse calls Sharable memory Version count Cluster wait time While these reports might not help tune specific application problems, they can help you find more systemic SQL problems that you might not find when tuning a specific application module. Here is an example of the Buffer gets report: Gets CPU Elapsed Buffer Gets Executions per Exec %Total Time (s) Time (s) SQL Id -------------- ------------ ------------ ------ -------- --------- ------------2,163 7 309.0 3.0 0.03 0.04 c7sn076yz7030 select smontabv.cnt, smontab.time_mp, smontab.scn, smontab.num_mappings, smon tab.tim_scn_map, smontab.orig_thread from smon_scn_time smontab, (sel ect max(scn) scnmax, count(*)+sum(NVL2(TIM_SCN_MAP,NUM_MAPPINGS, 0)) cnt from smon_scn_time where thread=0) smontabv where smon 1,442 721 2.0 2.0 0.05 0.05 6ssrk2dqj7jbx select job, nvl2(last_date, 1, 0) from sys.job$ where (((:1 <= next_date) and (n ext_date <= :2)) or ((last_date is null) and (next_date < :3))) and (field1 = :4 or (field1 = 0 and 'Y' = :5)) and (this_date is null) order by next_date, j ob 1,348 1 1,348.0 1.9 0.04 0.04 bv1djzzmk9bv6 Module: TOAD 9.0.0.160 Select table_name from DBA_TABLES where owner = 'CDOL2_01' order by 1 1,227 1 1,227.0 1.7 0.07 0.08 d92h3rjp0y217 begin prvt_hdm.auto_execute( :db_id, :inst_id, :end_snap ); end; 896 4 224.0 1.2 0.03 0.03 6hszmvz1wjhbt Module: TOAD 9.0.0.160 Select distinct Cons.constraint_name, cons.status, cons.table_name, cons.constra int_type ,cons.last_change from sys.user_constraints cons where 1=1 a nd cons.status='DISABLED'
In this report we find a SQL statement that seems to be churning through 309 buffers per execution. While the execution times are not terrible we might want to look closer into the SQL statement and try to see if we could tune it (in fact this is Oracle issued SQL that we would not tune anyway).
10 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
consistent gets - examination consistent gets direct consistent gets from cache cursor authentications data blocks consistent reads - u db block changes db block gets db block gets direct db block gets from cache
If the tablespace IO report seems to indicate a tablespace has IO problems, we can then use the file IO stat report allows us to drill into the datafiles of the tablespace in question and determine what the problem might be. Here is an example of the File IO stat report: Tablespace Filename ------------------------ ---------------------------------------------------Av Av Av Av Buffer Av Buf Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms) -------------- ------- ------ ------- ------------ -------- ---------- -----AUD +ASM01/a109/datafile/aud.296.604081931 1 0 0.0 1.0 1 0 0 0.0 CDOL2_INDEX +ASM01/a109/datafile/cdol2_index_001.dbf 1 0 10.0 1.0 1 0 0 0.0 CDOL_DATA +ASM01/a109/datafile/cdol_data_001.dbf
11 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
10.0 1.0 1 0 0 +ASM01/a109/datafile/dba_def.294.604081931 1 0 10.0 1.0 1 0 0 +ASM01/a109/datafile/sysaux.299.604081927 1 0 0.0 1.0 159 0 13 +ASM01/a109/datafile/system.301.604081919 1 0 10.0 1.0 46 0 0 +ASM01/a109/datafile/undotbs1.300.604081925 1 0 10.0 1.0 1 0 0 +ASM01/a109/datafile/undotbs2.292.604081931 1 0 10.0 1.0 98 0 0 +ASM01/a109/datafile/users.303.604081933 1 0 10.0 1.0 1 0 0 +ASM01/a109/datafile/user_def.291.604081933 1 0 10.0 1.0 1 0 0 -------------------------------------------------------------
In this case, we have a database where all the buffer pool requests came out of the buffer pool and no physical reads were required. We also see a few (probably very insignificant in our case) buffer busy waits.
Targt Estd Log File Log Ckpt Log Ckpt MTTR MTTR Recovery Actual Target Size Timeout Interval (s) (s) Estd IOs Redo Blks Redo Blks Redo Blks Redo Blks Redo Blks - ----- ----- ---------- --------- --------- ---------- --------- -----------B 0 19 196 575 183 92160 183 N/A E 0 19 186 258 96 92160 96 N/A -------------------------------------------------------------
12 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
cache. Here is an example of the output of this report: Est Phys Size for Size Buffers for Read Estimated P Est (M) Factor Estimate Factor Physical Reads --- -------- ------ ---------------- ------ -----------------D 48 .1 5,868 4.9 803,496 D 96 .2 11,736 4.0 669,078 D 144 .3 17,604 3.3 550,831 D 192 .4 23,472 2.8 462,645 D 240 .5 29,340 2.3 379,106 D 288 .5 35,208 1.8 305,342 D 336 .6 41,076 1.4 238,729 D 384 .7 46,944 1.2 200,012 D 432 .8 52,812 1.1 183,694 D 480 .9 58,680 1.0 172,961 D 528 1.0 64,548 1.0 165,649 D 576 1.1 70,416 1.0 161,771 D 624 1.2 76,284 1.0 159,728 D 672 1.3 82,152 1.0 158,502 D 720 1.4 88,020 1.0 157,723 D 768 1.5 93,888 0.9 157,124 D 816 1.5 99,756 0.9 156,874 D 864 1.6 105,624 0.9 156,525 D 912 1.7 111,492 0.9 156,393 D 960 1.8 117,360 0.9 155,388 -------------------------------------------------------------
In this example we currently have 528GB allocated to the SGA (represented by the size factor column with a value of 1.0. It appears that if we were to reduce the memory allocated to the SGA to half of the size of the current SGA (freeing the memory to the OS for other processes) we would incur an increase of about 1.8 times the number of physical IO's in the process.
PGA Reports
The PGA reports provide some insight into the health of the PGA. The PGA Aggr Target Stats report provides information on the configuration of the PGA Aggregate Target parameter during the reporting period. The PGA Aggregate Target Histogram report provides information on the size of various operations (e.g. sorts). It will indicate if PGA sort operations occurred completely in memory, or if some of those operations were written out to disk. Finally the PGA Memory Advisor, much like the buffer pool advisory report, provides some insight into how to properly size your PGA via the PGA_AGGREGATE_TARGET database parameter. The PGA Memory Advisor report is shown here: Estd Extra Estd PGA Estd PGA PGA Target Size W/A MB W/A MB Read/ Cache Overalloc Est (MB) Factr Processed Written to Disk Hit % Count ---------- ------- ---------------- ---------------- -------- ---------44 0.1 289,899.2 7,844.9 97.0 1,124 88 0.3 289,899.2 7,576.9 97.0 1,073 176 0.5 289,899.2 3.3 100.0 0 263 0.8 289,899.2 3.3 100.0 0 351 1.0 289,899.2 3.3 100.0 0 421 1.2 289,899.2 0.0 100.0 0
13 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
1.4 289,899.2 0.0 100.0 0 1.6 289,899.2 0.0 100.0 0 1.8 289,899.2 0.0 100.0 0 2.0 289,899.2 0.0 100.0 0 3.0 289,899.2 0.0 100.0 0 4.0 289,899.2 0.0 100.0 0 6.0 289,899.2 0.0 100.0 0 8.0 289,899.2 0.0 100.0 0 -------------------------------------------------------------
14 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
In this example, our SGA Target size is currently set at 1056MB. We can see from this report that if we increased the SGA target size to 2112MB, we would see almost no performance improvement (about a 98 second improvement overall). In this case, we may determine that adding so much memory to the database is not cost effective, and that the memory can be better used elsewhere.
Memory Advisory
Memory advisory reports for the streams pool and the java pool also appear in the report (assuming you are using the streams pool). These reports take on the same general format as the other memory advisor reports.
Enqueue Activity
The Enqueue activity report provides information on enqueues (higher level Oracle locking) that occur. As with other reports, if you see high levels of wait times in these reports, you might dig further into the nature of the enqueue and determine the cause of the delays. Here is an example of this report section: Enqueue Type (Request Reason) -----------------------------------------------------------------------------Requests Succ Gets Failed Gets Waits Wt Time (s) Av Wt Time(ms) ------------ ------------ ----------- ----------- ------------ -------------PS-PX Process Reservation 386 358 28 116 0 .43 US-Undo Segment 276 276 0 228 0 .18 TT-Tablespace 90 90 0 42 0 .71 WF-AWR Flush 12 12 0 7 0 1.43 MW-MWIN Schedule 2 2 0 2 0 5.00 TA-Instance Undo 12 12 0 12 0 .00 UL-User-defined 7 7 0 7 0 .00 CF-Controlfile Transaction 5,737 5,737 0 5 0 .00
15 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
Latch Activity
The latch activity report provides information on Oracle's low level locking mechanism called a latch. From this report you can determine if Oracle is suffering from latching problems, and if so, which latches are causing the greates amount of contention on the system. Here is a partial example of the latch activity report (it is quite long): Pct Avg Wait Pct Get Get Slps Time NoWait NoWait Requests Miss /Miss (s) Requests Miss -------------- ------ ------ ------ ------------ -----122 0.0 N/A 0 0 N/A 60 0.0 N/A 0 0 N/A 11 0.0 N/A 0 0 N/A 30 0.0 N/A 0 0 N/A 45,056 0.0 N/A 0 0 N/A 1,653 0.0 N/A 0 0 N/A 14,330 0.0 N/A 0 0 N/A 107 0.0 N/A 0 0 N/A 75 0.0 N/A 0 0 N/A 75 0.0 N/A 0 0 N/A 14 0.0 N/A 0 0 N/A 93 0.0 N/A 0 0 N/A 826 0.0 N/A 0 0 N/A 826 0.0 N/A 0 0 N/A
Latch Name -----------------------ASM allocation ASM map headers ASM map load waiting lis ASM map operation freeli ASM map operation hash t ASM network background l AWR Alerted Metric Eleme Consistent RBA FAL request queue FAL subheap alocation FIB s.o chain latch FOB s.o list latch JS broadcast add buf lat JS broadcast drop buf la
In this example our database does not seem to be experiencing any major latch problems, as the wait times on the latches are 0, and our get miss pct (Pct Get Miss) is 0 also. There is also a latch sleep breakdown report which provides some additional detail if a latch is being constantly moved into the sleep cycle, which can cause additional performance issues. The latch miss sources report provides a list of latches that encountered sleep conditions. This report can be of further assistance when trying to analyze which latches are causing problems with your database.
Tablespace Subobject Obj. Logical Owner Name Object Name Name Type Reads %Total ---------- ---------- -------------------- ---------- ----- ------------ -------
16 of 17
07-10-2013 20:00
http://oraclewindow.blogspot.in/2013/05/how-to-read-awr-reports.html
SYSAUX SYS_IOT_TOP_8813 INDEX 52,192 SYSTEM SMON_SCN_TIME TABLE 4,704 SYSTEM I_JOB_NEXT INDEX 2,432 SYSTEM OBJ$ TABLE 1,344 SYSTEM TAB$ TABLE 1,008 -------------------------------------------------------------
Additional Reports
Several segment related reports appear providing information on: Segments with ITL waits Segments with Row lock waits Segments with buffer busy waits Segments with global cache buffer waits Segments with CR Blocks received Segments with current blocks received These reports help provide more detailed information on specific segments that might be experiencing performance problems. The dictionary cache and library cache statistics reports provide performance information on the various areas in the data dictionary cache and the library cache. The process memory summary, SGA memory summary, and the SGA breakdown difference reports provide summary information on how memory allocated to the database is allocated amongst the various components. Other memory summary reports may occur if you have certain optional components installed (such as streams). The database parameter summary report provides a summary of the setting of all the database parameters during the snapshot report. If the database parameters changed during the period of the report, then the old and new parameters will appear on the report.
17 of 17
07-10-2013 20:00