Home » RDBMS Server » Performance Tuning » NOLOGGING in Oracle 11gr2 (Oracle 11gr2 Server 2008r2)
NOLOGGING in Oracle 11gr2 [message #568790] |
Tue, 16 October 2012 10:04 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
I am building a database to store call quality statistics for VOIP networks. It is a very insert heavy application, and data reliability is of relatively minimal importance (in the sense that a few corrupt call records here and there doesn't matter the way corruption does in for example a banks database). Long term storage is also unimportant, most customers only wish to keep 3 months of data readily available in the database. Most do not even archive the older data.
To that end I am searching for every possible way to improve my insert performance and the internet has turned me onto the idea of NOLOGGING. These are the steps I have taken to reduce my IO consumed by the Redo and Undo logs.
1. I am inserting with the APPEND_VALUES hint.
2. I have disabled force logging at the database level
3. I have disabled force logging at the tablespace level
4. I have disabled logging on the relevant table and each of its indices
As best I can tell this is all I can do to minimize Redo/Undo, but based on my observations of the Disk portion of the WinServer2008 Performance Monitor, this has made little to no change in the amount of IO to my REDO and UNDO files. IO to the .dbf containing my table makes up less than 20% of the total disk IO for oracle.exe, the rest is the REDO and UNDO logs.
asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:897564200346274711
The above article is a little over my head but I am able to extract from it that I will never entirely eliminate REDO/UNDO, which is fine, but I would think I could get it lower than it currently is.
So then, have I missed a step? Am I approaching this in entirely the wrong way? Other avenues to pursue? Any thoughts or advice would be appreciated.
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568791 is a reply to message #568790] |
Tue, 16 October 2012 10:22 |
John Watson
Messages: 8960 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
If performance is more important than reliability, you could set these parameters,
commit_wait=nowait;
commit_write=batch;
which will not eliminate the redo but will make it's generation faster.
But before doing anything like that, I would want to do more investigation. For example, the performance issue might be nothing to do with redo and undo: it could be (for example) concurrent access to the same blocks. Do you have AWR or statspack reports that you can post here?
--
Edit: Not commit_write=batch, but commit_logging=batch. Sorry, the parameter was changed between 10g and 11g.
[Updated on: Tue, 16 October 2012 10:27] Report message to a moderator
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568793 is a reply to message #568791] |
Tue, 16 October 2012 10:53 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
Here's an AWR report, in case you cannot read formatting, screenshot is attached.
Name SYSTEM_MOVING_WINDOW
ID 0
Type MOVING_WINDOW
Adaptive Thresholds Enabled? No
Window Size (Days) 8
Time Interval
Start Time 10/8/12 12:00 PM
End Time 10/16/12 11:00 AM
Start Snap ID 621
End Snap ID 795
Name Value Per Second Per Transaction
DB cpu (seconds) 0.00 0.00 0.00
DB time (seconds) 1,818,695.87 0.00 7.01
db block changes 71,467,189.00 0.00 275.39
execute count 6,090,428.00 0.00 23.47
global cache cr block receive time (seconds) 0.00 0.00 0.00
global cache cr blocks received 0.00 0.00 0.00
global cache current block receive time (seconds) 0.00 0.00 0.00
global cache current blocks received 0.00 0.00 0.00
global cache get time (seconds) 0.00 0.00 0.00
global cache gets 0.00 0.00 0.00
opened cursors cumulative 5,375,922.00 0.00 20.72
parse count (total) 2,495,161.00 0.00 9.61
parse time cpu (seconds) 221.72 0.00 0.00
parse time elapsed (seconds) 227.95 0.00 0.00
physical reads 239,314.00 0.00 0.92
physical writes 1,956,667.00 0.00 7.54
redo size (KB) 13,521,722.69 0.00 52.10
session cursor cache hits 2,870,743.00 0.00 11.06
session logical reads 114,941,958.00 0.00 442.91
sql execute cpu time (seconds) 0.00 0.00 0.00
sql execute elapsed time (seconds) 0.00 0.00 0.00
user calls 1,997,287.00 0.00 7.70
user commits 259,481.00 0.00 1.00
user rollbacks 34.00 0.00 0.00
workarea executions - multipass 0.00 0.00 0.00
workarea executions - onepass 1.00 0.00 0.00
workarea executions - optimal 767,909.00 0.00 2.96
-
Attachment: awr.png
(Size: 49.60KB, Downloaded 1652 times)
|
|
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568796 is a reply to message #568795] |
Tue, 16 October 2012 11:21 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
Apologies on all accounts. I am working on creating a proper AWR report with awrrpt.sql in SQLDeveloper but am having difficulty at the moment. At first it complained it could not find awrrpti.sql in C:\Users\Administrators - I don't know why its looking there, but I eventually copied all the relevant scripts from my Oracle home to said directory in order to please it. At this point the script executes but eventually throws this error:
ORA-20200: Database/Instance /1 does not exist in DBA_HIST_DATABASE_INSTANCE
ORA-06512: at line 23
I am investigating this error and will get back to you once I have a proper report. Thanks for your help so far.
----
And for the record:
SELECT INSTANCE_NUMBER FROM v$instance; returns 1 so I have to believe 1 is correct.
----
Though on closer examination it appears that somehow my dbid is not being set correctly. At first I interpreted the '/1' to be a complaint regarding the Instance Number but now I realize it is a complaint about a null DBID.
[Updated on: Tue, 16 October 2012 11:42] Report message to a moderator
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568798 is a reply to message #568794] |
Tue, 16 October 2012 12:47 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
Well I'm sort of at wits end here. I believe I have successfully created a .html AWR report of a 15 minute window, through the Oracle Enterprise Manager web interface. However I don't know how to easily share an .html file with you, the forum does not allow them as attachments - I suppose I can put it in a dropbox if you are willing.
After that I continued to explore the error (ORA-20200) I'm getting in SQL developer. I am now skipping the execution of awrrpt.sql entirely and am instead hardcoding my variables into awrrpti.sql - in the case of dbid and instance number I have had to place them in awrinput.sql. However:
results in a
error. Which is part of what I was seeing in SQL Developer (though I disregarded it at the time) and what I now believe is the reason my DBID is returning NULL instead of what I set it to in the prompt. So my DBID is out of range? That does not seem reasonable.
Heres the full output of @@awrrpti with a few embedded comments of my own:
Specify the Report Type
~~~~~~~~~~~~~~~~~~~~~~~
Would you like an HTML report, or a plain text report?
Enter 'html' for an HTML report, or 'text' for plain text
Defaults to 'html'
line 159: SQLPLUS Command Skipped: set heading off;
'TYPESPECIFIED:' REPORT_TYPE
---------------- -----------
Type Specified: text
line 161: SQLPLUS Command Skipped: set heading on;
line 47: SQLPLUS Command Skipped: set heading on;
line 50: SQLPLUS Command Skipped: set trimspool on trimout on define "&" concat "." serveroutput on;
line 51: SQLPLUS Command Skipped: set underline on;
Instances in this Workload Repository schema
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
DBBID INSTT_NUM DBB_NAME INSTT_NAME HOST
------------------------------------------ ---------------------- --------- ---------------- ----------------------------------------------------------------
* 2907699466 1 GLDB gldb WIN-VTBNMB5VC5I
Using 6 for database Id $$$$ When it prompted me I supplied 6 for both these
Using 6 for instance number $$$$ However you can see in the next few lines I hardcode
$$$$ them to 2907699466 / 1, which is what I want. Then
$$$$ this triggers the Numeric Overflow and :dbid remains NULL
Error starting at line 91 in command:
begin
:dbid := 2907699466;
:inst_num := 1;
end;
Error report:
Numeric Overflow
Commit
Error starting at line 105 in command:
declare
cursor cidnum is
select 'X'
from dba_hist_database_instance
where instance_number = :inst_num
and dbid = :dbid;
cursor csnapid is
select to_char(max(end_interval_time),'dd/mm/yyyy')
from dba_hist_snapshot
where instance_number = :inst_num
and dbid = :dbid;
vx char(1);
begin
-- Check Database Id/Instance Number is a valid pair
open cidnum;
fetch cidnum into vx;
if cidnum%notfound then
raise_application_error(-20200,
'Database/Instance ' || :dbid || '/' || :inst_num ||
' does not exist in DBA_HIST_DATABASE_INSTANCE');
end if;
close cidnum;
-- Check Snapshots exist for Database Id/Instance Number
open csnapid;
fetch csnapid into :max_snap_time;
if csnapid%notfound then
raise_application_error(-20200,
'No snapshots exist for Database/Instance '||:dbid||'/'||:inst_num);
end if;
close csnapid;
end;
Error report:
ORA-20200: Database/Instance /1 does not exist in DBA_HIST_DATABASE_INSTANCE
ORA-06512: at line 23
[Updated on: Tue, 16 October 2012 12:55] Report message to a moderator
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568815 is a reply to message #568798] |
Tue, 16 October 2012 15:26 |
John Watson
Messages: 8960 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
I want to help you, but I can't! We need that AWR report. Log on to the server and set your environment (I see that it is Windows, so if you login as the Oracle owner the environment is probably setup for you through registry varaibles). Then connect to the database with SQL*Plus as a reasonably powerful user. Then run @?\rdbms\admin\awrrpt.sql and take the option to generate a text report. Choose two snapshots that cover the time span for a busy time, say one hour. And the report will be spooled out to your current directory. Post it here, and we'll have a look.
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568816 is a reply to message #568815] |
Tue, 16 October 2012 15:39 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
Ah thank you for the simpler instructions on how to generate such a report. It is attached.
----
In my own research I have found that Log File switching is occupying 19.12% of my dB time and occuring ~430 times per hour. I am going to increase my redo file sizes and see how performance is affected (currently I have 3 redo logs each of size = 51200KB). I will let you know what I see. Please let me know your thoughts on the report in any case, I'm sure there are many things I have missed.
[Updated on: Tue, 16 October 2012 16:24] Report message to a moderator
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568844 is a reply to message #568816] |
Wed, 17 October 2012 02:17 |
Roachcoach
Messages: 1576 Registered: May 2010 Location: UK
|
Senior Member |
|
|
For those who cannot download, contents in the spoiler section to save a wall of text
Toggle Spoiler
WORKLOAD REPOSITORY report for
DB Name DB Id Instance Inst Num Startup Time Release RAC
------------ ----------- ------------ -------- --------------- ----------- ---
GLDB 2907699466 gldb 1 16-Oct-12 10:08 11.2.0.1.0 NO
Host Name Platform CPUs Cores Sockets Memory(GB)
---------------- -------------------------------- ---- ----- ------- ----------
WIN-VTBNMB5VC5I Microsoft Windows x86 64-bit 4 4 1 11.99
Snap Id Snap Time Sessions Curs/Sess
--------- ------------------- -------- ---------
Begin Snap: 801 16-Oct-12 13:00:02 38 3.5
End Snap: 802 16-Oct-12 13:15:05 38 3.5
Elapsed: 15.05 (mins)
DB Time: 5.41 (mins)
Cache Sizes Begin End
~~~~~~~~~~~ ---------- ----------
Buffer Cache: 2,304M 2,304M Std Block Size: 8K
Shared Pool Size: 576M 576M Log Buffer: 8,168K
Load Profile Per Second Per Transaction Per Exec Per Call
~~~~~~~~~~~~ --------------- --------------- ---------- ----------
DB Time(s): 0.4 0.1 0.00 0.01
DB CPU(s): 0.2 0.1 0.00 0.01
Redo size: 5,405,639.8 1,775,432.3
Logical reads: 34,699.7 11,396.8
Block changes: 27,200.9 8,933.9
Physical reads: 0.9 0.3
Physical writes: 511.6 168.0
User calls: 35.1 11.5
Parses: 131.0 43.0
Hard parses: 1.0 0.3
W/A MB processed: 0.1 0.0
Logons: 0.1 0.0
Executes: 163.5 53.7
Rollbacks: 0.0 0.0
Transactions: 3.0
Instance Efficiency Percentages (Target 100%)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Buffer Nowait %: 100.00 Redo NoWait %: 99.98
Buffer Hit %: 100.00 In-memory Sort %: 100.00
Library Hit %: 99.90 Soft Parse %: 99.26
Execute to Parse %: 19.87 Latch Hit %: 100.00
Parse CPU to Parse Elapsd %: 90.34 % Non-Parse CPU: 98.84
Shared Pool Statistics Begin End
------ ------
Memory Usage %: 60.19 65.36
% SQL with executions>1: 86.85 78.20
% Memory for SQL w/exec>1: 80.32 78.81
Top 5 Timed Foreground Events
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Avg
wait % DB
Event Waits Time(s) (ms) time Wait Class
------------------------------ ------------ ----------- ------ ------ ----------
DB CPU 162 49.8
log file switch (checkpoint in 104 62 596 19.1 Configurat
log file sync 2,686 6 2 1.7 Commit
log file switch completion 109 3 28 .9 Configurat
SQL*Net more data from client 107,321 2 0 .5 Network
Host CPU (CPUs: 4 Cores: 4 Sockets: 1)
~~~~~~~~ Load Average
Begin End %User %System %WIO %Idle
--------- --------- --------- --------- --------- ---------
8.8 1.6 89.5
Instance CPU
~~~~~~~~~~~~
% of total CPU for Instance: 4.7
% of busy CPU for Instance: 44.6
%DB time waiting for CPU - Resource Mgr: 0.0
Memory Statistics
~~~~~~~~~~~~~~~~~ Begin End
Host Mem (MB): 12,275.1 12,275.1
SGA use (MB): 2,944.0 2,944.0
PGA use (MB): 124.1 125.1
% Host Mem used for SGA+PGA: 24.99 25.00
Time Model Statistics DB/Inst: GLDB/gldb Snaps: 801-802
-> Total time in database user-calls (DB Time): 324.3s
-> 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 316.6 97.6
DB CPU 161.6 49.8
sequence load elapsed time 24.3 7.5
parse time elapsed 3.0 .9
hard parse elapsed time 1.3 .4
PL/SQL execution elapsed time 0.6 .2
connection management call elapsed time 0.1 .0
repeated bind elapsed time 0.0 .0
DB time 324.3
background elapsed time 69.4
background cpu time 7.0
-------------------------------------------------------------
Operating System Statistics DB/Inst: GLDB/gldb Snaps: 801-802
-> *TIME statistic values are diffed.
All others display actual values. End Value is displayed if different
-> ordered by statistic type (CPU Use, Virtual Memory, Hardware Config), Name
Statistic Value End Value
------------------------- ---------------------- ----------------
AVG_BUSY_TIME 9,423
AVG_IDLE_TIME 80,860
AVG_SYS_TIME 1,430
AVG_USER_TIME 7,965
BUSY_TIME 37,775
IDLE_TIME 323,519
SYS_TIME 5,823
USER_TIME 31,952
VM_IN_BYTES -9.391060752118678E+18
VM_OUT_BYTES 3,641,582,545,694,720
PHYSICAL_MEMORY_BYTES 12,871,364,608
NUM_CPUS 4
NUM_CPU_CORES 4
NUM_CPU_SOCKETS 1
-------------------------------------------------------------
Operating System Statistics - Detail DB/Inst: GLDB/gldb Snaps: 801-802
Snap Time Load %busy %user %sys %idle %iowait
--------------- -------- -------- -------- -------- -------- --------
16-Oct 13:00:02 0.0 N/A N/A N/A N/A N/A
16-Oct 13:15:05 0.0 10.5 8.8 1.6 89.5 0.0
-------------------------------------------------------------
Foreground Wait Class DB/Inst: GLDB/gldb Snaps: 801-802
-> s - second, ms - millisecond - 1000th of a second
-> ordered by wait time desc, waits desc
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
-> Captured Time accounts for 72.4% of Total DB time 324.31 (s)
-> Total FG Wait Time: 73.22 (s) DB CPU time: 161.57 (s)
Avg
%Time Total Wait wait
Wait Class Waits -outs Time (s) (ms) %DB time
-------------------- ---------------- ----- ---------------- -------- ---------
DB CPU 162 49.8
Configuration 224 0 65 292 20.2
Commit 2,686 0 6 2 1.7
Network 138,528 0 2 0 0.5
System I/O 201 0 1 3 0.2
User I/O 61 0 0 0 0.0
Application 60 0 0 0 0.0
Other 224 97 0 0 0.0
Concurrency 3 0 0 0 0.0
-------------------------------------------------------------
Foreground Wait Events DB/Inst: GLDB/gldb Snaps: 801-802
-> s - second, ms - millisecond - 1000th of a second
-> Only events with Total Wait Time (s) >= .001 are shown
-> ordered by wait time desc, waits desc (idle events last)
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % DB
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
log file switch (checkpoin 104 0 62 596 0.0 19.1
log file sync 2,686 0 6 2 1.0 1.7
log file switch completion 109 0 3 28 0.0 .9
SQL*Net more data from cli 107,321 0 2 0 39.0 .5
control file sequential re 201 0 1 3 0.1 .2
log buffer space 1 0 0 287 0.0 .1
log file switch (private s 10 0 0 8 0.0 .0
SQL*Net message to client 31,207 0 0 0 11.3 .0
db file sequential read 17 0 0 1 0.0 .0
SQL*Net break/reset to cli 60 0 0 0 0.0 .0
Disk file operations I/O 44 0 0 0 0.0 .0
ADR block file read 6 0 0 0 0.0 .0
SQL*Net message from clien 31,207 0 6,648 213 11.3
jobq slave wait 1,964 99 1,007 513 0.7
wait for unread message on 910 98 903 992 0.3
Streams AQ: waiting for me 180 100 901 5007 0.1
-------------------------------------------------------------
Background Wait Events DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by wait time desc, waits desc (idle events last)
-> Only events with Total Wait Time (s) >= .001 are shown
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % bg
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
log file parallel write 8,146 0 31 4 3.0 44.3
db file parallel write 12,399 0 19 1 4.5 26.7
control file sequential re 8,378 0 7 1 3.0 10.8
control file parallel writ 2,060 0 1 1 0.7 1.7
enq: CF - contention 101 0 1 8 0.0 1.2
os thread startup 35 0 0 5 0.0 .3
direct path read 322 0 0 0 0.1 .2
log file sequential read 216 0 0 1 0.1 .2
direct path write 207 0 0 0 0.1 .1
db file sequential read 110 0 0 0 0.0 .1
log file single write 216 0 0 0 0.1 .0
LGWR wait for redo copy 746 0 0 0 0.3 .0
ADR block file read 12 0 0 0 0.0 .0
log file sync 1 0 0 3 0.0 .0
Disk file operations I/O 23 0 0 0 0.0 .0
reliable message 16 0 0 0 0.0 .0
rdbms ipc message 13,211 28 11,670 883 4.8
DIAG idle wait 1,782 100 1,807 1014 0.6
smon timer 4 75 969 242265 0.0
Streams AQ: waiting for ti 7 71 965 137865 0.0
pmon timer 413 67 903 2186 0.2
shared server idle wait 30 100 900 30014 0.0
dispatcher timer 15 100 900 60012 0.0
Space Manager: slave idle 180 99 900 4998 0.1
Streams AQ: qmn slave idle 33 0 897 27168 0.0
Streams AQ: qmn coordinato 64 50 897 14008 0.0
SQL*Net message from clien 64 0 0 1 0.0
-------------------------------------------------------------
Wait Event Histogram DB/Inst: GLDB/gldb Snaps: 801-802
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> % of Waits: value of .0 indicates value was <.05%; value of null is truly 0
-> % of Waits: column heading of <=1s is truly <1024ms, >1s is truly >=1024ms
-> Ordered by Event (idle events last)
% of Waits
-----------------------------------------------
Total
Event Waits <1ms <2ms <4ms <8ms <16ms <32ms <=1s >1s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
ADR block file read 18 100.0
ADR block file write 5 100.0
ADR file lock 6 100.0
Disk file operations I/O 67 100.0
LGWR wait for redo copy 746 100.0
SQL*Net break/reset to cli 60 100.0
SQL*Net message to client 31.3K 100.0
SQL*Net more data from cli 107.4 100.0
asynch descriptor resize 335 100.0
control file parallel writ 2060 99.4 .1 .0 .3 .0 .0
control file sequential re 8579 91.9 3.2 3.7 .5 .1 .1 .6
db file parallel write 12.4K 72.1 10.2 5.8 8.1 2.9 .7 .1
db file sequential read 172 96.5 2.3 1.2
direct path read 322 98.8 .9 .3
direct path write 207 100.0
enq: CF - contention 101 1.0 10.9 30.7 57.4
latch: In memory undo latc 2 100.0
latch: cache buffers chain 4 100.0
latch: object queue header 3 100.0
log buffer space 1 100.0
log file parallel write 8152 35.0 4.4 6.9 51.9 .7 .3 .9
log file sequential read 216 87.0 8.3 4.2 .5
log file single write 216 100.0
log file switch (checkpoin 104 23.1 25.0 19.2 32.7
log file switch (private s 10 40.0 60.0
log file switch completion 109 2.8 1.8 29.4 43.1 2.8 20.2
log file sync 2690 71.0 10.3 13.2 3.9 .5 .2 .9
os thread startup 35 100.0
rdbms ipc reply 16 100.0
reliable message 16 100.0
DIAG idle wait 1782 100.0
SQL*Net message from clien 31.3K 24.9 31.6 3.4 .7 .5 1.8 36.5 .6
Space Manager: slave idle 180 100.0
Streams AQ: qmn coordinato 64 50.0 50.0
Streams AQ: qmn slave idle 33 3.0 97.0
Streams AQ: waiting for me 180 100.0
Streams AQ: waiting for ti 7 28.6 42.9 28.6
class slave wait 7 100.0
dispatcher timer 15 100.0
jobq slave wait 1964 100.0
pmon timer 413 6.3 1.7 .2 1.7 16.0 74.1
rdbms ipc message 13.2K 15.2 .5 7.2 1.3 1.3 2.2 52.3 20.2
shared server idle wait 30 100.0
smon timer 4 100.0
wait for unread message on 911 1.1 .8 .2 97.9
-------------------------------------------------------------
Wait Event Histogram Detail (64 msec to 2 sec)DB/Inst: GLDB/gldb Snaps: 801-
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> Units for % of Total Waits:
ms is milliseconds
s is 1024 milliseconds (approximately 1 second)
-> % of Total Waits: total waits for all wait classes, including Idle
-> % of Total Waits: value of .0 indicates value was <.05%;
value of null is truly 0
-> Ordered by Event (only non-idle events are displayed)
% of Total Waits
-----------------------------------------------
Waits
64ms
Event to 2s <32ms <64ms <1/8s <1/4s <1/2s <1s <2s >=2s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
control file parallel writ 1 100.0 .0
control file sequential re 49 99.4 .5 .0 .0
db file parallel write 8 99.9 .0 .0 .0
log buffer space 1 100.0
log file parallel write 71 99.1 .6 .2 .1
log file switch (checkpoin 53 48.1 1.0 2.9 1.9 2.9 10.6 31.7 1.0
log file switch completion 22 79.8 20.2
log file sync 23 99.1 .5 .2 .0 .1
-------------------------------------------------------------
Wait Event Histogram Detail (4 sec to 2 min)DB/Inst: GLDB/gldb Snaps: 801-80
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> Units for % of Total Waits:
s is 1024 milliseconds (approximately 1 second)
m is 64*1024 milliseconds (approximately 67 seconds or 1.1 minutes)
-> % of Total Waits: total waits for all wait classes, including Idle
-> % of Total Waits: value of .0 indicates value was <.05%;
value of null is truly 0
-> Ordered by Event (only non-idle events are displayed)
% of Total Waits
-----------------------------------------------
Waits
4s
Event to 2m <2s <4s <8s <16s <32s < 1m < 2m >=2m
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
log file switch (checkpoin 1 99.0 1.0
-------------------------------------------------------------
Wait Event Histogram Detail (4 min to 1 hr)DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Service Statistics DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by DB Time
Physical Logical
Service Name DB Time (s) DB CPU (s) Reads (K) Reads (K)
---------------------------- ------------ ------------ ------------ ------------
gldb 322 161 0 31,306
SYS$USERS 3 1 0 25
SYS$BACKGROUND 0 0 1 9
gldbXDB 0 0 0 0
-------------------------------------------------------------
Service Wait Class Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Wait Class info for services in the Service Statistics section.
-> Total Waits and Time Waited displayed for the following wait
classes: User I/O, Concurrency, Administrative, Network
-> Time Waited (Wt Time) in seconds
Service Name
----------------------------------------------------------------
User I/O User I/O Concurcy Concurcy Admin Admin Network Network
Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time
--------- --------- --------- --------- --------- --------- --------- ---------
gldb
12 0 3 0 0 0 137896 2
SYS$USERS
49 0 0 0 0 0 632 0
SYS$BACKGROUND
657 0 38 0 0 0 0 0
-------------------------------------------------------------
SQL ordered by Elapsed Time DB/Inst: GLDB/gldb Snaps: 801-802
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> % Total DB Time is the Elapsed Time of the SQL statement divided
into the Total Database Time multiplied by 100
-> %Total - Elapsed Time as a percentage of Total DB time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 100.7% of Total DB Time (s): 324
-> Captured PL/SQL account for 0.4% of Total DB Time (s): 324
Elapsed Elapsed Time
Time (s) Executions per Exec (s) %Total %CPU %IO SQL Id
---------------- -------------- ------------- ------ ------ ------ -------------
311.9 22,602 0.01 96.2 50.9 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
11.3 112,746 0.00 3.5 60.6 .0 4m7m0t6fjcs5x
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
0.7 2 0.34 .2 .0 .0 g4gp07gt2z920
update sys.scheduler$_job set last_start_date = :1, running_instance = :2, runn
ing_slave = :3, job_status = :4 where obj# = :5
0.5 15 0.03 .1 .0 .7 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
0.4 1 0.39 .1 96.2 .1 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.4 1 0.38 .1 97.6 .0 dayq182sk41ks
insert into wrh$_memory_target_advice (snap_id, dbid, instance_number, memo
ry_size, memory_size_factor, estd_db_time, estd_db_time_factor, version) sel
ect :snap_id, :dbid, :instance_number, memory_size, memory_size_factor,
estd_db_time, estd_db_time_factor, version from v$memory_target_advice
0.4 1 0.38 .1 97.7 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.4 3 0.13 .1 .0 .0 9juw6s4yy5pzp
Module: emagent_SQL_oracle_database
/* OracleOEM */ SELECT SUM(broken), SUM(failed) FROM (SELECT DECODE(STATE, '
BROKEN', 1, 0) broken, DECODE(STATE,'FAILED',1,0) failed
FROM DBA_SCHEDULER_JOBS )
0.2 360 0.00 .1 .0 .0 6v7n0y2bq89n8
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
0.2 30 0.01 .0 9.8 .0 2b064ybzkwf1y
Module: OEM.SystemPool
BEGIN EMD_NOTIFICATION.QUEUE_READY(:1, :2, :3); END;
-------------------------------------------------------------
SQL ordered by CPU Time DB/Inst: GLDB/gldb Snaps: 801-802
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - CPU Time as a percentage of Total DB CPU
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 103.5% of Total CPU Time (s): 162
-> Captured PL/SQL account for 0.2% of Total CPU Time (s): 162
CPU CPU per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
158.8 22,602 0.01 98.3 311.9 50.9 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
6.8 112,746 0.00 4.2 11.3 60.6 .0 4m7m0t6fjcs5x
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
0.4 1 0.37 0.2 0.4 96.2 .1 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.4 1 0.37 0.2 0.4 97.7 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.4 1 0.37 0.2 0.4 97.6 .0 dayq182sk41ks
insert into wrh$_memory_target_advice (snap_id, dbid, instance_number, memo
ry_size, memory_size_factor, estd_db_time, estd_db_time_factor, version) sel
ect :snap_id, :dbid, :instance_number, memory_size, memory_size_factor,
estd_db_time, estd_db_time_factor, version from v$memory_target_advice
0.1 58 0.00 0.0 0.0 881.9 .0 43c5ykm1mcp2a
Module: OMS
begin dbms_application_info.set_module(:1, :2); dbms_application_info.set_client
_info(:3); dbms_session.set_identifier(:4); end;
0.1 19 0.00 0.0 0.1 60.1 .5 3am9cfkvx7gq1
CALL MGMT_ADMIN_DATA.EVALUATE_MGMT_METRICS(:target_guid,:metric_guid,:metric_val
ues)
0.1 1 0.06 0.0 0.1 97.5 .0 a8j39qb13tqkr
Module: emagent_SQL_oracle_database
SELECT :B1 TASK_ID, F.FINDING_ID FINDING_ID,DECODE(RECINFO.TYPE,NULL, 'Uncategor
ized',RECINFO.TYPE) REC_TYPE, RECINFO.RECCOUNT REC_COUNT, F.PERC_ACTIVE_SESS IMP
ACT_PCT, F.MESSAGE MESSAGE, TO_DATE(:B3 ,'MM-DD-YYYY HH24:MI:SS') START_TIME, TO
_DATE(:B2 ,'MM-DD-YYYY HH24:MI:SS') END_TIME, HISTORY.FINDING_COUNT FINDING_COUN
0.0 1 0.05 0.0 0.0 126.5 .0 5dfmd823r8dsp
insert into wrh$_memory_resize_ops (snap_id, dbid, instance_number, compone
nt, oper_type, start_time, end_time, target_size, oper_mode, parameter, initi
al_size, final_size, status) select snap_id, dbid, instance_num, compo
nent, oper_type, start_time, max(end_time), target_size, max(oper_mode),
0.0 1 0.03 0.0 0.0 122.3 2.9 5k5v1ah25fb2c
Module: OEM.SystemPool
BEGIN EMD_LOADER.UPDATE_CURRENT_METRICS(:1, :2, :3, :4, :5, :6); END;
-------------------------------------------------------------
SQL ordered by User I/O Wait Time DB/Inst: GLDB/gldb Snaps: 801-802
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - User I/O Time as a percentage of Total User I/O Wait time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 3.3% of Total User I/O Wait Time (s):
-> Captured PL/SQL account for 1.7% of Total User I/O Wait Time (s):
User I/O UIO per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
0.0 22,602 0.00 2.3 311.9 50.9 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
0.0 15 0.00 1.2 0.5 .0 .7 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
0.0 244 0.00 0.5 0.0 124.4 5.1 8vwv6hx92ymmm
UPDATE MGMT_CURRENT_METRICS SET COLLECTION_TIMESTAMP = :B1 , VALUE = :B6 , STRIN
G_VALUE = :B5 WHERE TARGET_GUID = :B4 AND METRIC_GUID = :B3 AND KEY_VALUE = :B2
AND COLLECTION_TIMESTAMP < :B1
0.0 1 0.00 0.3 0.0 122.3 2.9 5k5v1ah25fb2c
Module: OEM.SystemPool
BEGIN EMD_LOADER.UPDATE_CURRENT_METRICS(:1, :2, :3, :4, :5, :6); END;
0.0 19 0.00 0.2 0.1 60.1 .5 3am9cfkvx7gq1
CALL MGMT_ADMIN_DATA.EVALUATE_MGMT_METRICS(:target_guid,:metric_guid,:metric_val
ues)
0.0 58 0.00 0.1 0.0 .0 3.7 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
0.0 1 0.00 0.1 0.4 96.2 .1 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.0 5 0.00 0.1 0.0 222.3 1.7 5uy533jsc8hyh
Module: Oracle Enterprise Manager.rollup
DELETE MGMT_METRICS_1HOUR WHERE TARGET_GUID = :B3 AND ROLLUP_TIMESTAMP < :B2 AND
ROWNUM <= :B1
0.0 1 0.00 0.1 0.1 21.5 .2 gjm43un5cy843
SELECT SUM(USED), SUM(TOTAL) FROM (SELECT /*+ ORDERED */ SUM(D.BYTES)/(1024*1024
)-MAX(S.BYTES) USED, SUM(D.BYTES)/(1024*1024) TOTAL FROM (SELECT TABLESPACE_NAME
, SUM(BYTES)/(1024*1024) BYTES FROM (SELECT /*+ ORDERED USE_NL(obj tab) */ DISTI
NCT TS.NAME FROM SYS.OBJ$ OBJ, SYS.TAB$ TAB, SYS.TS$ TS WHERE OBJ.OWNER# = USERE
0.0 2 0.00 0.0 0.0 435.0 2.6 d8mayxqw0wnpv
SELECT OWNER FROM DBA_PROCEDURES WHERE OBJECT_NAME = 'MGMT_USER' AND PROCEDURE_N
AME = 'DROP_USER'
-------------------------------------------------------------
SQL ordered by Gets DB/Inst: GLDB/gldb Snaps: 801-802
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - Buffer Gets as a percentage of Total Buffer Gets
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Buffer Gets: 31,341,226
-> Captured SQL account for 101.1% of Total
Buffer Gets Elapsed
Gets Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ------------ ------ ---------- ------ ------ -----------
31,308,611 22,602 1,385.2 99.9 311.9 50.9 .0 7k1usds2tau
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
339,209 112,746 3.0 1.1 11.3 60.6 .0 4m7m0t6fjcs
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
16,477 15 1,098.5 0.1 0.5 .0 .7 6gvch1xu9ca
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
6,121 19 322.2 0.0 0.1 60.1 .5 3am9cfkvx7g
CALL MGMT_ADMIN_DATA.EVALUATE_MGMT_METRICS(:target_guid,:metric_guid,:metric_val
ues)
5,093 1 5,093.0 0.0 0.1 21.5 .2 gjm43un5cy8
SELECT SUM(USED), SUM(TOTAL) FROM (SELECT /*+ ORDERED */ SUM(D.BYTES)/(1024*1024
)-MAX(S.BYTES) USED, SUM(D.BYTES)/(1024*1024) TOTAL FROM (SELECT TABLESPACE_NAME
, SUM(BYTES)/(1024*1024) BYTES FROM (SELECT /*+ ORDERED USE_NL(obj tab) */ DISTI
NCT TS.NAME FROM SYS.OBJ$ OBJ, SYS.TAB$ TAB, SYS.TS$ TS WHERE OBJ.OWNER# = USERE
3,296 869 3.8 0.0 0.1 .0 .0 1umfsnn451y
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
3,003 849 3.5 0.0 0.0 .0 .0 cm5vu20fhtn
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
2,776 704 3.9 0.0 0.1 22.2 .0 df9md17q736
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
2,461 798 3.1 0.0 0.1 .0 .0 0ysq85ju8aj
Module: OdbcDbTrace64.exe
INSERT INTO DbLoaderStatus ( LoaderName, ProbeName, IpAddrPort, Status,OkFrameCo
unt, ErrorFrameCount) VALUES ( :1, :2, :3, :4, :5, :6 )
2,226 244 9.1 0.0 0.0 124.4 5.1 8vwv6hx92ym
UPDATE MGMT_CURRENT_METRICS SET COLLECTION_TIMESTAMP = :B1 , VALUE = :B6 , STRIN
G_VALUE = :B5 WHERE TARGET_GUID = :B4 AND METRIC_GUID = :B3 AND KEY_VALUE = :B2
AND COLLECTION_TIMESTAMP < :B1
-------------------------------------------------------------
SQL ordered by Reads DB/Inst: GLDB/gldb Snaps: 801-802
-> %Total - Physical Reads as a percentage of Total Disk Reads
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Disk Reads: 801
-> Captured SQL account for 1.9% of Total
Physical Reads Elapsed
Reads Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ---------- ------ ---------- ------ ------ -------------
8 22,602 0.0 1.0 311.9 50.9 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
5 15 0.3 0.6 0.5 .0 .7 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
4 244 0.0 0.5 0.0 124.4 5.1 8vwv6hx92ymmm
UPDATE MGMT_CURRENT_METRICS SET COLLECTION_TIMESTAMP = :B1 , VALUE = :B6 , STRIN
G_VALUE = :B5 WHERE TARGET_GUID = :B4 AND METRIC_GUID = :B3 AND KEY_VALUE = :B2
AND COLLECTION_TIMESTAMP < :B1
2 1 2.0 0.2 0.0 122.3 2.9 5k5v1ah25fb2c
Module: OEM.SystemPool
BEGIN EMD_LOADER.UPDATE_CURRENT_METRICS(:1, :2, :3, :4, :5, :6); END;
1 58 0.0 0.1 0.0 .0 3.7 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
1 5 0.2 0.1 0.0 222.3 1.7 5uy533jsc8hyh
Module: Oracle Enterprise Manager.rollup
DELETE MGMT_METRICS_1HOUR WHERE TARGET_GUID = :B3 AND ROLLUP_TIMESTAMP < :B2 AND
ROWNUM <= :B1
1 1 1.0 0.1 0.4 96.2 .1 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0 5 0.0 0.0 0.0 210.0 .0 00prz3j9n4gyj
Module: Oracle Enterprise Manager.rollup
SELECT METRIC_GUID, TRUNC(COLLECTION_TIMESTAMP, 'HH24'), KEY_VALUE, COUNT(TARGET
_GUID), AVG(VALUE), MIN(VALUE), MAX(VALUE), STDDEV(VALUE) FROM MGMT_METRICS_RAW
WHERE TARGET_GUID = :B3 AND COLLECTION_TIMESTAMP >= (:B2 +(1/24)) AND COLLECTION
_TIMESTAMP < (:B1 +(1/24)) AND VALUE IS NOT NULL GROUP BY TARGET_GUID, METRIC_GU
0 474 0.0 0.0 0.0 .0 .0 089dbukv1aanh
Module: EM_PING
SELECT SYS_EXTRACT_UTC(SYSTIMESTAMP) FROM DUAL
0 50 0.0 0.0 0.0 .0 .0 08bqjmf8490s2
Module: OMS
SELECT PARAMETER_VALUE FROM MGMT_PARAMETERS WHERE PARAMETER_NAME = :B1
-------------------------------------------------------------
SQL ordered by Physical Reads (UnOptimized)DB/Inst: GLDB/gldb Snaps: 801-802
-> UnOptimized Read Reqs = Physical Read Reqts - Optimized Read Reqs
-> %Opt - Optimized Reads as percentage of SQL Read Requests
-> %Total - UnOptimized Read Reqs as a percentage of Total UnOptimized Read Reqs
-> Total Physical Read Requests: 801
-> Captured SQL account for 9.5% of Total
-> Total UnOptimized Read Requests: 801
-> Captured SQL account for 9.5% of Total
-> Total Optimized Read Requests: 1
-> Captured SQL account for 0.0% of Total
UnOptimized Physical UnOptimized
Read Reqs Read Reqs Executions Reqs per Exe %Opt %Total SQL Id
----------- ----------- ---------- ------------ ------ ------ -------------
86 86 1 86.0 0.0 10.7 1qhza1uh1xcf9
Module: emagent_SQL_oracle_database
/* OracleOEM */ DECLARE l_log_mode VARCHAR2(32); l_flashback_on VARCHAR2(32
); l_flash_recovery_area VARCHAR2(512); l_flash_recovery_size NUMBER; l_us
able_area NUMBER; l_space_used NUMBER; l_reclaimable_area NUMBER; l_nonrec
laimable_area NUMBER; l_oldest_flashback_time VARCHAR2(512); TYPE data_curs
21 21 3 7.0 0.0 2.6 9juw6s4yy5pzp
Module: emagent_SQL_oracle_database
/* OracleOEM */ SELECT SUM(broken), SUM(failed) FROM (SELECT DECODE(STATE, '
BROKEN', 1, 0) broken, DECODE(STATE,'FAILED',1,0) failed
FROM DBA_SCHEDULER_JOBS )
21 21 3 7.0 0.0 2.6 b987hw04sm2s0
Module: Admin Connection
select count(*) from dba_hist_baseline where dbid = :1
17 17 15 1.1 0.0 2.1 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
14 14 5 2.8 0.0 1.7 934ur8r7tqbjx
Module: emagent_SQL_oracle_database
SELECT DBID FROM V$DATABASE
12 12 19 0.6 0.0 1.5 3am9cfkvx7gq1
CALL MGMT_ADMIN_DATA.EVALUATE_MGMT_METRICS(:target_guid,:metric_guid,:metric_val
ues)
10 10 22 0.5 0.0 1.2 49s332uhbnsma
declare vsn varchar2(20); begin vsn :=
dbms_rcvman.getPackageVersion; :pkg_vsn:pkg_vsn_i := vsn;
if vsn is not null then :pkg_vsnub4 :=
to_number(substr(vsn,1,2) || substr(vsn,4,2) || s
8 8 22,602 0.0 0.0 1.0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
7 7 1 7.0 0.0 0.9 fcsu9qb17sk52
Module: emagent_SQL_oracle_database
/* OracleOEM */ DECLARE instance_number NUMBER; latest_task_id NUMBER;
start_time VARCHAR2(1024); end_time VARCHAR2(1024); db_id NUMBER; TY
PE data_cursor_type IS REF CURSOR; data_cursor data_cursor_type;
CURSOR get_latest_task_id IS SELECT TASK_LIST.TASK_ID FROM
6 6 2 3.0 0.0 0.7 7d92gmwphtza8
Module: emagent_SQL_oracle_database
SELECT OWNER,JOB_NAME,COMMENTS FROM DBA_SCHEDULER_JOBS WHERE JOB_NAME LIKE 'EM_I
DX_STAT_JOB%' AND UPPER(OWNER) = 'DBSNMP'
-------------------------------------------------------------
SQL ordered by Executions DB/Inst: GLDB/gldb Snaps: 801-802
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Executions: 147,696
-> Captured SQL account for 96.0% of Total
Elapsed
Executions Rows Processed Rows per Exec Time (s) %CPU %IO SQL Id
------------ --------------- -------------- ---------- ------ ------ -----------
112,746 112,746 1.0 11.3 60.6 .0 4m7m0t6fjcs
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
22,602 2,254,901 99.8 311.9 50.9 .0 7k1usds2tau
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
869 797 0.9 0.1 .0 .0 1umfsnn451y
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
849 1,256 1.5 0.0 .0 .0 cm5vu20fhtn
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
798 798 1.0 0.1 .0 .0 0ysq85ju8aj
Module: OdbcDbTrace64.exe
INSERT INTO DbLoaderStatus ( LoaderName, ProbeName, IpAddrPort, Status,OkFrameCo
unt, ErrorFrameCount) VALUES ( :1, :2, :3, :4, :5, :6 )
765 765 1.0 0.0 .0 .0 8t43xdhf4d9
Module: OEM.BoundedPool
SELECT CONTEXT_TYPE_ID,CONTEXT_TYPE,TRACE_LEVEL,NULL,NULL FROM EMDW_TRACE_CONFIG
WHERE CONTEXT_TYPE = UPPER(:B1 )
704 704 1.0 0.1 22.2 .0 df9md17q736
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
532 532 1.0 0.0 40.3 .2 bsa0wjtftg3
select file# from file$ where ts#=:1
474 474 1.0 0.0 .0 .0 089dbukv1aa
Module: EM_PING
SELECT SYS_EXTRACT_UTC(SYSTIMESTAMP) FROM DUAL
360 360 1.0 0.2 .0 .0 6v7n0y2bq89
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
-------------------------------------------------------------
SQL ordered by Parse Calls DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Parse Calls: 118,356
-> Captured SQL account for 97.9% of Total
% Total
Parse Calls Executions Parses SQL Id
------------ ------------ --------- -------------
112,746 112,746 95.26 4m7m0t6fjcs5x
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
849 849 0.72 cm5vu20fhtnq1
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
704 704 0.59 df9md17q736da
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
532 532 0.45 bsa0wjtftg3uw
select file# from file$ where ts#=:1
210 210 0.18 3972rvxu3knn3
Module: emagent_AQMetrics
delete from sdo_geor_ddl__table$$
104 104 0.09 au7jux77bsqqm
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE where PROBE_NAME='C
DRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CONN_TYPE=2
103 103 0.09 350f5yrnnmshs
lock table sys.mon_mods$ in exclusive mode nowait
103 103 0.09 g00cj285jmgsw
update sys.mon_mods$ set inserts = inserts + :ins, updates = updates + :upd, del
etes = deletes + :del, flags = (decode(bitand(flags, :flag), :flag, flags, flags
+ :flag)), drop_segments = drop_segments + :dropseg, timestamp = :time where ob
j# = :objn
58 58 0.05 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
58 58 0.05 43c5ykm1mcp2a
Module: OMS
begin dbms_application_info.set_module(:1, :2); dbms_application_info.set_client
_info(:3); dbms_session.set_identifier(:4); end;
-------------------------------------------------------------
SQL ordered by Sharable Memory DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
SQL ordered by Version Count DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
Batched IO (bound) vector count 0 0.0 0.0
Batched IO (full) vector count 0 0.0 0.0
Batched IO block miss count 0 0.0 0.0
Batched IO double miss count 0 0.0 0.0
Batched IO same unit count 0 0.0 0.0
Batched IO single block count 0 0.0 0.0
Batched IO vector block count 0 0.0 0.0
Batched IO vector read count 0 0.0 0.0
Block Cleanout Optim referenced 5,083 5.6 1.9
CCursor + sql area evicted 0 0.0 0.0
CPU used by this session 16,206 17.9 5.9
CPU used when call started 16,151 17.9 5.9
CR blocks created 94 0.1 0.0
DB time 304,545 337.2 110.7
DBWR checkpoint buffers written 461,273 510.7 167.7
DBWR checkpoints 108 0.1 0.0
DBWR revisited being-written buf 4 0.0 0.0
DBWR thread checkpoint buffers w 461,273 510.7 167.7
DBWR transaction table writes 540 0.6 0.2
DBWR undo block writes 202,747 224.5 73.7
HSC Heap Segment Block Changes 2,370,671 2,624.7 862.1
Heap Segment Array Inserts 89 0.1 0.0
Heap Segment Array Updates 136 0.2 0.1
IMU CR rollbacks 92 0.1 0.0
IMU Flushes 1,051 1.2 0.4
IMU Redo allocation size 45,030,332 49,855.8 16,374.7
IMU commits 1,742 1.9 0.6
IMU contention 42 0.1 0.0
IMU ktichg flush 6 0.0 0.0
IMU pool not allocated 262 0.3 0.1
IMU recursive-transaction flush 144 0.2 0.1
IMU undo allocation size 27,068,808 29,969.5 9,843.2
IMU- failed to get a private str 262 0.3 0.1
Number of read IOs issued 0 0.0 0.0
RowCR attempts 15 0.0 0.0
RowCR hits 15 0.0 0.0
SMON posted for undo segment shr 1 0.0 0.0
SQL*Net roundtrips to/from clien 31,207 34.6 11.4
active txn count during cleanout 163,525 181.1 59.5
application wait time 1 0.0 0.0
background checkpoints completed 108 0.1 0.0
background checkpoints started 108 0.1 0.0
background timeouts 3,775 4.2 1.4
branch node splits 147 0.2 0.1
buffer is not pinned count 132,471 146.7 48.2
buffer is pinned count 14,435 16.0 5.3
bytes received via SQL*Net from 937,770,190 1,038,261.4 341,007.3
bytes sent via SQL*Net to client 4,440,938 4,916.8 1,614.9
calls to get snapshot scn: kcmgs 303,759 336.3 110.5
calls to kcmgas 399,698 442.5 145.3
calls to kcmgcs 331,814 367.4 120.7
cell physical IO interconnect by 9,046,428,672 10,015,842.0 3,289,610.4
change write time 3,805 4.2 1.4
cleanout - number of ktugct call 187,189 207.3 68.1
cleanouts and rollbacks - consis 0 0.0 0.0
cleanouts only - consistent read 2 0.0 0.0
cluster key scan block gets 2,240 2.5 0.8
cluster key scans 2,008 2.2 0.7
commit batch performed 0 0.0 0.0
commit batch requested 0 0.0 0.0
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
commit batch/immediate performed 108 0.1 0.0
commit batch/immediate requested 108 0.1 0.0
commit cleanout failures: block 3 0.0 0.0
commit cleanout failures: buffer 590 0.7 0.2
commit cleanout failures: callba 11,985 13.3 4.4
commit cleanouts 794,982 880.2 289.1
commit cleanouts successfully co 782,404 866.3 284.5
commit immediate performed 108 0.1 0.0
commit immediate requested 108 0.1 0.0
commit txn count during cleanout 63,393 70.2 23.1
concurrency wait time 18 0.0 0.0
consistent changes 209 0.2 0.1
consistent gets 414,286 458.7 150.7
consistent gets - examination 349,954 387.5 127.3
consistent gets direct 22 0.0 0.0
consistent gets from cache 414,264 458.7 150.6
consistent gets from cache (fast 59,579 66.0 21.7
cursor authentications 6 0.0 0.0
data blocks consistent reads - u 158 0.2 0.1
db block changes 24,568,172 27,200.9 8,933.9
db block gets 30,926,940 34,241.1 11,246.2
db block gets direct 34 0.0 0.0
db block gets from cache 30,926,906 34,241.0 11,246.2
db block gets from cache (fastpa 9,013,258 9,979.1 3,277.6
deferred (CURRENT) block cleanou 540,590 598.5 196.6
dirty buffers inspected 23 0.0 0.0
enqueue conversions 452 0.5 0.2
enqueue releases 432,534 478.9 157.3
enqueue requests 432,537 478.9 157.3
enqueue timeouts 2 0.0 0.0
enqueue waits 101 0.1 0.0
execute count 147,696 163.5 53.7
failed probes on index block rec 0 0.0 0.0
file io wait time 1,212,362,628 1,342,279.1 440,859.1
free buffer inspected 313,431 347.0 114.0
free buffer requested 368,052 407.5 133.8
heap block compress 1,233 1.4 0.5
hot buffers moved to head of LRU 58,406 64.7 21.2
immediate (CR) block cleanout ap 2 0.0 0.0
immediate (CURRENT) block cleano 116,667 129.2 42.4
index crx upgrade (positioned) 1,438 1.6 0.5
index fast full scans (full) 4 0.0 0.0
index fetch by key 122,891 136.1 44.7
index scans kdiixs1 10,069 11.2 3.7
leaf node 90-10 splits 10,468 11.6 3.8
leaf node splits 40,712 45.1 14.8
lob reads 3 0.0 0.0
lob writes 57 0.1 0.0
lob writes unaligned 57 0.1 0.0
logons cumulative 70 0.1 0.0
max cf enq hold time 0 0.0 0.0
messages received 21,611 23.9 7.9
messages sent 21,611 23.9 7.9
min active SCN optimization appl 3 0.0 0.0
no work - consistent read gets 15,471 17.1 5.6
non-idle wait count 179,576 198.8 65.3
non-idle wait time 13,256 14.7 4.8
opened cursors cumulative 120,326 133.2 43.8
parse count (describe) 0 0.0 0.0
parse count (failures) 0 0.0 0.0
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
parse count (hard) 879 1.0 0.3
parse count (total) 118,356 131.0 43.0
parse time cpu 187 0.2 0.1
parse time elapsed 207 0.2 0.1
physical read IO requests 801 0.9 0.3
physical read bytes 6,561,792 7,265.0 2,386.1
physical read total IO requests 9,602 10.6 3.5
physical read total bytes 147,361,792 163,153.1 53,586.1
physical read total multi block 0 0.0 0.0
physical reads 801 0.9 0.3
physical reads cache 131 0.2 0.1
physical reads cache prefetch 0 0.0 0.0
physical reads direct 670 0.7 0.2
physical reads direct (lob) 0 0.0 0.0
physical reads direct temporary 0 0.0 0.0
physical reads prefetch warmup 0 0.0 0.0
physical write IO requests 270,943 300.0 98.5
physical write bytes 3,785,170,944 4,190,789.0 1,376,425.8
physical write total IO requests 287,285 318.1 104.5
physical write total bytes 8,899,066,880 9,852,688.9 3,236,024.3
physical write total multi block 18,184 20.1 6.6
physical writes 462,057 511.6 168.0
physical writes direct 682 0.8 0.3
physical writes direct (lob) 34 0.0 0.0
physical writes direct temporary 0 0.0 0.0
physical writes from cache 461,375 510.8 167.8
physical writes non checkpoint 360,695 399.4 131.2
pinned cursors current 0 0.0 0.0
prefetch warmup blocks aged out 860 1.0 0.3
process last non-idle time 0 0.0 0.0
recursive calls 1,614,235 1,787.2 587.0
recursive cpu usage 1,318 1.5 0.5
redo blocks checksummed by FG (e 2,835,134 3,139.0 1,031.0
redo blocks written 9,856,022 10,912.2 3,584.0
redo buffer allocation retries 1,820 2.0 0.7
redo entries 12,344,681 13,667.5 4,489.0
redo log space requests 2,408 2.7 0.9
redo log space wait time 6,502 7.2 2.4
redo ordering marks 235,740 261.0 85.7
redo size 4,882,438,688 5,405,639.8 1,775,432.3
redo size for direct writes 1,768 2.0 0.6
redo subscn max counts 390,381 432.2 142.0
redo synch time 436 0.5 0.2
redo synch writes 2,761 3.1 1.0
redo wastage 2,232,172 2,471.4 811.7
redo write time 3,157 3.5 1.2
redo writes 8,146 9.0 3.0
rollback changes - undo records 222 0.3 0.1
rollbacks only - consistent read 94 0.1 0.0
rows fetched via callback 2,057 2.3 0.8
session connect time 0 0.0 0.0
session logical reads 31,341,226 34,699.7 11,396.8
shared hash latch upgrades - no 4,531 5.0 1.7
sorts (memory) 4,444 4.9 1.6
sorts (rows) 12,631 14.0 4.6
sql area evicted 0 0.0 0.0
sql area purged 0 0.0 0.0
summed dirty queue length 25 0.0 0.0
switch current to new buffer 1,302 1.4 0.5
table fetch by rowid 7,719 8.6 2.8
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
table fetch continued row 0 0.0 0.0
table scan blocks gotten 4,932 5.5 1.8
table scan rows gotten 240,721 266.5 87.5
table scans (short tables) 1,324 1.5 0.5
temp space allocated (bytes) 0 0.0 0.0
total cf enq hold time 2,566 2.8 0.9
total number of cf enq holders 934 1.0 0.3
total number of times SMON poste 1 0.0 0.0
transaction rollbacks 108 0.1 0.0
undo change vector size 1,339,003,852 1,482,491.2 486,910.5
user I/O wait time 27 0.0 0.0
user calls 31,737 35.1 11.5
user commits 2,750 3.0 1.0
user rollbacks 0 0.0 0.0
workarea executions - optimal 1,922 2.1 0.7
write clones created in backgrou 4 0.0 0.0
write clones created in foregrou 5,700 6.3 2.1
-------------------------------------------------------------
Instance Activity Stats - Absolute Values DB/Inst: GLDB/gldb Snaps: 801-802
-> Statistics with absolute values (should not be diffed)
Statistic Begin Value End Value
-------------------------------- --------------- ---------------
session uga memory max 750,552,440 817,535,216
session pga memory 510,818,224 550,829,960
session pga memory max 600,194,192 658,073,720
session cursor cache count 13,870 15,066
session uga memory 8.333127925E+11 9.149206806E+11
opened cursors current 134 134
logons current 38 38
-------------------------------------------------------------
Instance Activity Stats - Thread Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> Statistics identified by '(derived)' come from sources other than SYSSTAT
Statistic Total per Hour
-------------------------------- ------------------ ---------
log switches (derived) 108 430.46
-------------------------------------------------------------
IOStat by Function summary DB/Inst: GLDB/gldb Snaps: 801-802
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Function Name Data per sec per sec Data per sec per sec Count Tm(ms)
--------------- ------- ------- ------- ------- ------- ------- ------- -------
LGWR 99M 7.2 .109608 4.7G 15.9 5.36972 7836 0.5
DBWR 0M 0.0 0M 3.5G 299.2 3.99020 0 N/A
Others 36M 2.5 .039857 30M 2.2 .033214 3263 0.8
Direct Reads 5M 0.7 .005535 0M 0.0 0M 0 N/A
Direct Writes 0M 0.0 0M 5M 0.7 .005535 0 N/A
Buffer Cache Re 1M 0.2 .001107 0M 0.0 0M 148 0.2
TOTAL: 141M 10.6 .156109 8.3G 318.1 9.39867 11.2K 0.6
-------------------------------------------------------------
IOStat by Filetype summary DB/Inst: GLDB/gldb Snaps: 801-802
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Small Read and Large Read are average service times, in milliseconds
-> Ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Small Large
Filetype Name Data per sec per sec Data per sec per sec Read Read
--------------- ------- ------- ------- ------- ------- ------- ------- -------
Log File 0M 0.2 0M 4.7G 13.5 5.33208 0.4 N/A
Data File 7M 0.9 .007750 3.5G 300.0 3.99684 0.7 N/A
Control File 134M 9.5 .148359 64M 4.6 .070858 0.7 N/A
Temp File 0M 0.0 0M 1M 0.0 .001107 N/A N/A
TOTAL: 141M 10.7 .156109 8.3G 318.1 9.40089 0.7 N/A
-------------------------------------------------------------
IOStat by Function/Filetype summary DB/Inst: GLDB/gldb Snaps: 801-802
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Ordered by (Data Read + Write) desc for each function
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Data per sec per sec Data per sec per sec Count Tm(ms)
------- ------- ------- ------- ------- ------- ------- -------
LGWR
99M 7.2 .109608 4.7G 15.9 5.36972 6756 0.6
LGWR (Log File)
0M 0.2 0M 4.7G 13.5 5.33208 432 0.2
LGWR (Control File)
99M 7.0 .109608 34M 2.4 .037643 6324 0.6
DBWR
0M 0.0 0M 3.5G 299.2 3.99020 0 N/A
DBWR (Data File)
0M 0.0 0M 3.5G 299.2 3.99020 0 N/A
Others
35M 2.5 .038750 30M 2.2 .033214 2283 0.8
Others (Control File)
35M 2.5 .038750 30M 2.2 .033214 2255 0.8
Others (Data File)
0M 0.0 0M 0M 0.0 0M 28 0.5
Direct Reads
5M 0.7 .005535 0M 0.0 0M 0 N/A
Direct Reads (Data File)
5M 0.7 .005535 0M 0.0 0M 0 N/A
Direct Writes
0M 0.0 0M 5M 0.7 .005535 0 N/A
Direct Writes (Data File)
0M 0.0 0M 5M 0.7 .005535 0 N/A
Buffer Cache Reads
1M 0.2 .001107 0M 0.0 0M 153 0.2
Buffer Cache Reads (Data File)
1M 0.2 .001107 0M 0.0 0M 153 0.2
TOTAL:
140M 10.7 .155002 8.3G 318.1 9.39867 9192 0.6
-------------------------------------------------------------
Tablespace IO Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by IOs (Reads + Writes) desc
Tablespace
------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
GLCOMM
116 0 0.0 1.0 156,740 174 0 0.0
UNDOTBS1
108 0 0.0 1.0 112,347 124 0 0.0
SYSAUX
211 0 0.1 1.0 1,168 1 0 0.0
SYSTEM
109 0 0.0 1.0 462 1 0 0.0
EXAMPLE
108 0 0.0 1.0 108 0 0 0.0
USERS
108 0 0.0 1.0 108 0 0 0.0
TEMP
0 0 0.0 N/A 10 0 0 0.0
-------------------------------------------------------------
File IO Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by Tablespace, File
Tablespace Filename
------------------------ ----------------------------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
EXAMPLE D:\ORACLE\ORADATA\GLDB\EXAMPLE01.DBF
108 0 0.0 1.0 108 0 0 0.0
GLCOMM D:\ORACLE\ORADATA\GLDB\GLCOMM01.DBF
116 0 0.0 1.0 156,740 174 0 0.0
SYSAUX D:\ORACLE\ORADATA\GLDB\SYSAUX01.DBF
211 0 0.1 1.0 1,168 1 0 0.0
SYSTEM D:\ORACLE\ORADATA\GLDB\SYSTEM01.DBF
109 0 0.0 1.0 462 1 0 0.0
TEMP D:\ORACLE\ORADATA\GLDB\TEMP01.DBF
0 0 N/A N/A 10 0 0 N/A
UNDOTBS1 D:\ORACLE\ORADATA\GLDB\UNDOTBS01.DBF
108 0 0.0 1.0 112,347 124 0 0.0
USERS D:\ORACLE\ORADATA\GLDB\USERS01.DBF
108 0 0.0 1.0 108 0 0 0.0
-------------------------------------------------------------
Buffer Pool Statistics DB/Inst: GLDB/gldb Snaps: 801-802
-> Standard block size Pools D: default, K: keep, R: recycle
-> Default Pools for other block sizes: 2k, 4k, 8k, 16k, 32k
Free Writ Buffer
Number of Pool Buffer Physical Physical Buff Comp Busy
P Buffers Hit% Gets Reads Writes Wait Wait Waits
--- ---------- ---- ------------ ------------ ----------- ------ ------ --------
D 283,680 100 31,341,148 124 461,375 0 0 0
-------------------------------------------------------------
Checkpoint Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Physical Writes: 462,057
Other Autotune Thread
MTTR Log Size Log Ckpt Settings Ckpt Ckpt
Writes Writes Writes Writes Writes Writes
----------- ----------- ----------- ----------- ----------- -----------
0 443,812 0 0 0 17,461
-------------------------------------------------------------
Instance Recovery Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> B: Begin Snapshot, E: End Snapshot
Estd
Targt Estd Log Ckpt Log Ckpt Opt RAC
MTTR MTTR Recovery Actual Target Log Sz Timeout Interval Log Avail
(s) (s) Estd IOs RedoBlks RedoBlks RedoBlks RedoBlks RedoBlks Sz(M) Time
- ----- ----- -------- -------- -------- -------- -------- -------- ------ -----
B 0 12 9056 165665 165888 165888 412181 N/A N/A N/A
E 0 11 8785 177427 165888 165888 452802 N/A N/A N/A
-------------------------------------------------------------
MTTR Advisory DB/Inst: GLDB/gldb Snap: 802
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Pool Advisory DB/Inst: GLDB/gldb Snap: 802
-> Only rows with estimated physical reads >0 are displayed
-> ordered by Block Size, Buffers For Estimate
Est
Phys Estimated Est
Size for Size Buffers Read Phys Reads Est Phys %DBtime
P Est (M) Factor (thousands) Factor (thousands) Read Time for Rds
--- -------- ------ ------------ ------ -------------- ------------ -------
D 224 .1 28 1.2 42 1 11.0
D 448 .2 55 1.2 41 1 10.0
D 672 .3 83 1.0 36 1 8.0
D 896 .4 110 1.0 35 1 8.0
D 1,120 .5 138 1.0 35 1 8.0
D 1,344 .6 165 1.0 35 1 8.0
D 1,568 .7 193 1.0 35 1 8.0
D 1,792 .8 221 1.0 34 1 8.0
D 2,016 .9 248 1.0 34 1 8.0
D 2,240 1.0 276 1.0 34 1 8.0
D 2,304 1.0 284 1.0 34 1 8.0
D 2,464 1.1 303 1.0 34 1 8.0
D 2,688 1.2 331 1.0 34 1 8.0
D 2,912 1.3 359 1.0 34 1 8.0
D 3,136 1.4 386 1.0 34 1 8.0
D 3,360 1.5 414 1.0 34 1 8.0
D 3,584 1.6 441 1.0 34 1 8.0
D 3,808 1.7 469 1.0 34 1 8.0
D 4,032 1.8 496 1.0 34 1 8.0
D 4,256 1.8 524 1.0 34 1 8.0
D 4,480 1.9 552 1.0 34 1 8.0
-------------------------------------------------------------
PGA Aggr Summary DB/Inst: GLDB/gldb Snaps: 801-802
-> PGA cache hit % - percentage of W/A (WorkArea) data processed only in-memory
PGA Cache Hit % W/A MB Processed Extra W/A MB Read/Written
--------------- ------------------ --------------------------
100.0 43 0
-------------------------------------------------------------
PGA Aggr Target Stats DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
PGA Aggr Target Histogram DB/Inst: GLDB/gldb Snaps: 801-802
-> Optimal Executions are purely in-memory operations
Low High
Optimal Optimal Total Execs Optimal Execs 1-Pass Execs M-Pass Execs
------- ------- -------------- -------------- ------------ ------------
2K 4K 1,884 1,884 0 0
64K 128K 2 2 0 0
512K 1024K 28 28 0 0
1M 2M 6 6 0 0
4M 8M 2 2 0 0
-------------------------------------------------------------
PGA Memory Advisory DB/Inst: GLDB/gldb Snap: 802
-> When using Auto Memory Mgmt, minimally choose a pga_aggregate_target value
where Estd PGA Overalloc Count is 0
Estd Extra Estd P Estd PGA
PGA Target Size W/A MB W/A MB Read/ Cache Overallo Estd
Est (MB) Factr Processed Written to Disk Hit % Count Time
---------- ------- ---------------- ---------------- ------ -------- -------
246 0.1 618.5 0.0 100.0 0 1.1E+05
492 0.3 618.5 0.0 100.0 0 1.1E+05
984 0.5 618.5 0.0 100.0 0 1.1E+05
1,476 0.8 618.5 0.0 100.0 0 1.1E+05
1,968 1.0 618.5 0.0 100.0 0 1.1E+05
2,362 1.2 618.5 0.0 100.0 0 1.1E+05
2,755 1.4 618.5 0.0 100.0 0 1.1E+05
3,149 1.6 618.5 0.0 100.0 0 1.1E+05
3,542 1.8 618.5 0.0 100.0 0 1.1E+05
3,936 2.0 618.5 0.0 100.0 0 1.1E+05
5,904 3.0 618.5 0.0 100.0 0 1.1E+05
7,872 4.0 618.5 0.0 100.0 0 1.1E+05
11,808 6.0 618.5 0.0 100.0 0 1.1E+05
15,744 8.0 618.5 0.0 100.0 0 1.1E+05
-------------------------------------------------------------
Shared Pool Advisory DB/Inst: GLDB/gldb Snap: 802
-> SP: Shared Pool Est LC: Estimated Library Cache Factr: Factor
-> Note there is often a 1:Many correlation between a single logical object
in the Library Cache, and the physical number of memory objects associated
with it. Therefore comparing the number of Lib Cache objects (e.g. in
v$librarycache), with the number of Lib Cache Memory Objects is invalid.
Est LC Est LC Est LC Est LC
Shared SP Est LC Time Time Load Load Est LC
Pool Size Size Est LC Saved Saved Time Time Mem Obj
Size(M) Factr (M) Mem Obj (s) Factr (s) Factr Hits (K)
-------- ----- -------- ------------ -------- ------ ------- ------ ------------
192 .3 20 1,485 3,123 1.0 51 1.8 1,445
256 .4 84 5,602 3,130 1.0 44 1.6 4,676
320 .6 147 8,194 3,146 1.0 28 1.0 4,679
384 .7 197 10,325 3,146 1.0 28 1.0 4,679
448 .8 209 11,078 3,146 1.0 28 1.0 4,679
512 .9 209 11,078 3,146 1.0 28 1.0 4,679
576 1.0 209 11,078 3,146 1.0 28 1.0 4,679
640 1.1 209 11,078 3,146 1.0 28 1.0 4,679
704 1.2 209 11,078 3,146 1.0 28 1.0 4,679
768 1.3 209 11,078 3,146 1.0 28 1.0 4,679
832 1.4 209 11,078 3,146 1.0 28 1.0 4,679
896 1.6 209 11,078 3,146 1.0 28 1.0 4,679
960 1.7 209 11,078 3,146 1.0 28 1.0 4,679
1,024 1.8 209 11,078 3,146 1.0 28 1.0 4,679
1,088 1.9 209 11,078 3,146 1.0 28 1.0 4,679
1,152 2.0 209 11,078 3,146 1.0 28 1.0 4,679
-------------------------------------------------------------
SGA Target Advisory DB/Inst: GLDB/gldb Snap: 802
SGA Target SGA Size Est DB Est Physical
Size (M) Factor Time (s) Reads
---------- ---------- ------------ ----------------
736 0.3 678 42,310
1,472 0.5 675 34,640
2,208 0.8 675 34,431
2,944 1.0 675 34,209
3,680 1.3 675 34,206
4,416 1.5 675 34,192
5,152 1.8 675 34,192
5,888 2.0 675 34,192
-------------------------------------------------------------
Streams Pool Advisory DB/Inst: GLDB/gldb Snap: 802
No data exists for this section of the report.
-------------------------------------------------------------
Java Pool Advisory DB/Inst: GLDB/gldb Snap: 802
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Wait Statistics DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Enqueue Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> only enqueues with waits are shown
-> Enqueue stats gathered prior to 10g should not be compared with 10g data
-> ordered by Wait Time desc, Waits desc
Enqueue Type (Request Reason)
------------------------------------------------------------------------------
Requests Succ Gets Failed Gets Waits Wt Time (s) Av Wt Time(ms)
------------ ------------ ----------- ----------- ------------ --------------
CF-Controlfile Transaction
2,386 2,384 2 101 1 8.42
-------------------------------------------------------------
Undo Segment Summary DB/Inst: GLDB/gldb Snaps: 801-802
-> Min/Max TR (mins) - Min and Max Tuned Retention (minutes)
-> STO - Snapshot Too Old count, OOS - Out of Space count
-> Undo segment block stats:
-> uS - unexpired Stolen, your - unexpired Released, uU - unexpired reUsed
-> eS - expired Stolen, eR - expired Released, eU - expired reUsed
Undo Num Undo Number of Max Qry Max Tx Min/Max STO/ uS/uR/uU/
TS# Blocks (K) Transactions Len (s) Concurcy TR (mins) OOS eS/eR/eU
---- ---------- --------------- -------- -------- --------- ----- --------------
2 152.2 117,061 710 4 26.9/26.9 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Undo Segment Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Most recent 35 Undostat rows, ordered by Time desc
Num Undo Number of Max Qry Max Tx Tun Ret STO/ uS/uR/uU/
End Time Blocks Transactions Len (s) Concy (mins) OOS eS/eR/eU
------------ ----------- ------------ ------- ------- ------- ----- ------------
16-Oct 13:08 152,210 117,061 710 4 27 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Latch Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
AQ deq hash table latch 1 0.0 0 0 N/A
AQ dequeue txn counter l 780 0.0 0 0 N/A
ASM db client latch 738 0.0 0 0 N/A
ASM map operation hash t 1 0.0 0 0 N/A
ASM network state latch 109 0.0 0 0 N/A
AWR Alerted Metric Eleme 6,441 0.0 0 0 N/A
Change Notification Hash 300 0.0 0 0 N/A
Consistent RBA 8,258 0.0 0.0 0 0 N/A
DML lock allocation 250,983 0.0 0 0 N/A
Event Group Locks 52 0.0 0 0 N/A
FOB s.o list latch 134 0.0 0 0 N/A
File State Object Pool P 1 0.0 0 0 N/A
IPC stats buffer allocat 1 0.0 0 0 N/A
In memory undo latch 65,692 0.0 1.0 0 3,439 0.0
JS Sh mem access 3 0.0 0 0 N/A
JS broadcast autostart l 17 0.0 0 0 N/A
JS mem alloc latch 2 0.0 0 0 N/A
JS queue access latch 3 0.0 0 0 N/A
JS queue state obj latch 6,658 0.0 0 0 N/A
JS slv state obj latch 177 0.0 0 0 N/A
KFC FX Hash Latch 1 0.0 0 0 N/A
KFC Hash Latch 1 0.0 0 0 N/A
KFCL LE Freelist 1 0.0 0 0 N/A
KGNFS-NFS:SHM structure 1 0.0 0 0 N/A
KGNFS-NFS:SVR LIST 1 0.0 0 0 N/A
KJC message pool free li 1 0.0 0 0 N/A
KJCT flow control latch 1 0.0 0 0 N/A
KMG MMAN ready and start 300 0.0 0 0 N/A
KTF sga latch 5 0.0 0 302 0.0
KWQMN job cache list lat 11 0.0 0 0 N/A
KWQS pqueue ctx latch 21 0.0 0 0 N/A
Locator state objects po 1 0.0 0 0 N/A
Lsod array latch 1 0.0 0 0 N/A
MQL Tracking Latch 0 N/A 0 18 0.0
Memory Management Latch 1 0.0 0 300 0.0
Memory Queue 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Subscriber 1 0.0 0 0 N/A
MinActiveScn Latch 5 0.0 0 0 N/A
Mutex 1 0.0 0 0 N/A
Mutex Stats 1 0.0 0 0 N/A
OS process 364 0.0 0 0 N/A
OS process allocation 542 0.0 0 0 N/A
OS process: request allo 102 0.0 0 0 N/A
PL/SQL warning settings 572 0.0 0 0 N/A
PX hash array latch 1 0.0 0 0 N/A
QMT 1 0.0 0 0 N/A
Real-time plan statistic 15 0.0 0 0 N/A
SGA IO buffer pool latch 6,873 0.0 0 12,516 0.0
SGA blob parent 1 0.0 0 0 N/A
SGA bucket locks 1 0.0 0 0 N/A
SGA heap locks 1 0.0 0 0 N/A
SGA pool locks 1 0.0 0 0 N/A
SQL memory manager latch 31 0.0 0 300 0.0
SQL memory manager worka 21,052 0.0 0 0 N/A
Shared B-Tree 114 0.0 0 0 N/A
Streams Generic 1 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
Testing 1 0.0 0 0 N/A
Token Manager 1 0.0 0 0 N/A
WCR: sync 1 0.0 0 0 N/A
Write State Object Pool 1 0.0 0 0 N/A
X$KSFQP 1 0.0 0 0 N/A
XDB NFS Security Latch 1 0.0 0 0 N/A
XDB unused session pool 1 0.0 0 0 N/A
XDB used session pool 1 0.0 0 0 N/A
active checkpoint queue 13,997 0.0 0 0 N/A
active service list 2,191 0.1 0.0 0 1,017 0.0
begin backup scn array 34 0.0 0 0 N/A
buffer pool 1 0.0 0 0 N/A
business card 1 0.0 0 0 N/A
cache buffer handles 53 0.0 0 0 N/A
cache buffers chains 126,018,209 0.0 0.1 0 367,909 0.0
cache buffers lru chain 469,759 0.0 0.0 0 822,397 0.0
call allocation 493 0.4 0.0 0 0 N/A
cas latch 1 0.0 0 0 N/A
change notification clie 1 0.0 0 0 N/A
channel handle pool latc 107 0.0 0 0 N/A
channel operations paren 6,950 0.0 0 0 N/A
checkpoint queue latch 726,366 0.0 0.0 0 460,726 0.0
client/application info 1,409 0.0 0 0 N/A
compile environment latc 70 0.0 0 0 N/A
corrupted undo seg latch 774 0.0 0 0 N/A
cp cmon/server latch 1 0.0 0 0 N/A
cp pool latch 1 0.0 0 0 N/A
cp server hash latch 1 0.0 0 0 N/A
cp sga latch 109 0.0 0 0 N/A
cvmap freelist lock 1 0.0 0 0 N/A
deferred cleanup latch 109 0.0 0 0 N/A
dml lock allocation 109 0.0 0 0 N/A
done queue latch 1 0.0 0 0 N/A
dummy allocation 141 0.0 0 0 N/A
enqueue hash chains 865,961 0.0 0.0 0 0 N/A
enqueues 89,143 0.0 0 0 N/A
fifth spare latch 1 0.0 0 0 N/A
file cache latch 578 0.0 0 0 N/A
flashback copy 1 0.0 0 0 N/A
gc element 1 0.0 0 0 N/A
gcs commit scn state 1 0.0 0 0 N/A
gcs partitioned table ha 1 0.0 0 0 N/A
gcs pcm hashed value buc 1 0.0 0 0 N/A
gcs resource freelist 1 0.0 0 0 N/A
gcs resource hash 1 0.0 0 0 N/A
gcs resource scan list 1 0.0 0 0 N/A
gcs shadows freelist 1 0.0 0 0 N/A
ges domain table 1 0.0 0 0 N/A
ges enqueue table freeli 1 0.0 0 0 N/A
ges group table 1 0.0 0 0 N/A
ges process hash list 1 0.0 0 0 N/A
ges process parent latch 1 0.0 0 0 N/A
ges resource hash list 1 0.0 0 0 N/A
ges resource scan list 1 0.0 0 0 N/A
ges resource table freel 1 0.0 0 0 N/A
ges value block free lis 1 0.0 0 0 N/A
global KZLD latch for me 16 0.0 0 0 N/A
global tx hash mapping 1 0.0 0 0 N/A
granule operation 1 0.0 0 0 N/A
hash table column usage 105 0.0 0 7,508 0.0
Latch Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
hash table modification 10 0.0 0 0 N/A
heartbeat check 1 0.0 0 0 N/A
intra txn parallel recov 1 0.0 0 0 N/A
io pool granule metadata 1 0.0 0 0 N/A
job workq parent latch 20 0.0 0 19 0.0
job_queue_processes free 42 0.0 0 0 N/A
job_queue_processes para 216 0.0 0 0 N/A
k2q lock allocation 1 0.0 0 0 N/A
kcbtsemkid latch 108 0.0 0 0 N/A
kdlx hb parent latch 1 0.0 0 0 N/A
kgb parent 1 0.0 0 0 N/A
kks stats 1,758 0.0 0 0 N/A
kokc descriptor allocati 286 0.0 0 0 N/A
ksfv messages 1 0.0 0 0 N/A
kss move lock 15 0.0 0 0 N/A
ksuosstats global area 63 0.0 0 0 N/A
ksv allocation latch 137 0.0 0 0 N/A
ksv class latch 29 0.0 0 0 N/A
ksv msg queue latch 1 0.0 0 0 N/A
ksz_so allocation latch 102 0.0 0 0 N/A
ktm global data 7 0.0 0 0 N/A
kwqbsn:qsga 44 0.0 0 0 N/A
lgwr LWN SCN 8,225 0.3 0.0 0 0 N/A
list of block allocation 56,536 0.0 0 0 N/A
loader state object free 1,424 0.0 0 0 N/A
lob segment dispenser la 1 0.0 0 0 N/A
lob segment hash table l 3 0.0 0 0 N/A
lob segment query latch 1 0.0 0 0 N/A
lock DBA buffer during m 1 0.0 0 0 N/A
logical standby cache 1 0.0 0 0 N/A
logminer context allocat 1 0.0 0 0 N/A
logminer work area 1 0.0 0 0 N/A
longop free list parent 1 0.0 0 0 N/A
mapped buffers lru chain 1 0.0 0 0 N/A
message pool operations 125 0.0 0 0 N/A
messages 61,369 0.0 0.0 0 0 N/A
mostly latch-free SCN 8,305 1.0 0.0 0 0 N/A
msg queue latch 1 0.0 0 0 N/A
name-service namespace b 1 0.0 0 0 N/A
ncodef allocation latch 109 0.0 0 0 N/A
object queue header heap 51,362 0.0 0 233 0.0
object queue header oper 2,071,118 0.0 0.0 0 0 N/A
object stats modificatio 12 0.0 0 0 N/A
parallel query alloc buf 121 0.0 0 0 N/A
parallel query stats 1 0.0 0 0 N/A
parameter list 52 0.0 0 0 N/A
parameter table manageme 142 0.0 0 0 N/A
peshm 1 0.0 0 0 N/A
pesom_free_list 1 0.0 0 0 N/A
pesom_hash_node 1 0.0 0 0 N/A
post/wait queue 5,074 0.0 0 3,491 0.0
process allocation 137 0.0 0 51 0.0
process group creation 102 0.0 0 0 N/A
process queue 1 0.0 0 0 N/A
process queue reference 1 0.0 0 0 N/A
qmn task queue latch 132 1.5 0.0 0 0 N/A
query server freelists 1 0.0 0 0 N/A
queued dump request 3 0.0 0 0 N/A
queuing load statistics 1 0.0 0 0 N/A
recovery domain hash lis 1 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
redo allocation 49,070 0.2 0.0 0 12,346,115 0.0
redo copy 1 0.0 0 12,346,243 0.0
redo writing 41,063 0.0 0.0 0 0 N/A
resmgr group change latc 304 0.0 0 0 N/A
resmgr:active threads 146 0.0 0 0 N/A
resmgr:actses change gro 53 0.0 0 0 N/A
resmgr:actses change sta 6 0.0 0 0 N/A
resmgr:free threads list 140 1.4 0.0 0 0 N/A
resmgr:plan CPU method 1 0.0 0 0 N/A
resmgr:resource group CP 1 0.0 0 0 N/A
resmgr:schema config 1 0.0 0 0 N/A
resmgr:session queuing 1 0.0 0 0 N/A
rm cas latch 1 0.0 0 0 N/A
row cache objects 904,104 0.0 0 0 N/A
second spare latch 1 0.0 0 0 N/A
sequence cache 6,984,750 0.0 0.0 0 0 N/A
session allocation 78,412 0.0 0 26,137 0.0
session idle bit 89,542 0.0 0 0 N/A
session queue latch 1 0.0 0 0 N/A
session state list latch 136 0.0 0 0 N/A
session switching 365 0.0 0 0 N/A
session timer 362 0.0 0 0 N/A
shared pool 64,693 0.1 0.0 0 0 N/A
shared pool sim alloc 65 0.0 0 0 N/A
shared pool simulator 2,689 0.0 0 0 N/A
sim partition latch 1 0.0 0 0 N/A
simulator hash latch 1,511,994 0.0 0.0 0 0 N/A
simulator lru latch 237,325 0.0 0.0 0 1,230,847 0.0
sort extent pool 146 0.0 0 0 N/A
space background task la 663 0.0 0 600 0.0
state object free list 2 0.0 0 0 N/A
statistics aggregation 560 0.0 0 0 N/A
tablespace key chain 1 0.0 0 0 N/A
temp lob duration state 4 0.0 0 0 N/A
test excl. parent l0 1 0.0 0 0 N/A
test excl. parent2 l0 1 0.0 0 0 N/A
third spare latch 1 0.0 0 0 N/A
threshold alerts latch 30 0.0 0 0 N/A
transaction allocation 4,556 0.0 0 0 N/A
undo global data 905,122 0.0 0 0 N/A
virtual circuit buffers 1 0.0 0 0 N/A
virtual circuit holder 1 0.0 0 0 N/A
virtual circuit queues 1 0.0 0 0 N/A
-------------------------------------------------------------
Latch Sleep Breakdown DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by misses desc
Get Spin
Latch Name Requests Misses Sleeps Gets
-------------------------- --------------- ------------ ----------- -----------
object queue header operat 2,071,118 226 3 223
cache buffers chains 126,018,209 42 4 38
In memory undo latch 65,692 2 2 0
-------------------------------------------------------------
Latch Miss Sources DB/Inst: GLDB/gldb Snaps: 801-802
-> only latches with sleeps are shown
-> ordered by name, sleeps desc
NoWait Waiter
Latch Name Where Misses Sleeps Sleeps
------------------------ -------------------------- ------- ---------- --------
In memory undo latch ktiFlush: child 0 1 0
In memory undo latch kticflush_2 0 1 0
cache buffers chains kcbget: pin buffer 0 3 0
cache buffers chains kcbbxsv 0 1 4
object queue header oper kcbo_unlink_q 0 2 0
object queue header oper kcbo_switch_cq 0 1 0
-------------------------------------------------------------
Mutex Sleep Summary DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Parent Latch Statistics DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Child Latch Statistics DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Logical Reads DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Logical Reads: 31,341,226
-> Captured Segments account for 96.9% of Total
Tablespace Subobject Obj. Logical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 6,921,760 22.09
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 6,858,576 21.88
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 6,810,864 21.73
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 6,798,240 21.69
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 2,725,120 8.70
-------------------------------------------------------------
Segments by Physical Reads DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Physical Reads: 801
-> Captured Segments account for 7.2% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSAUX WRH$_SQL_PLAN TABLE 12 1.50
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 8 1.00
SYS SYSAUX WRH$_SQLTEXT TABLE 6 .75
SYS SYSAUX WRH$_SYSMETRIC_HISTO INDEX 6 .75
SYS SYSAUX SYS_LOB0000006207C00 LOB 5 .62
-------------------------------------------------------------
Segments by Physical Read Requests DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Physical Read Requests: 801
-> Captured Segments account for 7.2% of Total
Tablespace Subobject Obj. Phys Read
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSAUX WRH$_SQL_PLAN TABLE 12 1.50
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 8 1.00
SYS SYSAUX WRH$_SQLTEXT TABLE 6 .75
SYS SYSAUX WRH$_SYSMETRIC_HISTO INDEX 6 .75
SYS SYSAUX SYS_LOB0000006207C00 LOB 5 .62
-------------------------------------------------------------
Segments by UnOptimized Reads DB/Inst: GLDB/gldb Snaps: 801-802
-> Total UnOptimized Read Requests: 801
-> Captured Segments account for 7.2% of Total
Tablespace Subobject Obj. UnOptimized
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSAUX WRH$_SQL_PLAN TABLE 12 1.50
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 8 1.00
SYS SYSAUX WRH$_SQLTEXT TABLE 6 .75
SYS SYSAUX WRH$_SYSMETRIC_HISTO INDEX 6 .75
SYS SYSAUX SYS_LOB0000006207C00 LOB 5 .62
-------------------------------------------------------------
Segments by Optimized Reads DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Direct Physical Reads DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Physical Writes DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Physical Writes: 462,057
-> Captured Segments account for 55.7% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Writes %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 122,889 26.60
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 64,612 13.98
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 58,097 12.57
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 6,071 1.31
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 4,621 1.00
-------------------------------------------------------------
Segments by Physical Write Requests DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Physical Write Requestss: 270,943
-> Captured Segments account for 58.2% of Total
Tablespace Subobject Obj. Phys Write
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 72,437 26.74
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 40,114 14.81
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 39,070 14.42
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,907 1.07
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 2,047 .76
-------------------------------------------------------------
Segments by Direct Physical Writes DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Direct Physical Writes: 682
-> Captured Segments account for 5.0% of Total
Tablespace Subobject Obj. Direct
Owner Name Object Name Name Type Writes %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSAUX SYS_LOB0000006213C00 LOB 25 3.67
SYS SYSAUX SYS_LOB0000006207C00 LOB 9 1.32
-------------------------------------------------------------
Segments by Table Scans DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Table Scans: 4
-> Captured Segments account for 25.0% of Total
Tablespace Subobject Obj. Table
Owner Name Object Name Name Type Scans %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSMAN SYSAUX MGMT_CURRENT_METRICS INDEX 1 25.00
-------------------------------------------------------------
Segments by DB Blocks Changes DB/Inst: GLDB/gldb Snaps: 801-802
-> % of Capture shows % of DB Block Changes for each top segment compared
-> with total DB Block Changes for all segments captured by the Snapshot
Tablespace Subobject Obj. DB Block % of
Owner Name Object Name Name Type Changes Capture
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 2,783,600 22.43
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,470,032 19.90
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,432,192 19.59
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,311,040 18.62
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 2,294,528 18.49
-------------------------------------------------------------
Segments by Row Lock Waits DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Segments by ITL Waits DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Buffer Busy Waits DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Dictionary Cache Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> "Pct Misses" should be very low (< 2% in most cases)
-> "Final Usage" is the number of cache entries being used
Get Pct Scan Pct Mod Final
Cache Requests Miss Reqs Miss Reqs Usage
------------------------- ------------ ------ ------- ----- -------- ----------
dc_awr_control 19 0.0 0 N/A 2 1
dc_files 6 0.0 0 N/A 0 6
dc_global_oids 1,046 0.0 0 N/A 0 100
dc_histogram_data 98 0.0 0 N/A 0 2,337
dc_histogram_defs 17,036 0.0 0 N/A 0 5,333
dc_object_grants 107 0.0 0 N/A 0 156
dc_objects 7,092 0.0 0 N/A 5 2,756
dc_profiles 53 0.0 0 N/A 0 2
dc_rollback_segments 203 0.0 0 N/A 0 22
dc_segments 4,179 0.0 0 N/A 59 1,189
dc_sequences 112,656 0.0 0 N/A 112,656 11
dc_tablespaces 2,153 0.0 0 N/A 0 8
dc_users 6,240 0.0 0 N/A 0 109
global database name 661 0.0 0 N/A 0 1
outstanding_alerts 5 0.0 0 N/A 0 6
sch_lj_oids 2 0.0 0 N/A 0 3
-------------------------------------------------------------
Library Cache Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> "Pct Misses" should be very low
Get Pct Pin Pct Invali-
Namespace Requests Miss Requests Miss Reloads dations
--------------- ------------ ------ -------------- ------ ---------- --------
APP CONTEXT 35 0.0 35 0.0 0 0
BODY 308 0.0 2,013 0.0 0 0
CLUSTER 12 0.0 3 0.0 0 0
DBLINK 33 0.0 0 N/A 0 0
EDITION 42 0.0 77 0.0 0 0
QUEUE 2,296 0.0 2,736 0.0 0 0
SCHEMA 51 0.0 0 N/A 0 0
SQL AREA 3,457 76.2 265,146 1.0 0 0
SUBSCRIPTION 2 0.0 2 0.0 0 0
TABLE/PROCEDURE 2,990 0.0 2,261,657 0.0 0 0
TRIGGER 212 0.0 240 0.0 0 0
-------------------------------------------------------------
Memory Dynamic Components DB/Inst: GLDB/gldb Snaps: 801-802
-> Min/Max sizes since instance startup
-> Oper Types/Modes: INItializing,GROw,SHRink,STAtic/IMMediate,DEFerred
-> ordered by Component
Begin Snap Current Min Max Oper Last Op
Component Size (Mb) Size (Mb) Size (Mb) Size (Mb) Count Typ/Mod
--------------- ----------- ----------- ----------- ----------- ------ -------
ASM Buffer Cach .00 .00 .00 .00 0 STA/
DEFAULT 16K buf .00 .00 .00 .00 0 STA/
DEFAULT 2K buff .00 .00 .00 .00 0 STA/
DEFAULT 32K buf .00 .00 .00 .00 0 STA/
DEFAULT 4K buff .00 .00 .00 .00 0 STA/
DEFAULT 8K buff .00 .00 .00 .00 0 STA/
DEFAULT buffer 2,304.00 2,304.00 2,304.00 2,304.00 0 INI/IMM
KEEP buffer cac .00 .00 .00 .00 0 STA/
PGA Target 1,968.00 1,968.00 1,968.00 1,968.00 0 STA/
RECYCLE buffer .00 .00 .00 .00 0 STA/
SGA Target 2,944.00 2,944.00 2,944.00 2,944.00 0 STA/
Shared IO Pool .00 .00 .00 .00 0 STA/
java pool 16.00 16.00 16.00 16.00 0 STA/
large pool 16.00 16.00 .00 16.00 0 GRO/IMM
shared pool 576.00 576.00 576.00 576.00 0 STA/
streams pool .00 .00 .00 .00 0 STA/
-------------------------------------------------------------
Memory Resize Operations Summary DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Memory Resize Ops DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Process Memory Summary DB/Inst: GLDB/gldb Snaps: 801-802
-> B: Begin Snap E: End Snap
-> All rows below contain absolute values (i.e. not diffed over the interval)
-> Max Alloc is Maximum PGA Allocation size at snapshot time
-> Hist Max Alloc is the Historical Max Allocation for still-connected processes
-> ordered by Begin/End snapshot, Alloc (MB) desc
Hist
Avg Std Dev Max Max
Alloc Used Alloc Alloc Alloc Alloc Num Num
Category (MB) (MB) (MB) (MB) (MB) (MB) Proc Alloc
- -------- --------- --------- -------- -------- ------- ------- ------ ------
B Other 87.6 N/A 2.2 3.0 18 18 40 40
Freeable 25.3 .0 1.4 1.7 7 N/A 18 18
PL/SQL 10.2 7.6 .3 .5 2 3 38 38
SQL 1.0 .1 .0 .1 0 6 26 20
E Other 83.2 N/A 2.1 2.5 15 15 40 40
Freeable 30.9 .0 1.5 2.6 12 N/A 20 20
PL/SQL 10.2 7.5 .3 .5 2 3 38 38
SQL .7 .1 .0 .0 0 6 26 20
-------------------------------------------------------------
SGA Memory Summary DB/Inst: GLDB/gldb Snaps: 801-802
End Size (Bytes)
SGA regions Begin Size (Bytes) (if different)
------------------------------ ------------------- -------------------
Database Buffers 2,415,919,104
Fixed Size 2,184,632
Redo Buffers 8,364,032
Variable Size 2,701,134,408
-------------------
sum 5,127,602,176
-------------------------------------------------------------
SGA breakdown difference DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by Pool, Name
-> N/A value for Begin MB or End MB indicates the size of that Pool/Name was
insignificant, or zero in that snapshot
Pool Name Begin MB End MB % Diff
------ ------------------------------ -------------- -------------- -------
java free memory 16.0 16.0 0.00
large PX msg pool 7.5 7.5 0.00
large free memory 8.5 8.5 0.00
shared ASH buffers 8.0 8.0 0.00
shared CCUR 26.0 29.4 13.11
shared FileOpenBlock 10.5 10.5 0.00
shared KGLH0 8.4 8.4 -0.05
shared KGLHD 11.6 13.0 12.00
shared KGLS 15.1 15.1 0.00
shared PCUR 16.7 20.1 20.24
shared PLDIA 6.0 6.0 0.00
shared PLMCD 11.8 11.8 0.00
shared SQLA 122.4 143.1 16.88
shared db_block_hash_buckets 22.3 22.3 0.00
shared free memory 229.3 199.5 -12.98
shared row cache 7.2 7.2 0.00
buffer_cache 2,304.0 2,304.0 0.00
fixed_sga 2.1 2.1 0.00
log_buffer 8.0 8.0 0.00
-------------------------------------------------------------
Streams CPU/IO Usage DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture Rate DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply Rate DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queues DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queue Subscribers DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Rule Set DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues Rate DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queue Subscribers DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Resource Limit Stats DB/Inst: GLDB/gldb Snap: 802
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> Values represent averages for all samples
Avg Total Avg Active Avg Total Avg Active Avg Total Avg Active
Connections Connections Shared Srvrs Shared Srvrs Dispatchers Dispatchers
------------ ------------ ------------ ------------ ------------ ------------
0 0 1 0 1 0
-------------------------------------------------------------
Shared Servers Rates DB/Inst: GLDB/gldb Snaps: 801-802
Common Disp Common Disp Server
Queue Queue Server Server Queue Queue Total Server
Per Sec Per Sec Msgs/Sec KB/Sec Total Total Msgs Total(KB)
-------- -------- -------- --------- ---------- ---------- ---------- ----------
0 0 0 0.0 0 0 0 0
-------------------------------------------------------------
Shared Servers Utilization DB/Inst: GLDB/gldb Snaps: 801-802
-> Statistics are combined for all servers
-> Incoming and Outgoing Net % are included in %Busy
Total Server Incoming Outgoing
Time (s) %Busy %Idle Net % Net %
-------------- -------- -------- --------- ---------
903 0.0 100.0 0.0 0.0
-------------------------------------------------------------
Shared Servers Common Queue DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Dispatchers DB/Inst: GLDB/gldb Snaps: 801-802
-> Ordered by %Busy, descending
-> Total Queued, Total Queue Wait and Avg Queue Wait are for dispatcher queue
-> Name suffixes:
"(N)" - dispatcher started between begin and end snapshots
"(R)" - dispatcher re-started between begin and end snapshots
Avg Total Disp Total Total Queue Avg Queue
Name Conns Time (s) %Busy %Idle Queued Wait (s) Wait (ms)
------- --------- ---------- -------- -------- ---------- ----------- ----------
D000 0.0 903 0.0 100.0 0 0
-------------------------------------------------------------
init.ora Parameters DB/Inst: GLDB/gldb Snaps: 801-802
-> if IP/Public/Source at End snap is different a '*' is displayed
End value
Parameter Name Begin value (if different)
----------------------------- --------------------------------- --------------
audit_file_dest D:\ORACLE\ADMIN\GLDB\ADUMP
audit_trail DB
compatible 11.2.0.0.0
control_files D:\ORACLE\FLASH_RECOVERY_AREA\GLD
db_block_size 8192
db_domain
db_name gldb
db_recovery_file_dest D:\Oracle\flash_recovery_area
db_recovery_file_dest_size 4102029312
diagnostic_dest D:\ORACLE
dispatchers (PROTOCOL=TCP) (SERVICE=gldbXDB)
memory_target 5150605312
open_cursors 300
processes 150
remote_login_passwordfile EXCLUSIVE
undo_tablespace UNDOTBS1
-------------------------------------------------------------
Dynamic Remastering Stats DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
End of Report
At a quick glance, the database doesn't seem stressed - your log related events are high percentages because there's not a lot else going on (That horrible looking 19% is actually only a 62s of wall clock time in a 900s period). Have the clients raised a specific issue or is this a proactive tuning piece/early concern around scalability?
I suspect your plan to increase redo log size and add more groups will help reduce these values though.
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568850 is a reply to message #568816] |
Wed, 17 October 2012 02:39 |
John Watson
Messages: 8960 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
You are generating about 5M of redo per second, and log switching about every 10 seconds. This is because your online logfiules are sized at the old default of 50M, and is why you are losing time on those top wait events. If you replace your online logs with logfiles that are 500M, those wait events will disappear as your log switch frequency will drop to about 3 an hour.
Do that now! There is no downtime.
The next thing is more information: we need the AWR report for the problem sql. Run the script @?\rdbms\admin\sqlrpt.sql for the same time period, and give it the sql_id '7k1usds2tau95', which is your insert statement.
And lastly, the same reports after you have changed the redolog.
We can fix this.
--
Edit: typing error! Your online logfiles need to be 5000M, not 500M. Sorry about that.
[Updated on: Wed, 17 October 2012 03:09] Report message to a moderator
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568912 is a reply to message #568850] |
Wed, 17 October 2012 09:19 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
I think you meant sqltrpt.sql, not sqlrpt.sql? That is the only similar sql file I had so that is what I ran. It did not present me the option to pick a window of snapshots as did the other script, so this is of my database as it exists now with 3 5000M logfiles.
Toggle Spoiler
SQL*Plus: Release 11.2.0.1.0 Production on Wed Oct 17 10:08:54 2012
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Enter user-name: sys as sysdba
Enter password:
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> @?\rdbms\admin\sqlrpt.sql
SP2-0310: unable to open file "D:\Oracle\product\dbhome_1\rdbms\admin\sqlrpt.sql
"
SQL> @?\rdbms\admin\sqltrpt.sql
15 Most expensive SQL in the cursor cache
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SQL_ID ELAPSED SQL_TEXT_FRAGMENT
------------- ---------- -------------------------------------------------------
59v4zh1ac3v2a 364.56 DECLARE job BINARY_INTEGER := :job; next_date TIMESTAM
b6usrg82hwsa3 324.21 call dbms_stats.gather_database_stats_job_proc ( )
76ajum5p5uxam 151.45 /* SQL Analyze(1) */ select /*+ full(t) no_parallel(t)
1a8pqmaf47ya9 105.53 SELECT /* DS_SVC */ /*+ cursor_sharing_exact dynamic_sa
b6va07fsunp76 65.62 SELECT /* DS_SVC */ /*+ cursor_sharing_exact dynamic_sa
4m7m0t6fjcs5x 35.29 update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,c
bunssq950snhf 34.32 insert into wrh$_sga_target_advice (snap_id, dbid, in
gyu7vn14wssa0 34.19 INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VO
6gvch1xu9ca3g 33.81 DECLARE job BINARY_INTEGER := :job; next_date DATE := :
dayq182sk41ks 33.68 insert into wrh$_memory_target_advice (snap_id, dbid,
bm2pwrpcr8ru6 33.61 select sga_size s, sga_size_factor * 100 f,
SQL_ID ELAPSED SQL_TEXT_FRAGMENT
------------- ---------- -------------------------------------------------------
frsqppvqj3csb 32.81 SELECT /* DS_SVC */ /*+ cursor_sharing_exact dynamic_sa
9k4j6xysduydc 28.91 ALTER DATABASE ADD LOGFILE GROUP 6 ( 'D:\ORACLE\ORADATA
2fvwwc3mdkydn 25.43 ALTER DATABASE CLEAR LOGFILE GROUP 6
73mqpfzhyvtn6 25.08 /* SQL Analyze(1) */ select /*+ full(t) no_parallel(t)
15 Most expensive SQL in the workload repository
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SQL_ID ELAPSED
------------- ----------
SQL_TEXT_FRAGMENT
--------------------------------------------------------------------------------
163cxcsv646z1 1,123.58
INSERT INTO /*+ APPEND */GLT_PROT_TRAFFIC_SUM_VOIP ( tr
b6usrg82hwsa3 802.01
call dbms_stats.gather_database_stats_job_proc ( )
59v4zh1ac3v2a 692.64
DECLARE job BINARY_INTEGER := :job; next_date TIMESTAM
SQL_ID ELAPSED
------------- ----------
SQL_TEXT_FRAGMENT
--------------------------------------------------------------------------------
7k1usds2tau95 674.51
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VO
6gvch1xu9ca3g 251.87
DECLARE job BINARY_INTEGER := :job; next_date DATE := :
937s8hc2h87u7 209.15
INSERT INTO GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, p
SQL_ID ELAPSED
------------- ----------
SQL_TEXT_FRAGMENT
--------------------------------------------------------------------------------
76ajum5p5uxam 191.83
/* SQL Analyze(1) */ select /*+ full(t) no_parallel(t)
6v7n0y2bq89n8 156.06
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME,
8d867u8ckzy2y 121.41
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VO
SQL_ID ELAPSED
------------- ----------
SQL_TEXT_FRAGMENT
--------------------------------------------------------------------------------
2b064ybzkwf1y 115.70
BEGIN EMD_NOTIFICATION.QUEUE_READY(:1, :2, :3); END;
1a8pqmaf47ya9 105.53
SELECT /* DS_SVC */ /*+ cursor_sharing_exact dynamic_sa
c0j6cx9kzjf7g 94.42
SELECT EXTRACTVALUE(VALUE(T), '/select_list_item/pos')
SQL_ID ELAPSED
------------- ----------
SQL_TEXT_FRAGMENT
--------------------------------------------------------------------------------
62yyzw3309d6a 91.84
SELECT VALUE FROM V$SESSION_FIX_CONTROL WHERE BUGNO = :
bunssq950snhf 90.99
insert into wrh$_sga_target_advice (snap_id, dbid, in
bm2pwrpcr8ru6 88.11
select sga_size s, sga_size_factor * 100 f,
Specify the Sql id
~~~~~~~~~~~~~~~~~~
Enter value for sqlid: 7k1usds2tau95
Sql Id specified: 7k1usds2tau95
Tune the sql
~~~~~~~~~~~~
GENERAL INFORMATION SECTION
-------------------------------------------------------------------------------
Tuning Task Name : TASK_1009
Tuning Task Owner : SYS
Workload Type : Single SQL Statement
Scope : COMPREHENSIVE
Time Limit(seconds): 1800
Completion Status : COMPLETED
Started at : 10/17/2012 10:10:51
Completed at : 10/17/2012 10:10:51
-------------------------------------------------------------------------------
Schema Name: SYSTEM
SQL ID : 7k1usds2tau95
SQL Text : INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP (
trafficSumID, probeName, callingNumber, calledNumber, callID,
startTime, duration, callSuccess, failureCause, postDialDelay,
sessionDisconnectDelay, rtporiginationIPAddress,
rtpdestinationIPAddress, siporiginationIPAddress,
sipdestinationIPAddress, ErrorCode, ProtocolTYpe, packetCount1,
payload1, totalPacketCount1, missingPacketCount1,
missingPacketPercentage1, DuplicatePacketCount1,
DuplicatePacketPercentage1, reorderedPacketCount1,
reorderedPacketPercentage1, conversationalMos1,
conversationalR1, listeningMos1, listeningR1, packetsDiscarded1,
packetsDiscardedPercentage1, averageGap1, averageDelay1,
averageJitter1, averageInterArrivalJitter1,
CumulativePacketLoss1, minGap1, maxGap1, minDelay1, maxDelay1,
minJitter1, maxJitter1, minRtd1, maxRtd1, averageRtd1,
packetCount2, payload2, totalPacketCount2, missingPacketCount2,
missingPacketPercentage2, DuplicatePacketCount2,
DuplicatePacketPercentage2, reorderedPacketCount2,
reorderedPacketPercentage2, conversationalMos2,
conversationalR2, listeningMos2, listeningR2, packetsDiscarded2,
packetsDiscardedPercentage2, averageGap2, averageDelay2,
averageJitter2, averageInterArrivalJitter2,
CumulativePacketLoss2, minGap2, maxGap2, minDelay2, maxDelay2,
minJitter2, maxJitter2, minRtd2, maxRtd2, averageRtd2, filename
) VALUES (GLS_PROT_TRAFFIC_SUM_VOIP.NEXTVAL, :1, :2, :3, :4, :5,
:6, :7, :8, :9, :10, :11, :12, :13, :14, :15, :16, :17, :18,
:19, :20, :21, :22, :23, :24, :25, :26, :27, :28, :29, :30, :31,
:32, :33, :34, :35, :36, :37, :38, :39, :40, :41, :42, :43, :44,
:45, :46, :47, :48, :49, :50, :51, :52, :53, :54, :55, :56, :57,
:58, :59, :60, :61, :62, :63, :64, :65, :66, :67, :68, :69, :70,
:71, :72, :73, :74, :75 )
-------------------------------------------------------------------------------
There are no recommendations to improve the statement.
-------------------------------------------------------------------------------
SQL>
If you wish I can undo the changes I made to the log files and run it again.
Also I will shortly follow up with a new AWR report with my new log files. First I will produce a report with roughly the same traffic load as before. Then I will see if I can sustain more load - if I can I will produce a report for that as well.
Quote:Have the clients raised a specific issue or is this a proactive tuning piece/early concern around scalability?
This is proactive tuning for future scalability.
|
|
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568915 is a reply to message #568913] |
Wed, 17 October 2012 10:00 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
It seems from the new AWRRPT, I am now swapping log files every fifteen minutes (since there is only 1 switch, I ran a second awrrpt from 801-803 and there was 2 switches - confirming this)
AWRRPT 801-802 (50M REDO LOG FILES)
Toggle Spoiler
WORKLOAD REPOSITORY report for
DB Name DB Id Instance Inst Num Startup Time Release RAC
------------ ----------- ------------ -------- --------------- ----------- ---
GLDB 2907699466 gldb 1 16-Oct-12 10:08 11.2.0.1.0 NO
Host Name Platform CPUs Cores Sockets Memory(GB)
---------------- -------------------------------- ---- ----- ------- ----------
WIN-VTBNMB5VC5I Microsoft Windows x86 64-bit 4 4 1 11.99
Snap Id Snap Time Sessions Curs/Sess
--------- ------------------- -------- ---------
Begin Snap: 801 16-Oct-12 13:00:02 38 3.5
End Snap: 802 16-Oct-12 13:15:05 38 3.5
Elapsed: 15.05 (mins)
DB Time: 5.41 (mins)
Cache Sizes Begin End
~~~~~~~~~~~ ---------- ----------
Buffer Cache: 2,304M 2,304M Std Block Size: 8K
Shared Pool Size: 576M 576M Log Buffer: 8,168K
Load Profile Per Second Per Transaction Per Exec Per Call
~~~~~~~~~~~~ --------------- --------------- ---------- ----------
DB Time(s): 0.4 0.1 0.00 0.01
DB CPU(s): 0.2 0.1 0.00 0.01
Redo size: 5,405,639.8 1,775,432.3
Logical reads: 34,699.7 11,396.8
Block changes: 27,200.9 8,933.9
Physical reads: 0.9 0.3
Physical writes: 511.6 168.0
User calls: 35.1 11.5
Parses: 131.0 43.0
Hard parses: 1.0 0.3
W/A MB processed: 0.1 0.0
Logons: 0.1 0.0
Executes: 163.5 53.7
Rollbacks: 0.0 0.0
Transactions: 3.0
Instance Efficiency Percentages (Target 100%)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Buffer Nowait %: 100.00 Redo NoWait %: 99.98
Buffer Hit %: 100.00 In-memory Sort %: 100.00
Library Hit %: 99.90 Soft Parse %: 99.26
Execute to Parse %: 19.87 Latch Hit %: 100.00
Parse CPU to Parse Elapsd %: 90.34 % Non-Parse CPU: 98.84
Shared Pool Statistics Begin End
------ ------
Memory Usage %: 60.19 65.36
% SQL with executions>1: 86.85 78.20
% Memory for SQL w/exec>1: 80.32 78.81
Top 5 Timed Foreground Events
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Avg
wait % DB
Event Waits Time(s) (ms) time Wait Class
------------------------------ ------------ ----------- ------ ------ ----------
DB CPU 162 49.8
log file switch (checkpoint in 104 62 596 19.1 Configurat
log file sync 2,686 6 2 1.7 Commit
log file switch completion 109 3 28 .9 Configurat
SQL*Net more data from client 107,321 2 0 .5 Network
Host CPU (CPUs: 4 Cores: 4 Sockets: 1)
~~~~~~~~ Load Average
Begin End %User %System %WIO %Idle
--------- --------- --------- --------- --------- ---------
8.8 1.6 89.5
Instance CPU
~~~~~~~~~~~~
% of total CPU for Instance: 4.7
% of busy CPU for Instance: 44.6
%DB time waiting for CPU - Resource Mgr: 0.0
Memory Statistics
~~~~~~~~~~~~~~~~~ Begin End
Host Mem (MB): 12,275.1 12,275.1
SGA use (MB): 2,944.0 2,944.0
PGA use (MB): 124.1 125.1
% Host Mem used for SGA+PGA: 24.99 25.00
Time Model Statistics DB/Inst: GLDB/gldb Snaps: 801-802
-> Total time in database user-calls (DB Time): 324.3s
-> 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 316.6 97.6
DB CPU 161.6 49.8
sequence load elapsed time 24.3 7.5
parse time elapsed 3.0 .9
hard parse elapsed time 1.3 .4
PL/SQL execution elapsed time 0.6 .2
connection management call elapsed time 0.1 .0
repeated bind elapsed time 0.0 .0
DB time 324.3
background elapsed time 69.4
background cpu time 7.0
-------------------------------------------------------------
Operating System Statistics DB/Inst: GLDB/gldb Snaps: 801-802
-> *TIME statistic values are diffed.
All others display actual values. End Value is displayed if different
-> ordered by statistic type (CPU Use, Virtual Memory, Hardware Config), Name
Statistic Value End Value
------------------------- ---------------------- ----------------
AVG_BUSY_TIME 9,423
AVG_IDLE_TIME 80,860
AVG_SYS_TIME 1,430
AVG_USER_TIME 7,965
BUSY_TIME 37,775
IDLE_TIME 323,519
SYS_TIME 5,823
USER_TIME 31,952
VM_IN_BYTES -9.391060752118678E+18
VM_OUT_BYTES 3,641,582,545,694,720
PHYSICAL_MEMORY_BYTES 12,871,364,608
NUM_CPUS 4
NUM_CPU_CORES 4
NUM_CPU_SOCKETS 1
-------------------------------------------------------------
Operating System Statistics - Detail DB/Inst: GLDB/gldb Snaps: 801-802
Snap Time Load %busy %user %sys %idle %iowait
--------------- -------- -------- -------- -------- -------- --------
16-Oct 13:00:02 0.0 N/A N/A N/A N/A N/A
16-Oct 13:15:05 0.0 10.5 8.8 1.6 89.5 0.0
-------------------------------------------------------------
Foreground Wait Class DB/Inst: GLDB/gldb Snaps: 801-802
-> s - second, ms - millisecond - 1000th of a second
-> ordered by wait time desc, waits desc
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
-> Captured Time accounts for 72.4% of Total DB time 324.31 (s)
-> Total FG Wait Time: 73.22 (s) DB CPU time: 161.57 (s)
Avg
%Time Total Wait wait
Wait Class Waits -outs Time (s) (ms) %DB time
-------------------- ---------------- ----- ---------------- -------- ---------
DB CPU 162 49.8
Configuration 224 0 65 292 20.2
Commit 2,686 0 6 2 1.7
Network 138,528 0 2 0 0.5
System I/O 201 0 1 3 0.2
User I/O 61 0 0 0 0.0
Application 60 0 0 0 0.0
Other 224 97 0 0 0.0
Concurrency 3 0 0 0 0.0
-------------------------------------------------------------
Foreground Wait Events DB/Inst: GLDB/gldb Snaps: 801-802
-> s - second, ms - millisecond - 1000th of a second
-> Only events with Total Wait Time (s) >= .001 are shown
-> ordered by wait time desc, waits desc (idle events last)
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % DB
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
log file switch (checkpoin 104 0 62 596 0.0 19.1
log file sync 2,686 0 6 2 1.0 1.7
log file switch completion 109 0 3 28 0.0 .9
SQL*Net more data from cli 107,321 0 2 0 39.0 .5
control file sequential re 201 0 1 3 0.1 .2
log buffer space 1 0 0 287 0.0 .1
log file switch (private s 10 0 0 8 0.0 .0
SQL*Net message to client 31,207 0 0 0 11.3 .0
db file sequential read 17 0 0 1 0.0 .0
SQL*Net break/reset to cli 60 0 0 0 0.0 .0
Disk file operations I/O 44 0 0 0 0.0 .0
ADR block file read 6 0 0 0 0.0 .0
SQL*Net message from clien 31,207 0 6,648 213 11.3
jobq slave wait 1,964 99 1,007 513 0.7
wait for unread message on 910 98 903 992 0.3
Streams AQ: waiting for me 180 100 901 5007 0.1
-------------------------------------------------------------
Background Wait Events DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by wait time desc, waits desc (idle events last)
-> Only events with Total Wait Time (s) >= .001 are shown
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % bg
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
log file parallel write 8,146 0 31 4 3.0 44.3
db file parallel write 12,399 0 19 1 4.5 26.7
control file sequential re 8,378 0 7 1 3.0 10.8
control file parallel writ 2,060 0 1 1 0.7 1.7
enq: CF - contention 101 0 1 8 0.0 1.2
os thread startup 35 0 0 5 0.0 .3
direct path read 322 0 0 0 0.1 .2
log file sequential read 216 0 0 1 0.1 .2
direct path write 207 0 0 0 0.1 .1
db file sequential read 110 0 0 0 0.0 .1
log file single write 216 0 0 0 0.1 .0
LGWR wait for redo copy 746 0 0 0 0.3 .0
ADR block file read 12 0 0 0 0.0 .0
log file sync 1 0 0 3 0.0 .0
Disk file operations I/O 23 0 0 0 0.0 .0
reliable message 16 0 0 0 0.0 .0
rdbms ipc message 13,211 28 11,670 883 4.8
DIAG idle wait 1,782 100 1,807 1014 0.6
smon timer 4 75 969 242265 0.0
Streams AQ: waiting for ti 7 71 965 137865 0.0
pmon timer 413 67 903 2186 0.2
shared server idle wait 30 100 900 30014 0.0
dispatcher timer 15 100 900 60012 0.0
Space Manager: slave idle 180 99 900 4998 0.1
Streams AQ: qmn slave idle 33 0 897 27168 0.0
Streams AQ: qmn coordinato 64 50 897 14008 0.0
SQL*Net message from clien 64 0 0 1 0.0
-------------------------------------------------------------
Wait Event Histogram DB/Inst: GLDB/gldb Snaps: 801-802
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> % of Waits: value of .0 indicates value was <.05%; value of null is truly 0
-> % of Waits: column heading of <=1s is truly <1024ms, >1s is truly >=1024ms
-> Ordered by Event (idle events last)
% of Waits
-----------------------------------------------
Total
Event Waits <1ms <2ms <4ms <8ms <16ms <32ms <=1s >1s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
ADR block file read 18 100.0
ADR block file write 5 100.0
ADR file lock 6 100.0
Disk file operations I/O 67 100.0
LGWR wait for redo copy 746 100.0
SQL*Net break/reset to cli 60 100.0
SQL*Net message to client 31.3K 100.0
SQL*Net more data from cli 107.4 100.0
asynch descriptor resize 335 100.0
control file parallel writ 2060 99.4 .1 .0 .3 .0 .0
control file sequential re 8579 91.9 3.2 3.7 .5 .1 .1 .6
db file parallel write 12.4K 72.1 10.2 5.8 8.1 2.9 .7 .1
db file sequential read 172 96.5 2.3 1.2
direct path read 322 98.8 .9 .3
direct path write 207 100.0
enq: CF - contention 101 1.0 10.9 30.7 57.4
latch: In memory undo latc 2 100.0
latch: cache buffers chain 4 100.0
latch: object queue header 3 100.0
log buffer space 1 100.0
log file parallel write 8152 35.0 4.4 6.9 51.9 .7 .3 .9
log file sequential read 216 87.0 8.3 4.2 .5
log file single write 216 100.0
log file switch (checkpoin 104 23.1 25.0 19.2 32.7
log file switch (private s 10 40.0 60.0
log file switch completion 109 2.8 1.8 29.4 43.1 2.8 20.2
log file sync 2690 71.0 10.3 13.2 3.9 .5 .2 .9
os thread startup 35 100.0
rdbms ipc reply 16 100.0
reliable message 16 100.0
DIAG idle wait 1782 100.0
SQL*Net message from clien 31.3K 24.9 31.6 3.4 .7 .5 1.8 36.5 .6
Space Manager: slave idle 180 100.0
Streams AQ: qmn coordinato 64 50.0 50.0
Streams AQ: qmn slave idle 33 3.0 97.0
Streams AQ: waiting for me 180 100.0
Streams AQ: waiting for ti 7 28.6 42.9 28.6
class slave wait 7 100.0
dispatcher timer 15 100.0
jobq slave wait 1964 100.0
pmon timer 413 6.3 1.7 .2 1.7 16.0 74.1
rdbms ipc message 13.2K 15.2 .5 7.2 1.3 1.3 2.2 52.3 20.2
shared server idle wait 30 100.0
smon timer 4 100.0
wait for unread message on 911 1.1 .8 .2 97.9
-------------------------------------------------------------
Wait Event Histogram Detail (64 msec to 2 sec)DB/Inst: GLDB/gldb Snaps: 801-
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> Units for % of Total Waits:
ms is milliseconds
s is 1024 milliseconds (approximately 1 second)
-> % of Total Waits: total waits for all wait classes, including Idle
-> % of Total Waits: value of .0 indicates value was <.05%;
value of null is truly 0
-> Ordered by Event (only non-idle events are displayed)
% of Total Waits
-----------------------------------------------
Waits
64ms
Event to 2s <32ms <64ms <1/8s <1/4s <1/2s <1s <2s >=2s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
control file parallel writ 1 100.0 .0
control file sequential re 49 99.4 .5 .0 .0
db file parallel write 8 99.9 .0 .0 .0
log buffer space 1 100.0
log file parallel write 71 99.1 .6 .2 .1
log file switch (checkpoin 53 48.1 1.0 2.9 1.9 2.9 10.6 31.7 1.0
log file switch completion 22 79.8 20.2
log file sync 23 99.1 .5 .2 .0 .1
-------------------------------------------------------------
Wait Event Histogram Detail (4 sec to 2 min)DB/Inst: GLDB/gldb Snaps: 801-80
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> Units for % of Total Waits:
s is 1024 milliseconds (approximately 1 second)
m is 64*1024 milliseconds (approximately 67 seconds or 1.1 minutes)
-> % of Total Waits: total waits for all wait classes, including Idle
-> % of Total Waits: value of .0 indicates value was <.05%;
value of null is truly 0
-> Ordered by Event (only non-idle events are displayed)
% of Total Waits
-----------------------------------------------
Waits
4s
Event to 2m <2s <4s <8s <16s <32s < 1m < 2m >=2m
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
log file switch (checkpoin 1 99.0 1.0
-------------------------------------------------------------
Wait Event Histogram Detail (4 min to 1 hr)DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Service Statistics DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by DB Time
Physical Logical
Service Name DB Time (s) DB CPU (s) Reads (K) Reads (K)
---------------------------- ------------ ------------ ------------ ------------
gldb 322 161 0 31,306
SYS$USERS 3 1 0 25
SYS$BACKGROUND 0 0 1 9
gldbXDB 0 0 0 0
-------------------------------------------------------------
Service Wait Class Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Wait Class info for services in the Service Statistics section.
-> Total Waits and Time Waited displayed for the following wait
classes: User I/O, Concurrency, Administrative, Network
-> Time Waited (Wt Time) in seconds
Service Name
----------------------------------------------------------------
User I/O User I/O Concurcy Concurcy Admin Admin Network Network
Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time
--------- --------- --------- --------- --------- --------- --------- ---------
gldb
12 0 3 0 0 0 137896 2
SYS$USERS
49 0 0 0 0 0 632 0
SYS$BACKGROUND
657 0 38 0 0 0 0 0
-------------------------------------------------------------
SQL ordered by Elapsed Time DB/Inst: GLDB/gldb Snaps: 801-802
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> % Total DB Time is the Elapsed Time of the SQL statement divided
into the Total Database Time multiplied by 100
-> %Total - Elapsed Time as a percentage of Total DB time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 100.7% of Total DB Time (s): 324
-> Captured PL/SQL account for 0.4% of Total DB Time (s): 324
Elapsed Elapsed Time
Time (s) Executions per Exec (s) %Total %CPU %IO SQL Id
---------------- -------------- ------------- ------ ------ ------ -------------
311.9 22,602 0.01 96.2 50.9 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
11.3 112,746 0.00 3.5 60.6 .0 4m7m0t6fjcs5x
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
0.7 2 0.34 .2 .0 .0 g4gp07gt2z920
update sys.scheduler$_job set last_start_date = :1, running_instance = :2, runn
ing_slave = :3, job_status = :4 where obj# = :5
0.5 15 0.03 .1 .0 .7 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
0.4 1 0.39 .1 96.2 .1 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.4 1 0.38 .1 97.6 .0 dayq182sk41ks
insert into wrh$_memory_target_advice (snap_id, dbid, instance_number, memo
ry_size, memory_size_factor, estd_db_time, estd_db_time_factor, version) sel
ect :snap_id, :dbid, :instance_number, memory_size, memory_size_factor,
estd_db_time, estd_db_time_factor, version from v$memory_target_advice
0.4 1 0.38 .1 97.7 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.4 3 0.13 .1 .0 .0 9juw6s4yy5pzp
Module: emagent_SQL_oracle_database
/* OracleOEM */ SELECT SUM(broken), SUM(failed) FROM (SELECT DECODE(STATE, '
BROKEN', 1, 0) broken, DECODE(STATE,'FAILED',1,0) failed
FROM DBA_SCHEDULER_JOBS )
0.2 360 0.00 .1 .0 .0 6v7n0y2bq89n8
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
0.2 30 0.01 .0 9.8 .0 2b064ybzkwf1y
Module: OEM.SystemPool
BEGIN EMD_NOTIFICATION.QUEUE_READY(:1, :2, :3); END;
-------------------------------------------------------------
SQL ordered by CPU Time DB/Inst: GLDB/gldb Snaps: 801-802
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - CPU Time as a percentage of Total DB CPU
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 103.5% of Total CPU Time (s): 162
-> Captured PL/SQL account for 0.2% of Total CPU Time (s): 162
CPU CPU per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
158.8 22,602 0.01 98.3 311.9 50.9 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
6.8 112,746 0.00 4.2 11.3 60.6 .0 4m7m0t6fjcs5x
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
0.4 1 0.37 0.2 0.4 96.2 .1 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.4 1 0.37 0.2 0.4 97.7 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.4 1 0.37 0.2 0.4 97.6 .0 dayq182sk41ks
insert into wrh$_memory_target_advice (snap_id, dbid, instance_number, memo
ry_size, memory_size_factor, estd_db_time, estd_db_time_factor, version) sel
ect :snap_id, :dbid, :instance_number, memory_size, memory_size_factor,
estd_db_time, estd_db_time_factor, version from v$memory_target_advice
0.1 58 0.00 0.0 0.0 881.9 .0 43c5ykm1mcp2a
Module: OMS
begin dbms_application_info.set_module(:1, :2); dbms_application_info.set_client
_info(:3); dbms_session.set_identifier(:4); end;
0.1 19 0.00 0.0 0.1 60.1 .5 3am9cfkvx7gq1
CALL MGMT_ADMIN_DATA.EVALUATE_MGMT_METRICS(:target_guid,:metric_guid,:metric_val
ues)
0.1 1 0.06 0.0 0.1 97.5 .0 a8j39qb13tqkr
Module: emagent_SQL_oracle_database
SELECT :B1 TASK_ID, F.FINDING_ID FINDING_ID,DECODE(RECINFO.TYPE,NULL, 'Uncategor
ized',RECINFO.TYPE) REC_TYPE, RECINFO.RECCOUNT REC_COUNT, F.PERC_ACTIVE_SESS IMP
ACT_PCT, F.MESSAGE MESSAGE, TO_DATE(:B3 ,'MM-DD-YYYY HH24:MI:SS') START_TIME, TO
_DATE(:B2 ,'MM-DD-YYYY HH24:MI:SS') END_TIME, HISTORY.FINDING_COUNT FINDING_COUN
0.0 1 0.05 0.0 0.0 126.5 .0 5dfmd823r8dsp
insert into wrh$_memory_resize_ops (snap_id, dbid, instance_number, compone
nt, oper_type, start_time, end_time, target_size, oper_mode, parameter, initi
al_size, final_size, status) select snap_id, dbid, instance_num, compo
nent, oper_type, start_time, max(end_time), target_size, max(oper_mode),
0.0 1 0.03 0.0 0.0 122.3 2.9 5k5v1ah25fb2c
Module: OEM.SystemPool
BEGIN EMD_LOADER.UPDATE_CURRENT_METRICS(:1, :2, :3, :4, :5, :6); END;
-------------------------------------------------------------
SQL ordered by User I/O Wait Time DB/Inst: GLDB/gldb Snaps: 801-802
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - User I/O Time as a percentage of Total User I/O Wait time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 3.3% of Total User I/O Wait Time (s):
-> Captured PL/SQL account for 1.7% of Total User I/O Wait Time (s):
User I/O UIO per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
0.0 22,602 0.00 2.3 311.9 50.9 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
0.0 15 0.00 1.2 0.5 .0 .7 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
0.0 244 0.00 0.5 0.0 124.4 5.1 8vwv6hx92ymmm
UPDATE MGMT_CURRENT_METRICS SET COLLECTION_TIMESTAMP = :B1 , VALUE = :B6 , STRIN
G_VALUE = :B5 WHERE TARGET_GUID = :B4 AND METRIC_GUID = :B3 AND KEY_VALUE = :B2
AND COLLECTION_TIMESTAMP < :B1
0.0 1 0.00 0.3 0.0 122.3 2.9 5k5v1ah25fb2c
Module: OEM.SystemPool
BEGIN EMD_LOADER.UPDATE_CURRENT_METRICS(:1, :2, :3, :4, :5, :6); END;
0.0 19 0.00 0.2 0.1 60.1 .5 3am9cfkvx7gq1
CALL MGMT_ADMIN_DATA.EVALUATE_MGMT_METRICS(:target_guid,:metric_guid,:metric_val
ues)
0.0 58 0.00 0.1 0.0 .0 3.7 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
0.0 1 0.00 0.1 0.4 96.2 .1 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.0 5 0.00 0.1 0.0 222.3 1.7 5uy533jsc8hyh
Module: Oracle Enterprise Manager.rollup
DELETE MGMT_METRICS_1HOUR WHERE TARGET_GUID = :B3 AND ROLLUP_TIMESTAMP < :B2 AND
ROWNUM <= :B1
0.0 1 0.00 0.1 0.1 21.5 .2 gjm43un5cy843
SELECT SUM(USED), SUM(TOTAL) FROM (SELECT /*+ ORDERED */ SUM(D.BYTES)/(1024*1024
)-MAX(S.BYTES) USED, SUM(D.BYTES)/(1024*1024) TOTAL FROM (SELECT TABLESPACE_NAME
, SUM(BYTES)/(1024*1024) BYTES FROM (SELECT /*+ ORDERED USE_NL(obj tab) */ DISTI
NCT TS.NAME FROM SYS.OBJ$ OBJ, SYS.TAB$ TAB, SYS.TS$ TS WHERE OBJ.OWNER# = USERE
0.0 2 0.00 0.0 0.0 435.0 2.6 d8mayxqw0wnpv
SELECT OWNER FROM DBA_PROCEDURES WHERE OBJECT_NAME = 'MGMT_USER' AND PROCEDURE_N
AME = 'DROP_USER'
-------------------------------------------------------------
SQL ordered by Gets DB/Inst: GLDB/gldb Snaps: 801-802
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - Buffer Gets as a percentage of Total Buffer Gets
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Buffer Gets: 31,341,226
-> Captured SQL account for 101.1% of Total
Buffer Gets Elapsed
Gets Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ------------ ------ ---------- ------ ------ -----------
31,308,611 22,602 1,385.2 99.9 311.9 50.9 .0 7k1usds2tau
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
339,209 112,746 3.0 1.1 11.3 60.6 .0 4m7m0t6fjcs
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
16,477 15 1,098.5 0.1 0.5 .0 .7 6gvch1xu9ca
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
6,121 19 322.2 0.0 0.1 60.1 .5 3am9cfkvx7g
CALL MGMT_ADMIN_DATA.EVALUATE_MGMT_METRICS(:target_guid,:metric_guid,:metric_val
ues)
5,093 1 5,093.0 0.0 0.1 21.5 .2 gjm43un5cy8
SELECT SUM(USED), SUM(TOTAL) FROM (SELECT /*+ ORDERED */ SUM(D.BYTES)/(1024*1024
)-MAX(S.BYTES) USED, SUM(D.BYTES)/(1024*1024) TOTAL FROM (SELECT TABLESPACE_NAME
, SUM(BYTES)/(1024*1024) BYTES FROM (SELECT /*+ ORDERED USE_NL(obj tab) */ DISTI
NCT TS.NAME FROM SYS.OBJ$ OBJ, SYS.TAB$ TAB, SYS.TS$ TS WHERE OBJ.OWNER# = USERE
3,296 869 3.8 0.0 0.1 .0 .0 1umfsnn451y
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
3,003 849 3.5 0.0 0.0 .0 .0 cm5vu20fhtn
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
2,776 704 3.9 0.0 0.1 22.2 .0 df9md17q736
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
2,461 798 3.1 0.0 0.1 .0 .0 0ysq85ju8aj
Module: OdbcDbTrace64.exe
INSERT INTO DbLoaderStatus ( LoaderName, ProbeName, IpAddrPort, Status,OkFrameCo
unt, ErrorFrameCount) VALUES ( :1, :2, :3, :4, :5, :6 )
2,226 244 9.1 0.0 0.0 124.4 5.1 8vwv6hx92ym
UPDATE MGMT_CURRENT_METRICS SET COLLECTION_TIMESTAMP = :B1 , VALUE = :B6 , STRIN
G_VALUE = :B5 WHERE TARGET_GUID = :B4 AND METRIC_GUID = :B3 AND KEY_VALUE = :B2
AND COLLECTION_TIMESTAMP < :B1
-------------------------------------------------------------
SQL ordered by Reads DB/Inst: GLDB/gldb Snaps: 801-802
-> %Total - Physical Reads as a percentage of Total Disk Reads
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Disk Reads: 801
-> Captured SQL account for 1.9% of Total
Physical Reads Elapsed
Reads Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ---------- ------ ---------- ------ ------ -------------
8 22,602 0.0 1.0 311.9 50.9 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
5 15 0.3 0.6 0.5 .0 .7 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
4 244 0.0 0.5 0.0 124.4 5.1 8vwv6hx92ymmm
UPDATE MGMT_CURRENT_METRICS SET COLLECTION_TIMESTAMP = :B1 , VALUE = :B6 , STRIN
G_VALUE = :B5 WHERE TARGET_GUID = :B4 AND METRIC_GUID = :B3 AND KEY_VALUE = :B2
AND COLLECTION_TIMESTAMP < :B1
2 1 2.0 0.2 0.0 122.3 2.9 5k5v1ah25fb2c
Module: OEM.SystemPool
BEGIN EMD_LOADER.UPDATE_CURRENT_METRICS(:1, :2, :3, :4, :5, :6); END;
1 58 0.0 0.1 0.0 .0 3.7 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
1 5 0.2 0.1 0.0 222.3 1.7 5uy533jsc8hyh
Module: Oracle Enterprise Manager.rollup
DELETE MGMT_METRICS_1HOUR WHERE TARGET_GUID = :B3 AND ROLLUP_TIMESTAMP < :B2 AND
ROWNUM <= :B1
1 1 1.0 0.1 0.4 96.2 .1 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0 5 0.0 0.0 0.0 210.0 .0 00prz3j9n4gyj
Module: Oracle Enterprise Manager.rollup
SELECT METRIC_GUID, TRUNC(COLLECTION_TIMESTAMP, 'HH24'), KEY_VALUE, COUNT(TARGET
_GUID), AVG(VALUE), MIN(VALUE), MAX(VALUE), STDDEV(VALUE) FROM MGMT_METRICS_RAW
WHERE TARGET_GUID = :B3 AND COLLECTION_TIMESTAMP >= (:B2 +(1/24)) AND COLLECTION
_TIMESTAMP < (:B1 +(1/24)) AND VALUE IS NOT NULL GROUP BY TARGET_GUID, METRIC_GU
0 474 0.0 0.0 0.0 .0 .0 089dbukv1aanh
Module: EM_PING
SELECT SYS_EXTRACT_UTC(SYSTIMESTAMP) FROM DUAL
0 50 0.0 0.0 0.0 .0 .0 08bqjmf8490s2
Module: OMS
SELECT PARAMETER_VALUE FROM MGMT_PARAMETERS WHERE PARAMETER_NAME = :B1
-------------------------------------------------------------
SQL ordered by Physical Reads (UnOptimized)DB/Inst: GLDB/gldb Snaps: 801-802
-> UnOptimized Read Reqs = Physical Read Reqts - Optimized Read Reqs
-> %Opt - Optimized Reads as percentage of SQL Read Requests
-> %Total - UnOptimized Read Reqs as a percentage of Total UnOptimized Read Reqs
-> Total Physical Read Requests: 801
-> Captured SQL account for 9.5% of Total
-> Total UnOptimized Read Requests: 801
-> Captured SQL account for 9.5% of Total
-> Total Optimized Read Requests: 1
-> Captured SQL account for 0.0% of Total
UnOptimized Physical UnOptimized
Read Reqs Read Reqs Executions Reqs per Exe %Opt %Total SQL Id
----------- ----------- ---------- ------------ ------ ------ -------------
86 86 1 86.0 0.0 10.7 1qhza1uh1xcf9
Module: emagent_SQL_oracle_database
/* OracleOEM */ DECLARE l_log_mode VARCHAR2(32); l_flashback_on VARCHAR2(32
); l_flash_recovery_area VARCHAR2(512); l_flash_recovery_size NUMBER; l_us
able_area NUMBER; l_space_used NUMBER; l_reclaimable_area NUMBER; l_nonrec
laimable_area NUMBER; l_oldest_flashback_time VARCHAR2(512); TYPE data_curs
21 21 3 7.0 0.0 2.6 9juw6s4yy5pzp
Module: emagent_SQL_oracle_database
/* OracleOEM */ SELECT SUM(broken), SUM(failed) FROM (SELECT DECODE(STATE, '
BROKEN', 1, 0) broken, DECODE(STATE,'FAILED',1,0) failed
FROM DBA_SCHEDULER_JOBS )
21 21 3 7.0 0.0 2.6 b987hw04sm2s0
Module: Admin Connection
select count(*) from dba_hist_baseline where dbid = :1
17 17 15 1.1 0.0 2.1 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
14 14 5 2.8 0.0 1.7 934ur8r7tqbjx
Module: emagent_SQL_oracle_database
SELECT DBID FROM V$DATABASE
12 12 19 0.6 0.0 1.5 3am9cfkvx7gq1
CALL MGMT_ADMIN_DATA.EVALUATE_MGMT_METRICS(:target_guid,:metric_guid,:metric_val
ues)
10 10 22 0.5 0.0 1.2 49s332uhbnsma
declare vsn varchar2(20); begin vsn :=
dbms_rcvman.getPackageVersion; :pkg_vsn:pkg_vsn_i := vsn;
if vsn is not null then :pkg_vsnub4 :=
to_number(substr(vsn,1,2) || substr(vsn,4,2) || s
8 8 22,602 0.0 0.0 1.0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
7 7 1 7.0 0.0 0.9 fcsu9qb17sk52
Module: emagent_SQL_oracle_database
/* OracleOEM */ DECLARE instance_number NUMBER; latest_task_id NUMBER;
start_time VARCHAR2(1024); end_time VARCHAR2(1024); db_id NUMBER; TY
PE data_cursor_type IS REF CURSOR; data_cursor data_cursor_type;
CURSOR get_latest_task_id IS SELECT TASK_LIST.TASK_ID FROM
6 6 2 3.0 0.0 0.7 7d92gmwphtza8
Module: emagent_SQL_oracle_database
SELECT OWNER,JOB_NAME,COMMENTS FROM DBA_SCHEDULER_JOBS WHERE JOB_NAME LIKE 'EM_I
DX_STAT_JOB%' AND UPPER(OWNER) = 'DBSNMP'
-------------------------------------------------------------
SQL ordered by Executions DB/Inst: GLDB/gldb Snaps: 801-802
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Executions: 147,696
-> Captured SQL account for 96.0% of Total
Elapsed
Executions Rows Processed Rows per Exec Time (s) %CPU %IO SQL Id
------------ --------------- -------------- ---------- ------ ------ -----------
112,746 112,746 1.0 11.3 60.6 .0 4m7m0t6fjcs
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
22,602 2,254,901 99.8 311.9 50.9 .0 7k1usds2tau
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
869 797 0.9 0.1 .0 .0 1umfsnn451y
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
849 1,256 1.5 0.0 .0 .0 cm5vu20fhtn
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
798 798 1.0 0.1 .0 .0 0ysq85ju8aj
Module: OdbcDbTrace64.exe
INSERT INTO DbLoaderStatus ( LoaderName, ProbeName, IpAddrPort, Status,OkFrameCo
unt, ErrorFrameCount) VALUES ( :1, :2, :3, :4, :5, :6 )
765 765 1.0 0.0 .0 .0 8t43xdhf4d9
Module: OEM.BoundedPool
SELECT CONTEXT_TYPE_ID,CONTEXT_TYPE,TRACE_LEVEL,NULL,NULL FROM EMDW_TRACE_CONFIG
WHERE CONTEXT_TYPE = UPPER(:B1 )
704 704 1.0 0.1 22.2 .0 df9md17q736
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
532 532 1.0 0.0 40.3 .2 bsa0wjtftg3
select file# from file$ where ts#=:1
474 474 1.0 0.0 .0 .0 089dbukv1aa
Module: EM_PING
SELECT SYS_EXTRACT_UTC(SYSTIMESTAMP) FROM DUAL
360 360 1.0 0.2 .0 .0 6v7n0y2bq89
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
-------------------------------------------------------------
SQL ordered by Parse Calls DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Parse Calls: 118,356
-> Captured SQL account for 97.9% of Total
% Total
Parse Calls Executions Parses SQL Id
------------ ------------ --------- -------------
112,746 112,746 95.26 4m7m0t6fjcs5x
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
849 849 0.72 cm5vu20fhtnq1
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
704 704 0.59 df9md17q736da
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
532 532 0.45 bsa0wjtftg3uw
select file# from file$ where ts#=:1
210 210 0.18 3972rvxu3knn3
Module: emagent_AQMetrics
delete from sdo_geor_ddl__table$$
104 104 0.09 au7jux77bsqqm
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE where PROBE_NAME='C
DRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CONN_TYPE=2
103 103 0.09 350f5yrnnmshs
lock table sys.mon_mods$ in exclusive mode nowait
103 103 0.09 g00cj285jmgsw
update sys.mon_mods$ set inserts = inserts + :ins, updates = updates + :upd, del
etes = deletes + :del, flags = (decode(bitand(flags, :flag), :flag, flags, flags
+ :flag)), drop_segments = drop_segments + :dropseg, timestamp = :time where ob
j# = :objn
58 58 0.05 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
58 58 0.05 43c5ykm1mcp2a
Module: OMS
begin dbms_application_info.set_module(:1, :2); dbms_application_info.set_client
_info(:3); dbms_session.set_identifier(:4); end;
-------------------------------------------------------------
SQL ordered by Sharable Memory DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
SQL ordered by Version Count DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
Batched IO (bound) vector count 0 0.0 0.0
Batched IO (full) vector count 0 0.0 0.0
Batched IO block miss count 0 0.0 0.0
Batched IO double miss count 0 0.0 0.0
Batched IO same unit count 0 0.0 0.0
Batched IO single block count 0 0.0 0.0
Batched IO vector block count 0 0.0 0.0
Batched IO vector read count 0 0.0 0.0
Block Cleanout Optim referenced 5,083 5.6 1.9
CCursor + sql area evicted 0 0.0 0.0
CPU used by this session 16,206 17.9 5.9
CPU used when call started 16,151 17.9 5.9
CR blocks created 94 0.1 0.0
DB time 304,545 337.2 110.7
DBWR checkpoint buffers written 461,273 510.7 167.7
DBWR checkpoints 108 0.1 0.0
DBWR revisited being-written buf 4 0.0 0.0
DBWR thread checkpoint buffers w 461,273 510.7 167.7
DBWR transaction table writes 540 0.6 0.2
DBWR undo block writes 202,747 224.5 73.7
HSC Heap Segment Block Changes 2,370,671 2,624.7 862.1
Heap Segment Array Inserts 89 0.1 0.0
Heap Segment Array Updates 136 0.2 0.1
IMU CR rollbacks 92 0.1 0.0
IMU Flushes 1,051 1.2 0.4
IMU Redo allocation size 45,030,332 49,855.8 16,374.7
IMU commits 1,742 1.9 0.6
IMU contention 42 0.1 0.0
IMU ktichg flush 6 0.0 0.0
IMU pool not allocated 262 0.3 0.1
IMU recursive-transaction flush 144 0.2 0.1
IMU undo allocation size 27,068,808 29,969.5 9,843.2
IMU- failed to get a private str 262 0.3 0.1
Number of read IOs issued 0 0.0 0.0
RowCR attempts 15 0.0 0.0
RowCR hits 15 0.0 0.0
SMON posted for undo segment shr 1 0.0 0.0
SQL*Net roundtrips to/from clien 31,207 34.6 11.4
active txn count during cleanout 163,525 181.1 59.5
application wait time 1 0.0 0.0
background checkpoints completed 108 0.1 0.0
background checkpoints started 108 0.1 0.0
background timeouts 3,775 4.2 1.4
branch node splits 147 0.2 0.1
buffer is not pinned count 132,471 146.7 48.2
buffer is pinned count 14,435 16.0 5.3
bytes received via SQL*Net from 937,770,190 1,038,261.4 341,007.3
bytes sent via SQL*Net to client 4,440,938 4,916.8 1,614.9
calls to get snapshot scn: kcmgs 303,759 336.3 110.5
calls to kcmgas 399,698 442.5 145.3
calls to kcmgcs 331,814 367.4 120.7
cell physical IO interconnect by 9,046,428,672 10,015,842.0 3,289,610.4
change write time 3,805 4.2 1.4
cleanout - number of ktugct call 187,189 207.3 68.1
cleanouts and rollbacks - consis 0 0.0 0.0
cleanouts only - consistent read 2 0.0 0.0
cluster key scan block gets 2,240 2.5 0.8
cluster key scans 2,008 2.2 0.7
commit batch performed 0 0.0 0.0
commit batch requested 0 0.0 0.0
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
commit batch/immediate performed 108 0.1 0.0
commit batch/immediate requested 108 0.1 0.0
commit cleanout failures: block 3 0.0 0.0
commit cleanout failures: buffer 590 0.7 0.2
commit cleanout failures: callba 11,985 13.3 4.4
commit cleanouts 794,982 880.2 289.1
commit cleanouts successfully co 782,404 866.3 284.5
commit immediate performed 108 0.1 0.0
commit immediate requested 108 0.1 0.0
commit txn count during cleanout 63,393 70.2 23.1
concurrency wait time 18 0.0 0.0
consistent changes 209 0.2 0.1
consistent gets 414,286 458.7 150.7
consistent gets - examination 349,954 387.5 127.3
consistent gets direct 22 0.0 0.0
consistent gets from cache 414,264 458.7 150.6
consistent gets from cache (fast 59,579 66.0 21.7
cursor authentications 6 0.0 0.0
data blocks consistent reads - u 158 0.2 0.1
db block changes 24,568,172 27,200.9 8,933.9
db block gets 30,926,940 34,241.1 11,246.2
db block gets direct 34 0.0 0.0
db block gets from cache 30,926,906 34,241.0 11,246.2
db block gets from cache (fastpa 9,013,258 9,979.1 3,277.6
deferred (CURRENT) block cleanou 540,590 598.5 196.6
dirty buffers inspected 23 0.0 0.0
enqueue conversions 452 0.5 0.2
enqueue releases 432,534 478.9 157.3
enqueue requests 432,537 478.9 157.3
enqueue timeouts 2 0.0 0.0
enqueue waits 101 0.1 0.0
execute count 147,696 163.5 53.7
failed probes on index block rec 0 0.0 0.0
file io wait time 1,212,362,628 1,342,279.1 440,859.1
free buffer inspected 313,431 347.0 114.0
free buffer requested 368,052 407.5 133.8
heap block compress 1,233 1.4 0.5
hot buffers moved to head of LRU 58,406 64.7 21.2
immediate (CR) block cleanout ap 2 0.0 0.0
immediate (CURRENT) block cleano 116,667 129.2 42.4
index crx upgrade (positioned) 1,438 1.6 0.5
index fast full scans (full) 4 0.0 0.0
index fetch by key 122,891 136.1 44.7
index scans kdiixs1 10,069 11.2 3.7
leaf node 90-10 splits 10,468 11.6 3.8
leaf node splits 40,712 45.1 14.8
lob reads 3 0.0 0.0
lob writes 57 0.1 0.0
lob writes unaligned 57 0.1 0.0
logons cumulative 70 0.1 0.0
max cf enq hold time 0 0.0 0.0
messages received 21,611 23.9 7.9
messages sent 21,611 23.9 7.9
min active SCN optimization appl 3 0.0 0.0
no work - consistent read gets 15,471 17.1 5.6
non-idle wait count 179,576 198.8 65.3
non-idle wait time 13,256 14.7 4.8
opened cursors cumulative 120,326 133.2 43.8
parse count (describe) 0 0.0 0.0
parse count (failures) 0 0.0 0.0
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
parse count (hard) 879 1.0 0.3
parse count (total) 118,356 131.0 43.0
parse time cpu 187 0.2 0.1
parse time elapsed 207 0.2 0.1
physical read IO requests 801 0.9 0.3
physical read bytes 6,561,792 7,265.0 2,386.1
physical read total IO requests 9,602 10.6 3.5
physical read total bytes 147,361,792 163,153.1 53,586.1
physical read total multi block 0 0.0 0.0
physical reads 801 0.9 0.3
physical reads cache 131 0.2 0.1
physical reads cache prefetch 0 0.0 0.0
physical reads direct 670 0.7 0.2
physical reads direct (lob) 0 0.0 0.0
physical reads direct temporary 0 0.0 0.0
physical reads prefetch warmup 0 0.0 0.0
physical write IO requests 270,943 300.0 98.5
physical write bytes 3,785,170,944 4,190,789.0 1,376,425.8
physical write total IO requests 287,285 318.1 104.5
physical write total bytes 8,899,066,880 9,852,688.9 3,236,024.3
physical write total multi block 18,184 20.1 6.6
physical writes 462,057 511.6 168.0
physical writes direct 682 0.8 0.3
physical writes direct (lob) 34 0.0 0.0
physical writes direct temporary 0 0.0 0.0
physical writes from cache 461,375 510.8 167.8
physical writes non checkpoint 360,695 399.4 131.2
pinned cursors current 0 0.0 0.0
prefetch warmup blocks aged out 860 1.0 0.3
process last non-idle time 0 0.0 0.0
recursive calls 1,614,235 1,787.2 587.0
recursive cpu usage 1,318 1.5 0.5
redo blocks checksummed by FG (e 2,835,134 3,139.0 1,031.0
redo blocks written 9,856,022 10,912.2 3,584.0
redo buffer allocation retries 1,820 2.0 0.7
redo entries 12,344,681 13,667.5 4,489.0
redo log space requests 2,408 2.7 0.9
redo log space wait time 6,502 7.2 2.4
redo ordering marks 235,740 261.0 85.7
redo size 4,882,438,688 5,405,639.8 1,775,432.3
redo size for direct writes 1,768 2.0 0.6
redo subscn max counts 390,381 432.2 142.0
redo synch time 436 0.5 0.2
redo synch writes 2,761 3.1 1.0
redo wastage 2,232,172 2,471.4 811.7
redo write time 3,157 3.5 1.2
redo writes 8,146 9.0 3.0
rollback changes - undo records 222 0.3 0.1
rollbacks only - consistent read 94 0.1 0.0
rows fetched via callback 2,057 2.3 0.8
session connect time 0 0.0 0.0
session logical reads 31,341,226 34,699.7 11,396.8
shared hash latch upgrades - no 4,531 5.0 1.7
sorts (memory) 4,444 4.9 1.6
sorts (rows) 12,631 14.0 4.6
sql area evicted 0 0.0 0.0
sql area purged 0 0.0 0.0
summed dirty queue length 25 0.0 0.0
switch current to new buffer 1,302 1.4 0.5
table fetch by rowid 7,719 8.6 2.8
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
table fetch continued row 0 0.0 0.0
table scan blocks gotten 4,932 5.5 1.8
table scan rows gotten 240,721 266.5 87.5
table scans (short tables) 1,324 1.5 0.5
temp space allocated (bytes) 0 0.0 0.0
total cf enq hold time 2,566 2.8 0.9
total number of cf enq holders 934 1.0 0.3
total number of times SMON poste 1 0.0 0.0
transaction rollbacks 108 0.1 0.0
undo change vector size 1,339,003,852 1,482,491.2 486,910.5
user I/O wait time 27 0.0 0.0
user calls 31,737 35.1 11.5
user commits 2,750 3.0 1.0
user rollbacks 0 0.0 0.0
workarea executions - optimal 1,922 2.1 0.7
write clones created in backgrou 4 0.0 0.0
write clones created in foregrou 5,700 6.3 2.1
-------------------------------------------------------------
Instance Activity Stats - Absolute Values DB/Inst: GLDB/gldb Snaps: 801-802
-> Statistics with absolute values (should not be diffed)
Statistic Begin Value End Value
-------------------------------- --------------- ---------------
session uga memory max 750,552,440 817,535,216
session pga memory 510,818,224 550,829,960
session pga memory max 600,194,192 658,073,720
session cursor cache count 13,870 15,066
session uga memory 8.333127925E+11 9.149206806E+11
opened cursors current 134 134
logons current 38 38
-------------------------------------------------------------
Instance Activity Stats - Thread Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> Statistics identified by '(derived)' come from sources other than SYSSTAT
Statistic Total per Hour
-------------------------------- ------------------ ---------
log switches (derived) 108 430.46
-------------------------------------------------------------
IOStat by Function summary DB/Inst: GLDB/gldb Snaps: 801-802
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Function Name Data per sec per sec Data per sec per sec Count Tm(ms)
--------------- ------- ------- ------- ------- ------- ------- ------- -------
LGWR 99M 7.2 .109608 4.7G 15.9 5.36972 7836 0.5
DBWR 0M 0.0 0M 3.5G 299.2 3.99020 0 N/A
Others 36M 2.5 .039857 30M 2.2 .033214 3263 0.8
Direct Reads 5M 0.7 .005535 0M 0.0 0M 0 N/A
Direct Writes 0M 0.0 0M 5M 0.7 .005535 0 N/A
Buffer Cache Re 1M 0.2 .001107 0M 0.0 0M 148 0.2
TOTAL: 141M 10.6 .156109 8.3G 318.1 9.39867 11.2K 0.6
-------------------------------------------------------------
IOStat by Filetype summary DB/Inst: GLDB/gldb Snaps: 801-802
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Small Read and Large Read are average service times, in milliseconds
-> Ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Small Large
Filetype Name Data per sec per sec Data per sec per sec Read Read
--------------- ------- ------- ------- ------- ------- ------- ------- -------
Log File 0M 0.2 0M 4.7G 13.5 5.33208 0.4 N/A
Data File 7M 0.9 .007750 3.5G 300.0 3.99684 0.7 N/A
Control File 134M 9.5 .148359 64M 4.6 .070858 0.7 N/A
Temp File 0M 0.0 0M 1M 0.0 .001107 N/A N/A
TOTAL: 141M 10.7 .156109 8.3G 318.1 9.40089 0.7 N/A
-------------------------------------------------------------
IOStat by Function/Filetype summary DB/Inst: GLDB/gldb Snaps: 801-802
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Ordered by (Data Read + Write) desc for each function
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Data per sec per sec Data per sec per sec Count Tm(ms)
------- ------- ------- ------- ------- ------- ------- -------
LGWR
99M 7.2 .109608 4.7G 15.9 5.36972 6756 0.6
LGWR (Log File)
0M 0.2 0M 4.7G 13.5 5.33208 432 0.2
LGWR (Control File)
99M 7.0 .109608 34M 2.4 .037643 6324 0.6
DBWR
0M 0.0 0M 3.5G 299.2 3.99020 0 N/A
DBWR (Data File)
0M 0.0 0M 3.5G 299.2 3.99020 0 N/A
Others
35M 2.5 .038750 30M 2.2 .033214 2283 0.8
Others (Control File)
35M 2.5 .038750 30M 2.2 .033214 2255 0.8
Others (Data File)
0M 0.0 0M 0M 0.0 0M 28 0.5
Direct Reads
5M 0.7 .005535 0M 0.0 0M 0 N/A
Direct Reads (Data File)
5M 0.7 .005535 0M 0.0 0M 0 N/A
Direct Writes
0M 0.0 0M 5M 0.7 .005535 0 N/A
Direct Writes (Data File)
0M 0.0 0M 5M 0.7 .005535 0 N/A
Buffer Cache Reads
1M 0.2 .001107 0M 0.0 0M 153 0.2
Buffer Cache Reads (Data File)
1M 0.2 .001107 0M 0.0 0M 153 0.2
TOTAL:
140M 10.7 .155002 8.3G 318.1 9.39867 9192 0.6
-------------------------------------------------------------
Tablespace IO Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by IOs (Reads + Writes) desc
Tablespace
------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
GLCOMM
116 0 0.0 1.0 156,740 174 0 0.0
UNDOTBS1
108 0 0.0 1.0 112,347 124 0 0.0
SYSAUX
211 0 0.1 1.0 1,168 1 0 0.0
SYSTEM
109 0 0.0 1.0 462 1 0 0.0
EXAMPLE
108 0 0.0 1.0 108 0 0 0.0
USERS
108 0 0.0 1.0 108 0 0 0.0
TEMP
0 0 0.0 N/A 10 0 0 0.0
-------------------------------------------------------------
File IO Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by Tablespace, File
Tablespace Filename
------------------------ ----------------------------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
EXAMPLE D:\ORACLE\ORADATA\GLDB\EXAMPLE01.DBF
108 0 0.0 1.0 108 0 0 0.0
GLCOMM D:\ORACLE\ORADATA\GLDB\GLCOMM01.DBF
116 0 0.0 1.0 156,740 174 0 0.0
SYSAUX D:\ORACLE\ORADATA\GLDB\SYSAUX01.DBF
211 0 0.1 1.0 1,168 1 0 0.0
SYSTEM D:\ORACLE\ORADATA\GLDB\SYSTEM01.DBF
109 0 0.0 1.0 462 1 0 0.0
TEMP D:\ORACLE\ORADATA\GLDB\TEMP01.DBF
0 0 N/A N/A 10 0 0 N/A
UNDOTBS1 D:\ORACLE\ORADATA\GLDB\UNDOTBS01.DBF
108 0 0.0 1.0 112,347 124 0 0.0
USERS D:\ORACLE\ORADATA\GLDB\USERS01.DBF
108 0 0.0 1.0 108 0 0 0.0
-------------------------------------------------------------
Buffer Pool Statistics DB/Inst: GLDB/gldb Snaps: 801-802
-> Standard block size Pools D: default, K: keep, R: recycle
-> Default Pools for other block sizes: 2k, 4k, 8k, 16k, 32k
Free Writ Buffer
Number of Pool Buffer Physical Physical Buff Comp Busy
P Buffers Hit% Gets Reads Writes Wait Wait Waits
--- ---------- ---- ------------ ------------ ----------- ------ ------ --------
D 283,680 100 31,341,148 124 461,375 0 0 0
-------------------------------------------------------------
Checkpoint Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Physical Writes: 462,057
Other Autotune Thread
MTTR Log Size Log Ckpt Settings Ckpt Ckpt
Writes Writes Writes Writes Writes Writes
----------- ----------- ----------- ----------- ----------- -----------
0 443,812 0 0 0 17,461
-------------------------------------------------------------
Instance Recovery Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> B: Begin Snapshot, E: End Snapshot
Estd
Targt Estd Log Ckpt Log Ckpt Opt RAC
MTTR MTTR Recovery Actual Target Log Sz Timeout Interval Log Avail
(s) (s) Estd IOs RedoBlks RedoBlks RedoBlks RedoBlks RedoBlks Sz(M) Time
- ----- ----- -------- -------- -------- -------- -------- -------- ------ -----
B 0 12 9056 165665 165888 165888 412181 N/A N/A N/A
E 0 11 8785 177427 165888 165888 452802 N/A N/A N/A
-------------------------------------------------------------
MTTR Advisory DB/Inst: GLDB/gldb Snap: 802
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Pool Advisory DB/Inst: GLDB/gldb Snap: 802
-> Only rows with estimated physical reads >0 are displayed
-> ordered by Block Size, Buffers For Estimate
Est
Phys Estimated Est
Size for Size Buffers Read Phys Reads Est Phys %DBtime
P Est (M) Factor (thousands) Factor (thousands) Read Time for Rds
--- -------- ------ ------------ ------ -------------- ------------ -------
D 224 .1 28 1.2 42 1 11.0
D 448 .2 55 1.2 41 1 10.0
D 672 .3 83 1.0 36 1 8.0
D 896 .4 110 1.0 35 1 8.0
D 1,120 .5 138 1.0 35 1 8.0
D 1,344 .6 165 1.0 35 1 8.0
D 1,568 .7 193 1.0 35 1 8.0
D 1,792 .8 221 1.0 34 1 8.0
D 2,016 .9 248 1.0 34 1 8.0
D 2,240 1.0 276 1.0 34 1 8.0
D 2,304 1.0 284 1.0 34 1 8.0
D 2,464 1.1 303 1.0 34 1 8.0
D 2,688 1.2 331 1.0 34 1 8.0
D 2,912 1.3 359 1.0 34 1 8.0
D 3,136 1.4 386 1.0 34 1 8.0
D 3,360 1.5 414 1.0 34 1 8.0
D 3,584 1.6 441 1.0 34 1 8.0
D 3,808 1.7 469 1.0 34 1 8.0
D 4,032 1.8 496 1.0 34 1 8.0
D 4,256 1.8 524 1.0 34 1 8.0
D 4,480 1.9 552 1.0 34 1 8.0
-------------------------------------------------------------
PGA Aggr Summary DB/Inst: GLDB/gldb Snaps: 801-802
-> PGA cache hit % - percentage of W/A (WorkArea) data processed only in-memory
PGA Cache Hit % W/A MB Processed Extra W/A MB Read/Written
--------------- ------------------ --------------------------
100.0 43 0
-------------------------------------------------------------
PGA Aggr Target Stats DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
PGA Aggr Target Histogram DB/Inst: GLDB/gldb Snaps: 801-802
-> Optimal Executions are purely in-memory operations
Low High
Optimal Optimal Total Execs Optimal Execs 1-Pass Execs M-Pass Execs
------- ------- -------------- -------------- ------------ ------------
2K 4K 1,884 1,884 0 0
64K 128K 2 2 0 0
512K 1024K 28 28 0 0
1M 2M 6 6 0 0
4M 8M 2 2 0 0
-------------------------------------------------------------
PGA Memory Advisory DB/Inst: GLDB/gldb Snap: 802
-> When using Auto Memory Mgmt, minimally choose a pga_aggregate_target value
where Estd PGA Overalloc Count is 0
Estd Extra Estd P Estd PGA
PGA Target Size W/A MB W/A MB Read/ Cache Overallo Estd
Est (MB) Factr Processed Written to Disk Hit % Count Time
---------- ------- ---------------- ---------------- ------ -------- -------
246 0.1 618.5 0.0 100.0 0 1.1E+05
492 0.3 618.5 0.0 100.0 0 1.1E+05
984 0.5 618.5 0.0 100.0 0 1.1E+05
1,476 0.8 618.5 0.0 100.0 0 1.1E+05
1,968 1.0 618.5 0.0 100.0 0 1.1E+05
2,362 1.2 618.5 0.0 100.0 0 1.1E+05
2,755 1.4 618.5 0.0 100.0 0 1.1E+05
3,149 1.6 618.5 0.0 100.0 0 1.1E+05
3,542 1.8 618.5 0.0 100.0 0 1.1E+05
3,936 2.0 618.5 0.0 100.0 0 1.1E+05
5,904 3.0 618.5 0.0 100.0 0 1.1E+05
7,872 4.0 618.5 0.0 100.0 0 1.1E+05
11,808 6.0 618.5 0.0 100.0 0 1.1E+05
15,744 8.0 618.5 0.0 100.0 0 1.1E+05
-------------------------------------------------------------
Shared Pool Advisory DB/Inst: GLDB/gldb Snap: 802
-> SP: Shared Pool Est LC: Estimated Library Cache Factr: Factor
-> Note there is often a 1:Many correlation between a single logical object
in the Library Cache, and the physical number of memory objects associated
with it. Therefore comparing the number of Lib Cache objects (e.g. in
v$librarycache), with the number of Lib Cache Memory Objects is invalid.
Est LC Est LC Est LC Est LC
Shared SP Est LC Time Time Load Load Est LC
Pool Size Size Est LC Saved Saved Time Time Mem Obj
Size(M) Factr (M) Mem Obj (s) Factr (s) Factr Hits (K)
-------- ----- -------- ------------ -------- ------ ------- ------ ------------
192 .3 20 1,485 3,123 1.0 51 1.8 1,445
256 .4 84 5,602 3,130 1.0 44 1.6 4,676
320 .6 147 8,194 3,146 1.0 28 1.0 4,679
384 .7 197 10,325 3,146 1.0 28 1.0 4,679
448 .8 209 11,078 3,146 1.0 28 1.0 4,679
512 .9 209 11,078 3,146 1.0 28 1.0 4,679
576 1.0 209 11,078 3,146 1.0 28 1.0 4,679
640 1.1 209 11,078 3,146 1.0 28 1.0 4,679
704 1.2 209 11,078 3,146 1.0 28 1.0 4,679
768 1.3 209 11,078 3,146 1.0 28 1.0 4,679
832 1.4 209 11,078 3,146 1.0 28 1.0 4,679
896 1.6 209 11,078 3,146 1.0 28 1.0 4,679
960 1.7 209 11,078 3,146 1.0 28 1.0 4,679
1,024 1.8 209 11,078 3,146 1.0 28 1.0 4,679
1,088 1.9 209 11,078 3,146 1.0 28 1.0 4,679
1,152 2.0 209 11,078 3,146 1.0 28 1.0 4,679
-------------------------------------------------------------
SGA Target Advisory DB/Inst: GLDB/gldb Snap: 802
SGA Target SGA Size Est DB Est Physical
Size (M) Factor Time (s) Reads
---------- ---------- ------------ ----------------
736 0.3 678 42,310
1,472 0.5 675 34,640
2,208 0.8 675 34,431
2,944 1.0 675 34,209
3,680 1.3 675 34,206
4,416 1.5 675 34,192
5,152 1.8 675 34,192
5,888 2.0 675 34,192
-------------------------------------------------------------
Streams Pool Advisory DB/Inst: GLDB/gldb Snap: 802
No data exists for this section of the report.
-------------------------------------------------------------
Java Pool Advisory DB/Inst: GLDB/gldb Snap: 802
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Wait Statistics DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Enqueue Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> only enqueues with waits are shown
-> Enqueue stats gathered prior to 10g should not be compared with 10g data
-> ordered by Wait Time desc, Waits desc
Enqueue Type (Request Reason)
------------------------------------------------------------------------------
Requests Succ Gets Failed Gets Waits Wt Time (s) Av Wt Time(ms)
------------ ------------ ----------- ----------- ------------ --------------
CF-Controlfile Transaction
2,386 2,384 2 101 1 8.42
-------------------------------------------------------------
Undo Segment Summary DB/Inst: GLDB/gldb Snaps: 801-802
-> Min/Max TR (mins) - Min and Max Tuned Retention (minutes)
-> STO - Snapshot Too Old count, OOS - Out of Space count
-> Undo segment block stats:
-> uS - unexpired Stolen, your - unexpired Released, uU - unexpired reUsed
-> eS - expired Stolen, eR - expired Released, eU - expired reUsed
Undo Num Undo Number of Max Qry Max Tx Min/Max STO/ uS/uR/uU/
TS# Blocks (K) Transactions Len (s) Concurcy TR (mins) OOS eS/eR/eU
---- ---------- --------------- -------- -------- --------- ----- --------------
2 152.2 117,061 710 4 26.9/26.9 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Undo Segment Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> Most recent 35 Undostat rows, ordered by Time desc
Num Undo Number of Max Qry Max Tx Tun Ret STO/ uS/uR/uU/
End Time Blocks Transactions Len (s) Concy (mins) OOS eS/eR/eU
------------ ----------- ------------ ------- ------- ------- ----- ------------
16-Oct 13:08 152,210 117,061 710 4 27 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Latch Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
AQ deq hash table latch 1 0.0 0 0 N/A
AQ dequeue txn counter l 780 0.0 0 0 N/A
ASM db client latch 738 0.0 0 0 N/A
ASM map operation hash t 1 0.0 0 0 N/A
ASM network state latch 109 0.0 0 0 N/A
AWR Alerted Metric Eleme 6,441 0.0 0 0 N/A
Change Notification Hash 300 0.0 0 0 N/A
Consistent RBA 8,258 0.0 0.0 0 0 N/A
DML lock allocation 250,983 0.0 0 0 N/A
Event Group Locks 52 0.0 0 0 N/A
FOB s.o list latch 134 0.0 0 0 N/A
File State Object Pool P 1 0.0 0 0 N/A
IPC stats buffer allocat 1 0.0 0 0 N/A
In memory undo latch 65,692 0.0 1.0 0 3,439 0.0
JS Sh mem access 3 0.0 0 0 N/A
JS broadcast autostart l 17 0.0 0 0 N/A
JS mem alloc latch 2 0.0 0 0 N/A
JS queue access latch 3 0.0 0 0 N/A
JS queue state obj latch 6,658 0.0 0 0 N/A
JS slv state obj latch 177 0.0 0 0 N/A
KFC FX Hash Latch 1 0.0 0 0 N/A
KFC Hash Latch 1 0.0 0 0 N/A
KFCL LE Freelist 1 0.0 0 0 N/A
KGNFS-NFS:SHM structure 1 0.0 0 0 N/A
KGNFS-NFS:SVR LIST 1 0.0 0 0 N/A
KJC message pool free li 1 0.0 0 0 N/A
KJCT flow control latch 1 0.0 0 0 N/A
KMG MMAN ready and start 300 0.0 0 0 N/A
KTF sga latch 5 0.0 0 302 0.0
KWQMN job cache list lat 11 0.0 0 0 N/A
KWQS pqueue ctx latch 21 0.0 0 0 N/A
Locator state objects po 1 0.0 0 0 N/A
Lsod array latch 1 0.0 0 0 N/A
MQL Tracking Latch 0 N/A 0 18 0.0
Memory Management Latch 1 0.0 0 300 0.0
Memory Queue 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Subscriber 1 0.0 0 0 N/A
MinActiveScn Latch 5 0.0 0 0 N/A
Mutex 1 0.0 0 0 N/A
Mutex Stats 1 0.0 0 0 N/A
OS process 364 0.0 0 0 N/A
OS process allocation 542 0.0 0 0 N/A
OS process: request allo 102 0.0 0 0 N/A
PL/SQL warning settings 572 0.0 0 0 N/A
PX hash array latch 1 0.0 0 0 N/A
QMT 1 0.0 0 0 N/A
Real-time plan statistic 15 0.0 0 0 N/A
SGA IO buffer pool latch 6,873 0.0 0 12,516 0.0
SGA blob parent 1 0.0 0 0 N/A
SGA bucket locks 1 0.0 0 0 N/A
SGA heap locks 1 0.0 0 0 N/A
SGA pool locks 1 0.0 0 0 N/A
SQL memory manager latch 31 0.0 0 300 0.0
SQL memory manager worka 21,052 0.0 0 0 N/A
Shared B-Tree 114 0.0 0 0 N/A
Streams Generic 1 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
Testing 1 0.0 0 0 N/A
Token Manager 1 0.0 0 0 N/A
WCR: sync 1 0.0 0 0 N/A
Write State Object Pool 1 0.0 0 0 N/A
X$KSFQP 1 0.0 0 0 N/A
XDB NFS Security Latch 1 0.0 0 0 N/A
XDB unused session pool 1 0.0 0 0 N/A
XDB used session pool 1 0.0 0 0 N/A
active checkpoint queue 13,997 0.0 0 0 N/A
active service list 2,191 0.1 0.0 0 1,017 0.0
begin backup scn array 34 0.0 0 0 N/A
buffer pool 1 0.0 0 0 N/A
business card 1 0.0 0 0 N/A
cache buffer handles 53 0.0 0 0 N/A
cache buffers chains 126,018,209 0.0 0.1 0 367,909 0.0
cache buffers lru chain 469,759 0.0 0.0 0 822,397 0.0
call allocation 493 0.4 0.0 0 0 N/A
cas latch 1 0.0 0 0 N/A
change notification clie 1 0.0 0 0 N/A
channel handle pool latc 107 0.0 0 0 N/A
channel operations paren 6,950 0.0 0 0 N/A
checkpoint queue latch 726,366 0.0 0.0 0 460,726 0.0
client/application info 1,409 0.0 0 0 N/A
compile environment latc 70 0.0 0 0 N/A
corrupted undo seg latch 774 0.0 0 0 N/A
cp cmon/server latch 1 0.0 0 0 N/A
cp pool latch 1 0.0 0 0 N/A
cp server hash latch 1 0.0 0 0 N/A
cp sga latch 109 0.0 0 0 N/A
cvmap freelist lock 1 0.0 0 0 N/A
deferred cleanup latch 109 0.0 0 0 N/A
dml lock allocation 109 0.0 0 0 N/A
done queue latch 1 0.0 0 0 N/A
dummy allocation 141 0.0 0 0 N/A
enqueue hash chains 865,961 0.0 0.0 0 0 N/A
enqueues 89,143 0.0 0 0 N/A
fifth spare latch 1 0.0 0 0 N/A
file cache latch 578 0.0 0 0 N/A
flashback copy 1 0.0 0 0 N/A
gc element 1 0.0 0 0 N/A
gcs commit scn state 1 0.0 0 0 N/A
gcs partitioned table ha 1 0.0 0 0 N/A
gcs pcm hashed value buc 1 0.0 0 0 N/A
gcs resource freelist 1 0.0 0 0 N/A
gcs resource hash 1 0.0 0 0 N/A
gcs resource scan list 1 0.0 0 0 N/A
gcs shadows freelist 1 0.0 0 0 N/A
ges domain table 1 0.0 0 0 N/A
ges enqueue table freeli 1 0.0 0 0 N/A
ges group table 1 0.0 0 0 N/A
ges process hash list 1 0.0 0 0 N/A
ges process parent latch 1 0.0 0 0 N/A
ges resource hash list 1 0.0 0 0 N/A
ges resource scan list 1 0.0 0 0 N/A
ges resource table freel 1 0.0 0 0 N/A
ges value block free lis 1 0.0 0 0 N/A
global KZLD latch for me 16 0.0 0 0 N/A
global tx hash mapping 1 0.0 0 0 N/A
granule operation 1 0.0 0 0 N/A
hash table column usage 105 0.0 0 7,508 0.0
Latch Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
hash table modification 10 0.0 0 0 N/A
heartbeat check 1 0.0 0 0 N/A
intra txn parallel recov 1 0.0 0 0 N/A
io pool granule metadata 1 0.0 0 0 N/A
job workq parent latch 20 0.0 0 19 0.0
job_queue_processes free 42 0.0 0 0 N/A
job_queue_processes para 216 0.0 0 0 N/A
k2q lock allocation 1 0.0 0 0 N/A
kcbtsemkid latch 108 0.0 0 0 N/A
kdlx hb parent latch 1 0.0 0 0 N/A
kgb parent 1 0.0 0 0 N/A
kks stats 1,758 0.0 0 0 N/A
kokc descriptor allocati 286 0.0 0 0 N/A
ksfv messages 1 0.0 0 0 N/A
kss move lock 15 0.0 0 0 N/A
ksuosstats global area 63 0.0 0 0 N/A
ksv allocation latch 137 0.0 0 0 N/A
ksv class latch 29 0.0 0 0 N/A
ksv msg queue latch 1 0.0 0 0 N/A
ksz_so allocation latch 102 0.0 0 0 N/A
ktm global data 7 0.0 0 0 N/A
kwqbsn:qsga 44 0.0 0 0 N/A
lgwr LWN SCN 8,225 0.3 0.0 0 0 N/A
list of block allocation 56,536 0.0 0 0 N/A
loader state object free 1,424 0.0 0 0 N/A
lob segment dispenser la 1 0.0 0 0 N/A
lob segment hash table l 3 0.0 0 0 N/A
lob segment query latch 1 0.0 0 0 N/A
lock DBA buffer during m 1 0.0 0 0 N/A
logical standby cache 1 0.0 0 0 N/A
logminer context allocat 1 0.0 0 0 N/A
logminer work area 1 0.0 0 0 N/A
longop free list parent 1 0.0 0 0 N/A
mapped buffers lru chain 1 0.0 0 0 N/A
message pool operations 125 0.0 0 0 N/A
messages 61,369 0.0 0.0 0 0 N/A
mostly latch-free SCN 8,305 1.0 0.0 0 0 N/A
msg queue latch 1 0.0 0 0 N/A
name-service namespace b 1 0.0 0 0 N/A
ncodef allocation latch 109 0.0 0 0 N/A
object queue header heap 51,362 0.0 0 233 0.0
object queue header oper 2,071,118 0.0 0.0 0 0 N/A
object stats modificatio 12 0.0 0 0 N/A
parallel query alloc buf 121 0.0 0 0 N/A
parallel query stats 1 0.0 0 0 N/A
parameter list 52 0.0 0 0 N/A
parameter table manageme 142 0.0 0 0 N/A
peshm 1 0.0 0 0 N/A
pesom_free_list 1 0.0 0 0 N/A
pesom_hash_node 1 0.0 0 0 N/A
post/wait queue 5,074 0.0 0 3,491 0.0
process allocation 137 0.0 0 51 0.0
process group creation 102 0.0 0 0 N/A
process queue 1 0.0 0 0 N/A
process queue reference 1 0.0 0 0 N/A
qmn task queue latch 132 1.5 0.0 0 0 N/A
query server freelists 1 0.0 0 0 N/A
queued dump request 3 0.0 0 0 N/A
queuing load statistics 1 0.0 0 0 N/A
recovery domain hash lis 1 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
redo allocation 49,070 0.2 0.0 0 12,346,115 0.0
redo copy 1 0.0 0 12,346,243 0.0
redo writing 41,063 0.0 0.0 0 0 N/A
resmgr group change latc 304 0.0 0 0 N/A
resmgr:active threads 146 0.0 0 0 N/A
resmgr:actses change gro 53 0.0 0 0 N/A
resmgr:actses change sta 6 0.0 0 0 N/A
resmgr:free threads list 140 1.4 0.0 0 0 N/A
resmgr:plan CPU method 1 0.0 0 0 N/A
resmgr:resource group CP 1 0.0 0 0 N/A
resmgr:schema config 1 0.0 0 0 N/A
resmgr:session queuing 1 0.0 0 0 N/A
rm cas latch 1 0.0 0 0 N/A
row cache objects 904,104 0.0 0 0 N/A
second spare latch 1 0.0 0 0 N/A
sequence cache 6,984,750 0.0 0.0 0 0 N/A
session allocation 78,412 0.0 0 26,137 0.0
session idle bit 89,542 0.0 0 0 N/A
session queue latch 1 0.0 0 0 N/A
session state list latch 136 0.0 0 0 N/A
session switching 365 0.0 0 0 N/A
session timer 362 0.0 0 0 N/A
shared pool 64,693 0.1 0.0 0 0 N/A
shared pool sim alloc 65 0.0 0 0 N/A
shared pool simulator 2,689 0.0 0 0 N/A
sim partition latch 1 0.0 0 0 N/A
simulator hash latch 1,511,994 0.0 0.0 0 0 N/A
simulator lru latch 237,325 0.0 0.0 0 1,230,847 0.0
sort extent pool 146 0.0 0 0 N/A
space background task la 663 0.0 0 600 0.0
state object free list 2 0.0 0 0 N/A
statistics aggregation 560 0.0 0 0 N/A
tablespace key chain 1 0.0 0 0 N/A
temp lob duration state 4 0.0 0 0 N/A
test excl. parent l0 1 0.0 0 0 N/A
test excl. parent2 l0 1 0.0 0 0 N/A
third spare latch 1 0.0 0 0 N/A
threshold alerts latch 30 0.0 0 0 N/A
transaction allocation 4,556 0.0 0 0 N/A
undo global data 905,122 0.0 0 0 N/A
virtual circuit buffers 1 0.0 0 0 N/A
virtual circuit holder 1 0.0 0 0 N/A
virtual circuit queues 1 0.0 0 0 N/A
-------------------------------------------------------------
Latch Sleep Breakdown DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by misses desc
Get Spin
Latch Name Requests Misses Sleeps Gets
-------------------------- --------------- ------------ ----------- -----------
object queue header operat 2,071,118 226 3 223
cache buffers chains 126,018,209 42 4 38
In memory undo latch 65,692 2 2 0
-------------------------------------------------------------
Latch Miss Sources DB/Inst: GLDB/gldb Snaps: 801-802
-> only latches with sleeps are shown
-> ordered by name, sleeps desc
NoWait Waiter
Latch Name Where Misses Sleeps Sleeps
------------------------ -------------------------- ------- ---------- --------
In memory undo latch ktiFlush: child 0 1 0
In memory undo latch kticflush_2 0 1 0
cache buffers chains kcbget: pin buffer 0 3 0
cache buffers chains kcbbxsv 0 1 4
object queue header oper kcbo_unlink_q 0 2 0
object queue header oper kcbo_switch_cq 0 1 0
-------------------------------------------------------------
Mutex Sleep Summary DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Parent Latch Statistics DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Child Latch Statistics DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Logical Reads DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Logical Reads: 31,341,226
-> Captured Segments account for 96.9% of Total
Tablespace Subobject Obj. Logical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 6,921,760 22.09
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 6,858,576 21.88
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 6,810,864 21.73
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 6,798,240 21.69
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 2,725,120 8.70
-------------------------------------------------------------
Segments by Physical Reads DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Physical Reads: 801
-> Captured Segments account for 7.2% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSAUX WRH$_SQL_PLAN TABLE 12 1.50
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 8 1.00
SYS SYSAUX WRH$_SQLTEXT TABLE 6 .75
SYS SYSAUX WRH$_SYSMETRIC_HISTO INDEX 6 .75
SYS SYSAUX SYS_LOB0000006207C00 LOB 5 .62
-------------------------------------------------------------
Segments by Physical Read Requests DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Physical Read Requests: 801
-> Captured Segments account for 7.2% of Total
Tablespace Subobject Obj. Phys Read
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSAUX WRH$_SQL_PLAN TABLE 12 1.50
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 8 1.00
SYS SYSAUX WRH$_SQLTEXT TABLE 6 .75
SYS SYSAUX WRH$_SYSMETRIC_HISTO INDEX 6 .75
SYS SYSAUX SYS_LOB0000006207C00 LOB 5 .62
-------------------------------------------------------------
Segments by UnOptimized Reads DB/Inst: GLDB/gldb Snaps: 801-802
-> Total UnOptimized Read Requests: 801
-> Captured Segments account for 7.2% of Total
Tablespace Subobject Obj. UnOptimized
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSAUX WRH$_SQL_PLAN TABLE 12 1.50
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 8 1.00
SYS SYSAUX WRH$_SQLTEXT TABLE 6 .75
SYS SYSAUX WRH$_SYSMETRIC_HISTO INDEX 6 .75
SYS SYSAUX SYS_LOB0000006207C00 LOB 5 .62
-------------------------------------------------------------
Segments by Optimized Reads DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Direct Physical Reads DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Physical Writes DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Physical Writes: 462,057
-> Captured Segments account for 55.7% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Writes %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 122,889 26.60
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 64,612 13.98
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 58,097 12.57
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 6,071 1.31
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 4,621 1.00
-------------------------------------------------------------
Segments by Physical Write Requests DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Physical Write Requestss: 270,943
-> Captured Segments account for 58.2% of Total
Tablespace Subobject Obj. Phys Write
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 72,437 26.74
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 40,114 14.81
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 39,070 14.42
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,907 1.07
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 2,047 .76
-------------------------------------------------------------
Segments by Direct Physical Writes DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Direct Physical Writes: 682
-> Captured Segments account for 5.0% of Total
Tablespace Subobject Obj. Direct
Owner Name Object Name Name Type Writes %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSAUX SYS_LOB0000006213C00 LOB 25 3.67
SYS SYSAUX SYS_LOB0000006207C00 LOB 9 1.32
-------------------------------------------------------------
Segments by Table Scans DB/Inst: GLDB/gldb Snaps: 801-802
-> Total Table Scans: 4
-> Captured Segments account for 25.0% of Total
Tablespace Subobject Obj. Table
Owner Name Object Name Name Type Scans %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSMAN SYSAUX MGMT_CURRENT_METRICS INDEX 1 25.00
-------------------------------------------------------------
Segments by DB Blocks Changes DB/Inst: GLDB/gldb Snaps: 801-802
-> % of Capture shows % of DB Block Changes for each top segment compared
-> with total DB Block Changes for all segments captured by the Snapshot
Tablespace Subobject Obj. DB Block % of
Owner Name Object Name Name Type Changes Capture
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 2,783,600 22.43
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,470,032 19.90
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,432,192 19.59
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,311,040 18.62
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 2,294,528 18.49
-------------------------------------------------------------
Segments by Row Lock Waits DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Segments by ITL Waits DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Buffer Busy Waits DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Dictionary Cache Stats DB/Inst: GLDB/gldb Snaps: 801-802
-> "Pct Misses" should be very low (< 2% in most cases)
-> "Final Usage" is the number of cache entries being used
Get Pct Scan Pct Mod Final
Cache Requests Miss Reqs Miss Reqs Usage
------------------------- ------------ ------ ------- ----- -------- ----------
dc_awr_control 19 0.0 0 N/A 2 1
dc_files 6 0.0 0 N/A 0 6
dc_global_oids 1,046 0.0 0 N/A 0 100
dc_histogram_data 98 0.0 0 N/A 0 2,337
dc_histogram_defs 17,036 0.0 0 N/A 0 5,333
dc_object_grants 107 0.0 0 N/A 0 156
dc_objects 7,092 0.0 0 N/A 5 2,756
dc_profiles 53 0.0 0 N/A 0 2
dc_rollback_segments 203 0.0 0 N/A 0 22
dc_segments 4,179 0.0 0 N/A 59 1,189
dc_sequences 112,656 0.0 0 N/A 112,656 11
dc_tablespaces 2,153 0.0 0 N/A 0 8
dc_users 6,240 0.0 0 N/A 0 109
global database name 661 0.0 0 N/A 0 1
outstanding_alerts 5 0.0 0 N/A 0 6
sch_lj_oids 2 0.0 0 N/A 0 3
-------------------------------------------------------------
Library Cache Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> "Pct Misses" should be very low
Get Pct Pin Pct Invali-
Namespace Requests Miss Requests Miss Reloads dations
--------------- ------------ ------ -------------- ------ ---------- --------
APP CONTEXT 35 0.0 35 0.0 0 0
BODY 308 0.0 2,013 0.0 0 0
CLUSTER 12 0.0 3 0.0 0 0
DBLINK 33 0.0 0 N/A 0 0
EDITION 42 0.0 77 0.0 0 0
QUEUE 2,296 0.0 2,736 0.0 0 0
SCHEMA 51 0.0 0 N/A 0 0
SQL AREA 3,457 76.2 265,146 1.0 0 0
SUBSCRIPTION 2 0.0 2 0.0 0 0
TABLE/PROCEDURE 2,990 0.0 2,261,657 0.0 0 0
TRIGGER 212 0.0 240 0.0 0 0
-------------------------------------------------------------
Memory Dynamic Components DB/Inst: GLDB/gldb Snaps: 801-802
-> Min/Max sizes since instance startup
-> Oper Types/Modes: INItializing,GROw,SHRink,STAtic/IMMediate,DEFerred
-> ordered by Component
Begin Snap Current Min Max Oper Last Op
Component Size (Mb) Size (Mb) Size (Mb) Size (Mb) Count Typ/Mod
--------------- ----------- ----------- ----------- ----------- ------ -------
ASM Buffer Cach .00 .00 .00 .00 0 STA/
DEFAULT 16K buf .00 .00 .00 .00 0 STA/
DEFAULT 2K buff .00 .00 .00 .00 0 STA/
DEFAULT 32K buf .00 .00 .00 .00 0 STA/
DEFAULT 4K buff .00 .00 .00 .00 0 STA/
DEFAULT 8K buff .00 .00 .00 .00 0 STA/
DEFAULT buffer 2,304.00 2,304.00 2,304.00 2,304.00 0 INI/IMM
KEEP buffer cac .00 .00 .00 .00 0 STA/
PGA Target 1,968.00 1,968.00 1,968.00 1,968.00 0 STA/
RECYCLE buffer .00 .00 .00 .00 0 STA/
SGA Target 2,944.00 2,944.00 2,944.00 2,944.00 0 STA/
Shared IO Pool .00 .00 .00 .00 0 STA/
java pool 16.00 16.00 16.00 16.00 0 STA/
large pool 16.00 16.00 .00 16.00 0 GRO/IMM
shared pool 576.00 576.00 576.00 576.00 0 STA/
streams pool .00 .00 .00 .00 0 STA/
-------------------------------------------------------------
Memory Resize Operations Summary DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Memory Resize Ops DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Process Memory Summary DB/Inst: GLDB/gldb Snaps: 801-802
-> B: Begin Snap E: End Snap
-> All rows below contain absolute values (i.e. not diffed over the interval)
-> Max Alloc is Maximum PGA Allocation size at snapshot time
-> Hist Max Alloc is the Historical Max Allocation for still-connected processes
-> ordered by Begin/End snapshot, Alloc (MB) desc
Hist
Avg Std Dev Max Max
Alloc Used Alloc Alloc Alloc Alloc Num Num
Category (MB) (MB) (MB) (MB) (MB) (MB) Proc Alloc
- -------- --------- --------- -------- -------- ------- ------- ------ ------
B Other 87.6 N/A 2.2 3.0 18 18 40 40
Freeable 25.3 .0 1.4 1.7 7 N/A 18 18
PL/SQL 10.2 7.6 .3 .5 2 3 38 38
SQL 1.0 .1 .0 .1 0 6 26 20
E Other 83.2 N/A 2.1 2.5 15 15 40 40
Freeable 30.9 .0 1.5 2.6 12 N/A 20 20
PL/SQL 10.2 7.5 .3 .5 2 3 38 38
SQL .7 .1 .0 .0 0 6 26 20
-------------------------------------------------------------
SGA Memory Summary DB/Inst: GLDB/gldb Snaps: 801-802
End Size (Bytes)
SGA regions Begin Size (Bytes) (if different)
------------------------------ ------------------- -------------------
Database Buffers 2,415,919,104
Fixed Size 2,184,632
Redo Buffers 8,364,032
Variable Size 2,701,134,408
-------------------
sum 5,127,602,176
-------------------------------------------------------------
SGA breakdown difference DB/Inst: GLDB/gldb Snaps: 801-802
-> ordered by Pool, Name
-> N/A value for Begin MB or End MB indicates the size of that Pool/Name was
insignificant, or zero in that snapshot
Pool Name Begin MB End MB % Diff
------ ------------------------------ -------------- -------------- -------
java free memory 16.0 16.0 0.00
large PX msg pool 7.5 7.5 0.00
large free memory 8.5 8.5 0.00
shared ASH buffers 8.0 8.0 0.00
shared CCUR 26.0 29.4 13.11
shared FileOpenBlock 10.5 10.5 0.00
shared KGLH0 8.4 8.4 -0.05
shared KGLHD 11.6 13.0 12.00
shared KGLS 15.1 15.1 0.00
shared PCUR 16.7 20.1 20.24
shared PLDIA 6.0 6.0 0.00
shared PLMCD 11.8 11.8 0.00
shared SQLA 122.4 143.1 16.88
shared db_block_hash_buckets 22.3 22.3 0.00
shared free memory 229.3 199.5 -12.98
shared row cache 7.2 7.2 0.00
buffer_cache 2,304.0 2,304.0 0.00
fixed_sga 2.1 2.1 0.00
log_buffer 8.0 8.0 0.00
-------------------------------------------------------------
Streams CPU/IO Usage DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture Rate DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply Rate DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queues DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queue Subscribers DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Rule Set DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues Rate DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queue Subscribers DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Resource Limit Stats DB/Inst: GLDB/gldb Snap: 802
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Activity DB/Inst: GLDB/gldb Snaps: 801-802
-> Values represent averages for all samples
Avg Total Avg Active Avg Total Avg Active Avg Total Avg Active
Connections Connections Shared Srvrs Shared Srvrs Dispatchers Dispatchers
------------ ------------ ------------ ------------ ------------ ------------
0 0 1 0 1 0
-------------------------------------------------------------
Shared Servers Rates DB/Inst: GLDB/gldb Snaps: 801-802
Common Disp Common Disp Server
Queue Queue Server Server Queue Queue Total Server
Per Sec Per Sec Msgs/Sec KB/Sec Total Total Msgs Total(KB)
-------- -------- -------- --------- ---------- ---------- ---------- ----------
0 0 0 0.0 0 0 0 0
-------------------------------------------------------------
Shared Servers Utilization DB/Inst: GLDB/gldb Snaps: 801-802
-> Statistics are combined for all servers
-> Incoming and Outgoing Net % are included in %Busy
Total Server Incoming Outgoing
Time (s) %Busy %Idle Net % Net %
-------------- -------- -------- --------- ---------
903 0.0 100.0 0.0 0.0
-------------------------------------------------------------
Shared Servers Common Queue DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Dispatchers DB/Inst: GLDB/gldb Snaps: 801-802
-> Ordered by %Busy, descending
-> Total Queued, Total Queue Wait and Avg Queue Wait are for dispatcher queue
-> Name suffixes:
"(N)" - dispatcher started between begin and end snapshots
"(R)" - dispatcher re-started between begin and end snapshots
Avg Total Disp Total Total Queue Avg Queue
Name Conns Time (s) %Busy %Idle Queued Wait (s) Wait (ms)
------- --------- ---------- -------- -------- ---------- ----------- ----------
D000 0.0 903 0.0 100.0 0 0
-------------------------------------------------------------
init.ora Parameters DB/Inst: GLDB/gldb Snaps: 801-802
-> if IP/Public/Source at End snap is different a '*' is displayed
End value
Parameter Name Begin value (if different)
----------------------------- --------------------------------- --------------
audit_file_dest D:\ORACLE\ADMIN\GLDB\ADUMP
audit_trail DB
compatible 11.2.0.0.0
control_files D:\ORACLE\FLASH_RECOVERY_AREA\GLD
db_block_size 8192
db_domain
db_name gldb
db_recovery_file_dest D:\Oracle\flash_recovery_area
db_recovery_file_dest_size 4102029312
diagnostic_dest D:\ORACLE
dispatchers (PROTOCOL=TCP) (SERVICE=gldbXDB)
memory_target 5150605312
open_cursors 300
processes 150
remote_login_passwordfile EXCLUSIVE
undo_tablespace UNDOTBS1
-------------------------------------------------------------
Dynamic Remastering Stats DB/Inst: GLDB/gldb Snaps: 801-802
No data exists for this section of the report.
-------------------------------------------------------------
End of Report
AWRRPT 887-888 (5000M REDO LOG FILES)
Toggle Spoiler
WORKLOAD REPOSITORY report for
DB Name DB Id Instance Inst Num Startup Time Release RAC
------------ ----------- ------------ -------- --------------- ----------- ---
GLDB 2907699466 gldb 1 16-Oct-12 10:08 11.2.0.1.0 NO
Host Name Platform CPUs Cores Sockets Memory(GB)
---------------- -------------------------------- ---- ----- ------- ----------
WIN-VTBNMB5VC5I Microsoft Windows x86 64-bit 4 4 1 11.99
Snap Id Snap Time Sessions Curs/Sess
--------- ------------------- -------- ---------
Begin Snap: 887 17-Oct-12 10:30:35 39 4.7
End Snap: 888 17-Oct-12 10:45:38 36 5.3
Elapsed: 15.05 (mins)
DB Time: 4.84 (mins)
Cache Sizes Begin End
~~~~~~~~~~~ ---------- ----------
Buffer Cache: 2,288M 2,288M Std Block Size: 8K
Shared Pool Size: 592M 592M Log Buffer: 8,168K
Load Profile Per Second Per Transaction Per Exec Per Call
~~~~~~~~~~~~ --------------- --------------- ---------- ----------
DB Time(s): 0.3 0.1 0.00 0.01
DB CPU(s): 0.2 0.1 0.00 0.01
Redo size: 5,772,136.4 1,936,581.8
Logical reads: 37,236.9 12,493.2
Block changes: 29,294.7 9,828.5
Physical reads: 0.2 0.1
Physical writes: 336.0 112.7
User calls: 37.4 12.5
Parses: 142.7 47.9
Hard parses: 1.2 0.4
W/A MB processed: 0.2 0.1
Logons: 0.1 0.0
Executes: 176.8 59.3
Rollbacks: 0.0 0.0
Transactions: 3.0
Instance Efficiency Percentages (Target 100%)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Buffer Nowait %: 100.00 Redo NoWait %: 100.00
Buffer Hit %: 100.00 In-memory Sort %: 100.00
Library Hit %: 99.89 Soft Parse %: 99.16
Execute to Parse %: 19.29 Latch Hit %: 100.00
Parse CPU to Parse Elapsd %: 106.05 % Non-Parse CPU: 98.59
Shared Pool Statistics Begin End
------ ------
Memory Usage %: 83.43 81.99
% SQL with executions>1: 89.28 80.06
% Memory for SQL w/exec>1: 86.37 78.66
Top 5 Timed Foreground Events
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Avg
wait % DB
Event Waits Time(s) (ms) time Wait Class
------------------------------ ------------ ----------- ------ ------ ----------
DB CPU 187 64.5
log file sync 2,690 3 1 1.1 Commit
SQL*Net more data from client 115,091 2 0 .6 Network
enq: RO - fast object reuse 6 0 24 .0 Applicatio
log buffer space 1 0 109 .0 Configurat
Host CPU (CPUs: 4 Cores: 4 Sockets: 1)
~~~~~~~~ Load Average
Begin End %User %System %WIO %Idle
--------- --------- --------- --------- --------- ---------
9.2 1.7 89.1
Instance CPU
~~~~~~~~~~~~
% of total CPU for Instance: 5.4
% of busy CPU for Instance: 49.1
%DB time waiting for CPU - Resource Mgr: 0.0
Memory Statistics
~~~~~~~~~~~~~~~~~ Begin End
Host Mem (MB): 12,275.1 12,275.1
SGA use (MB): 2,944.0 2,944.0
PGA use (MB): 136.6 136.6
% Host Mem used for SGA+PGA: 25.10 25.10
Time Model Statistics DB/Inst: GLDB/gldb Snaps: 887-888
-> Total time in database user-calls (DB Time): 290.3s
-> 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 283.5 97.6
DB CPU 187.2 64.5
sequence load elapsed time 26.1 9.0
parse time elapsed 16.0 5.5
hard parse elapsed time 14.2 4.9
hard parse (sharing criteria) elapsed time 6.2 2.1
PL/SQL execution elapsed time 5.0 1.7
PL/SQL compilation elapsed time 0.1 .0
connection management call elapsed time 0.1 .0
repeated bind elapsed time 0.0 .0
failed parse elapsed time 0.0 .0
DB time 290.3
background elapsed time 48.0
background cpu time 6.6
-------------------------------------------------------------
Operating System Statistics DB/Inst: GLDB/gldb Snaps: 887-888
-> *TIME statistic values are diffed.
All others display actual values. End Value is displayed if different
-> ordered by statistic type (CPU Use, Virtual Memory, Hardware Config), Name
Statistic Value End Value
------------------------- ---------------------- ----------------
AVG_BUSY_TIME 9,847
AVG_IDLE_TIME 80,420
AVG_SYS_TIME 1,529
AVG_USER_TIME 8,303
BUSY_TIME 39,493
IDLE_TIME 321,789
SYS_TIME 6,195
USER_TIME 33,298
RSRC_MGR_CPU_WAIT_TIME 0
VM_IN_BYTES 5.9925142946282045E+18
VM_OUT_BYTES -703,687,433,371,648
PHYSICAL_MEMORY_BYTES 12,871,364,608
NUM_CPUS 4
NUM_CPU_CORES 4
NUM_CPU_SOCKETS 1
-------------------------------------------------------------
Operating System Statistics - Detail DB/Inst: GLDB/gldb Snaps: 887-888
Snap Time Load %busy %user %sys %idle %iowait
--------------- -------- -------- -------- -------- -------- --------
17-Oct 10:30:35 0.0 N/A N/A N/A N/A N/A
17-Oct 10:45:38 0.0 10.9 9.2 1.7 89.1 0.0
-------------------------------------------------------------
Foreground Wait Class DB/Inst: GLDB/gldb Snaps: 887-888
-> s - second, ms - millisecond - 1000th of a second
-> ordered by wait time desc, waits desc
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
-> Captured Time accounts for 66.4% of Total DB time 290.35 (s)
-> Total FG Wait Time: 5.58 (s) DB CPU time: 187.15 (s)
Avg
%Time Total Wait wait
Wait Class Waits -outs Time (s) (ms) %DB time
-------------------- ---------------- ----- ---------------- -------- ---------
DB CPU 187 64.5
Commit 2,690 0 3 1 1.1
Network 148,338 0 2 0 0.6
Application 70 0 0 2 0.1
Configuration 1 0 0 109 0.0
System I/O 179 0 0 0 0.0
User I/O 172 0 0 0 0.0
Other 532 94 0 0 0.0
Concurrency 0 0 0.0
-------------------------------------------------------------
Foreground Wait Events DB/Inst: GLDB/gldb Snaps: 887-888
-> s - second, ms - millisecond - 1000th of a second
-> Only events with Total Wait Time (s) >= .001 are shown
-> ordered by wait time desc, waits desc (idle events last)
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % DB
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
log file sync 2,690 0 3 1 1.0 1.1
SQL*Net more data from cli 115,091 0 2 0 42.8 .6
enq: RO - fast object reus 6 0 0 24 0.0 .0
log buffer space 1 0 0 109 0.0 .0
control file sequential re 179 0 0 0 0.1 .0
SQL*Net message to client 33,183 0 0 0 12.3 .0
db file sequential read 88 0 0 0 0.0 .0
direct path read 32 0 0 1 0.0 .0
SQL*Net break/reset to cli 64 0 0 0 0.0 .0
local write wait 9 0 0 1 0.0 .0
ADR block file read 17 0 0 0 0.0 .0
Disk file operations I/O 41 0 0 0 0.0 .0
SQL*Net more data to clien 64 0 0 0 0.0 .0
db file scattered read 2 0 0 1 0.0 .0
SQL*Net message from clien 33,184 0 9,072 273 12.3
jobq slave wait 1,912 100 982 514 0.7
wait for unread message on 900 99 903 1003 0.3
Streams AQ: waiting for me 180 100 901 5007 0.1
-------------------------------------------------------------
Background Wait Events DB/Inst: GLDB/gldb Snaps: 887-888
-> ordered by wait time desc, waits desc (idle events last)
-> Only events with Total Wait Time (s) >= .001 are shown
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % bg
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
log file parallel write 8,676 0 27 3 3.2 55.5
db file parallel write 21,324 0 13 1 7.9 26.2
control file sequential re 1,265 0 1 1 0.5 1.9
control file parallel writ 450 0 1 2 0.2 1.5
os thread startup 33 0 0 5 0.0 .4
LGWR wait for redo copy 704 0 0 0 0.3 .0
db file sequential read 21 0 0 0 0.0 .0
log file sequential read 2 0 0 2 0.0 .0
Disk file operations I/O 28 0 0 0 0.0 .0
rdbms ipc message 12,604 30 11,686 927 4.7
Streams AQ: waiting for ti 3 67 3,671 1.2E+06 0.0
DIAG idle wait 1,782 100 1,807 1014 0.7
Streams AQ: qmn slave idle 34 0 925 27193 0.0
Streams AQ: qmn coordinato 66 50 925 14008 0.0
pmon timer 319 94 903 2831 0.1
Space Manager: slave idle 183 98 903 4932 0.1
shared server idle wait 30 100 900 30014 0.0
dispatcher timer 15 100 900 60012 0.0
smon timer 3 100 900 300012 0.0
SQL*Net message from clien 58 0 0 1 0.0
-------------------------------------------------------------
Wait Event Histogram DB/Inst: GLDB/gldb Snaps: 887-888
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> % of Waits: value of .0 indicates value was <.05%; value of null is truly 0
-> % of Waits: column heading of <=1s is truly <1024ms, >1s is truly >=1024ms
-> Ordered by Event (idle events last)
% of Waits
-----------------------------------------------
Total
Event Waits <1ms <2ms <4ms <8ms <16ms <32ms <=1s >1s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
ADR block file read 17 100.0
ADR block file write 5 100.0
ADR file lock 6 100.0
Disk file operations I/O 69 100.0
LGWR wait for redo copy 704 100.0
SQL*Net break/reset to cli 64 100.0
SQL*Net message to client 33.2K 100.0
SQL*Net more data from cli 115.1 100.0
SQL*Net more data to clien 65 100.0
asynch descriptor resize 549 100.0
control file parallel writ 450 99.3 .2 .2 .2
control file sequential re 1444 85.3 7.2 6.5 1.0
db file parallel write 21.3K 96.6 2.9 .1 .3 .0
db file scattered read 2 100.0
db file sequential read 126 96.0 2.4 1.6
direct path read 32 90.6 3.1 3.1 3.1
enq: RO - fast object reus 6 16.7 16.7 33.3 16.7 16.7
latch: messages 1 100.0
local write wait 9 88.9 11.1
log buffer space 1 100.0
log file parallel write 8680 38.2 2.9 5.2 52.9 .7 .0 .0
log file sequential read 2 50.0 50.0
log file single write 2 100.0
log file sync 2694 73.2 8.2 14.7 3.7 .1 .1
os thread startup 33 100.0
reliable message 6 100.0
DIAG idle wait 1782 100.0
SQL*Net message from clien 33.3K 24.3 31.1 2.6 .7 .5 1.8 38.5 .6
Space Manager: slave idle 183 .5 1.1 98.4
Streams AQ: qmn coordinato 66 50.0 50.0
Streams AQ: qmn slave idle 34 2.9 97.1
Streams AQ: waiting for me 180 100.0
Streams AQ: waiting for ti 3 33.3 33.3 33.3
class slave wait 5 100.0
dispatcher timer 15 100.0
jobq slave wait 1911 100.0
pmon timer 319 6.0 94.0
rdbms ipc message 12.6K 16.8 .5 7.2 1.4 1.1 1.3 51.2 20.5
shared server idle wait 30 100.0
smon timer 3 100.0
wait for unread message on 900 .4 .4 .1 99.0
-------------------------------------------------------------
Wait Event Histogram Detail (64 msec to 2 sec)DB/Inst: GLDB/gldb Snaps: 887-
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> Units for % of Total Waits:
ms is milliseconds
s is 1024 milliseconds (approximately 1 second)
-> % of Total Waits: total waits for all wait classes, including Idle
-> % of Total Waits: value of .0 indicates value was <.05%;
value of null is truly 0
-> Ordered by Event (only non-idle events are displayed)
% of Total Waits
-----------------------------------------------
Waits
64ms
Event to 2s <32ms <64ms <1/8s <1/4s <1/2s <1s <2s >=2s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
control file parallel writ 1 99.8 .2
enq: RO - fast object reus 1 83.3 16.7
log buffer space 1 100.0
log file parallel write 3 100.0 .0
log file sync 2 99.9 .0 .0
-------------------------------------------------------------
Wait Event Histogram Detail (4 sec to 2 min)DB/Inst: GLDB/gldb Snaps: 887-88
No data exists for this section of the report.
-------------------------------------------------------------
Wait Event Histogram Detail (4 min to 1 hr)DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Service Statistics DB/Inst: GLDB/gldb Snaps: 887-888
-> ordered by DB Time
Physical Logical
Service Name DB Time (s) DB CPU (s) Reads (K) Reads (K)
---------------------------- ------------ ------------ ------------ ------------
gldb 269 167 0 32,969
SYS$USERS 21 20 0 652
SYS$BACKGROUND 0 0 0 10
gldbXDB 0 0 0 0
-------------------------------------------------------------
Service Wait Class Stats DB/Inst: GLDB/gldb Snaps: 887-888
-> Wait Class info for services in the Service Statistics section.
-> Total Waits and Time Waited displayed for the following wait
classes: User I/O, Concurrency, Administrative, Network
-> Time Waited (Wt Time) in seconds
Service Name
----------------------------------------------------------------
User I/O User I/O Concurcy Concurcy Admin Admin Network Network
Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time
--------- --------- --------- --------- --------- --------- --------- ---------
gldb
20 0 0 0 0 0 147434 2
SYS$USERS
152 0 0 0 0 0 904 0
SYS$BACKGROUND
47 0 33 0 0 0 0 0
-------------------------------------------------------------
SQL ordered by Elapsed Time DB/Inst: GLDB/gldb Snaps: 887-888
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> % Total DB Time is the Elapsed Time of the SQL statement divided
into the Total Database Time multiplied by 100
-> %Total - Elapsed Time as a percentage of Total DB time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 102.0% of Total DB Time (s): 290
-> Captured PL/SQL account for 0.3% of Total DB Time (s): 290
Elapsed Elapsed Time
Time (s) Executions per Exec (s) %Total %CPU %IO SQL Id
---------------- -------------- ------------- ------ ------ ------ -------------
261.7 24,205 0.01 90.1 63.0 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
13.0 3 4.33 4.5 99.6 .0 5w5ay3m2zusm3
Module: SQL Developer
select * from ( SELECT o.OBJECT_NAME, o.OBJECT_ID ,'' short_name, t.partition
ed,t.iot_type, o.OWNER OBJECT_OWNER, o.CREATED, o.LAST_DDL_TIME FROM SYS.ALL
_OBJECTS O ,sys.all_tables t WHERE O.OWNER = :SCHEMA and o.owner = t.o
wner(+) and o.object_name = t.table_name(+) AND O.OBJECT_TYPE = 'TABLE
12.2 120,750 0.00 4.2 59.9 .0 4m7m0t6fjcs5x
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
6.3 1 6.29 2.2 98.9 .5 0a59tkkpx31vx
Module: Admin Connection
select output from table(dbms_workload_repository.awr_report_html(:1, :2, :3, :4
))
0.4 1 0.38 .1 99.2 .0 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.4 1 0.37 .1 99.9 .0 dayq182sk41ks
insert into wrh$_memory_target_advice (snap_id, dbid, instance_number, memo
ry_size, memory_size_factor, estd_db_time, estd_db_time_factor, version) sel
ect :snap_id, :dbid, :instance_number, memory_size, memory_size_factor,
estd_db_time, estd_db_time_factor, version from v$memory_target_advice
0.4 1 0.37 .1 100.0 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.2 356 0.00 .1 .0 .0 6v7n0y2bq89n8
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
0.2 100 0.00 .1 105.5 .1 7u3jnmmaw8gg1
Module: Admin Connection
SELECT SUM(VALUE), COUNT(INSTANCE_NUMBER), SUM(INSTANCE_NUMBER) FROM DBA_HIST_SY
SSTAT WHERE SNAP_ID = :B4 AND DBID = :B3 AND INSTANCE_NUMBER MEMBER OF :B2 AND S
TAT_NAME = :B1
0.2 15 0.01 .1 .0 .9 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
-------------------------------------------------------------
SQL ordered by CPU Time DB/Inst: GLDB/gldb Snaps: 887-888
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - CPU Time as a percentage of Total DB CPU
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 103.6% of Total CPU Time (s): 187
-> Captured PL/SQL account for 0.1% of Total CPU Time (s): 187
CPU CPU per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
164.9 24,205 0.01 88.1 261.7 63.0 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
12.9 3 4.32 6.9 13.0 99.6 .0 5w5ay3m2zusm3
Module: SQL Developer
select * from ( SELECT o.OBJECT_NAME, o.OBJECT_ID ,'' short_name, t.partition
ed,t.iot_type, o.OWNER OBJECT_OWNER, o.CREATED, o.LAST_DDL_TIME FROM SYS.ALL
_OBJECTS O ,sys.all_tables t WHERE O.OWNER = :SCHEMA and o.owner = t.o
wner(+) and o.object_name = t.table_name(+) AND O.OBJECT_TYPE = 'TABLE
7.3 120,750 0.00 3.9 12.2 59.9 .0 4m7m0t6fjcs5x
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
6.2 1 6.22 3.3 6.3 98.9 .5 0a59tkkpx31vx
Module: Admin Connection
select output from table(dbms_workload_repository.awr_report_html(:1, :2, :3, :4
))
0.4 1 0.37 0.2 0.4 99.2 .0 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.4 1 0.37 0.2 0.4 100.0 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.4 1 0.37 0.2 0.4 99.9 .0 dayq182sk41ks
insert into wrh$_memory_target_advice (snap_id, dbid, instance_number, memo
ry_size, memory_size_factor, estd_db_time, estd_db_time_factor, version) sel
ect :snap_id, :dbid, :instance_number, memory_size, memory_size_factor,
estd_db_time, estd_db_time_factor, version from v$memory_target_advice
0.2 100 0.00 0.1 0.2 105.5 .1 7u3jnmmaw8gg1
Module: Admin Connection
SELECT SUM(VALUE), COUNT(INSTANCE_NUMBER), SUM(INSTANCE_NUMBER) FROM DBA_HIST_SY
SSTAT WHERE SNAP_ID = :B4 AND DBID = :B3 AND INSTANCE_NUMBER MEMBER OF :B2 AND S
TAT_NAME = :B1
0.2 1 0.19 0.1 0.2 94.7 .0 95jvkhg3t7rqj
Module: Admin Connection
select service_name, uio_waits, uio_time / 100, con_waits, con_time / 100,
adm_waits, adm_time / 100, net_waits, net_time / 100 from (select
stat1.service_name service_name, db_time, uio_waits, uio_time, con_w
aits, con_time, adm_waits, adm_time, net_waits, net_time from (select
0.1 1,127 0.00 0.0 0.1 52.6 .0 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
-------------------------------------------------------------
SQL ordered by User I/O Wait Time DB/Inst: GLDB/gldb Snaps: 887-888
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - User I/O Time as a percentage of Total User I/O Wait time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 91.5% of Total User I/O Wait Time (s):
-> Captured PL/SQL account for 6.1% of Total User I/O Wait Time (s):
User I/O UIO per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
0.0 1 0.03 40.3 6.3 98.9 .5 0a59tkkpx31vx
Module: Admin Connection
select output from table(dbms_workload_repository.awr_report_html(:1, :2, :3, :4
))
0.0 1 0.01 13.5 0.0 34.5 22.0 ccn7b5ja9tp0w
Module: Admin Connection
select * from (select nvl((sqt.cput/1000000), to_number(null)
), sqt.exec, decode(sqt.exec, 0, to_number(null),
(sqt.cput / sqt.exec / 1000000)), decode(:tcpu, 0,
to_number(null), (100 * (sqt.cput / :tcpu))) norm_val,
0.0 11 0.00 10.1 0.0 .0 84.5 39m4sx9k63ba2
select /*+ index(idl_ub2$ i_idl_ub21) +*/ piece#,length,piece from idl_ub2$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
0.0 1 0.01 8.1 0.0 119.9 15.3 gcpj8av4kx6j2
Module: Admin Connection
select event_name , dbms_swrf_report_internal.to_1000s(total_waits)
total_waits_str , substr(to_char(decode(to1, 0, to_number(NULL),
100* to1 /total_waits), '999.9MI'),1,5) to1 , subst
r(to_char(decode(to2, 0, to_number(NULL), 100* to
0.0 1 0.00 6.4 0.0 113.4 11.4 5m67tmr82m5mk
Module: Admin Connection
select * from (select sqt.bget, sqt.exec,
decode(sqt.exec, 0, to_number(null), (sqt.bget / sqt.e
xec)), decode(:slr, 0, to_number(null), (100*sq
t.bget)/:slr) norm_val, nvl((sqt.elap/1000000), to_number(null)),
0.0 11 0.00 3.7 0.0 .0 71.9 ga9j9xk5cy9s0
select /*+ index(idl_sb4$ i_idl_sb41) +*/ piece#,length,piece from idl_sb4$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
0.0 11 0.00 3.1 0.0 496.7 74.1 cvn54b7yz0s8u
select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#,length,piece from idl_ub1$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
0.0 1 0.00 3.0 0.1 79.4 3.7 8fx6pqqbpra0s
Module: OEM.DefaultPool
begin emd_database.getDBSiteMapInfo(:1,:2,:3); end;
0.0 15 0.00 2.4 0.2 .0 .9 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
0.0 24,205 0.00 1.7 261.7 63.0 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
0.0 1 0.00 1.4 0.0 85.4 2.8 fg679qy6uychn
Module: Admin Connection
select * from (select nvl((sqt.elap/1000000), to_number(null)
), sqt.exec, decode(sqt.exec, 0, to_number(null),
(sqt.elap / sqt.exec / 1000000)), decode(:dbtime, 0
, to_number(null), (100 * (sqt.elap / :dbtime))) norm_val,
SQL ordered by User I/O Wait Time DB/Inst: GLDB/gldb Snaps: 887-888
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - User I/O Time as a percentage of Total User I/O Wait time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 91.5% of Total User I/O Wait Time (s):
-> Captured PL/SQL account for 6.1% of Total User I/O Wait Time (s):
User I/O UIO per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
0.0 1 0.00 1.1 0.0 129.8 2.3 8untnccygdj6y
Module: Admin Connection
select * from (select nvl((sqt.uiot/1000000), to_number(null)
), sqt.exec, decode(sqt.exec, 0, to_number(null),
(sqt.uiot / sqt.exec / 1000000)), decode(:uiowt, 0,
to_number(null), (100 * (sqt.uiot / :uiowt))) norm_val,
0.0 1 0.00 1.1 0.0 78.3 2.0 ab9rc63zxa4bj
Module: Admin Connection
select service_name, db_time / 1000000, db_cpu / 1000000,
phy_reads / 1000, log_reads / 1000 from (select
s1.service_name, sum(decode(s1.stat_name, 'DB time', s1.diff, 0))
db_time, sum(decode(s1.stat_name, 'DB CPU', s1.diff, 0)) db_cpu
-------------------------------------------------------------
SQL ordered by Gets DB/Inst: GLDB/gldb Snaps: 887-888
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - Buffer Gets as a percentage of Total Buffer Gets
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Buffer Gets: 33,631,578
-> Captured SQL account for 101.3% of Total
Buffer Gets Elapsed
Gets Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ------------ ------ ---------- ------ ------ -----------
32,983,431 24,205 1,362.7 98.1 261.7 63.0 .0 7k1usds2tau
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
617,837 1 617,837.0 1.8 6.3 98.9 .5 0a59tkkpx31
Module: Admin Connection
select output from table(dbms_workload_repository.awr_report_html(:1, :2, :3, :4
))
363,566 120,750 3.0 1.1 12.2 59.9 .0 4m7m0t6fjcs
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
61,382 100 613.8 0.2 0.2 105.5 .1 7u3jnmmaw8g
Module: Admin Connection
SELECT SUM(VALUE), COUNT(INSTANCE_NUMBER), SUM(INSTANCE_NUMBER) FROM DBA_HIST_SY
SSTAT WHERE SNAP_ID = :B4 AND DBID = :B3 AND INSTANCE_NUMBER MEMBER OF :B2 AND S
TAT_NAME = :B1
12,834 3 4,278.0 0.0 13.0 99.6 .0 5w5ay3m2zus
Module: SQL Developer
select * from ( SELECT o.OBJECT_NAME, o.OBJECT_ID ,'' short_name, t.partition
ed,t.iot_type, o.OWNER OBJECT_OWNER, o.CREATED, o.LAST_DDL_TIME FROM SYS.ALL
_OBJECTS O ,sys.all_tables t WHERE O.OWNER = :SCHEMA and o.owner = t.o
wner(+) and o.object_name = t.table_name(+) AND O.OBJECT_TYPE = 'TABLE
4,508 1,127 4.0 0.0 0.1 52.6 .0 0kkhhb2w93c
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
4,139 1,158 3.6 0.0 0.1 95.6 .1 bsa0wjtftg3
select file# from file$ where ts#=:1
3,938 15 262.5 0.0 0.2 .0 .9 6gvch1xu9ca
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
3,394 886 3.8 0.0 0.1 .0 .0 1umfsnn451y
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
3,045 762 4.0 0.0 0.1 41.4 .0 df9md17q736
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
-------------------------------------------------------------
SQL ordered by Reads DB/Inst: GLDB/gldb Snaps: 887-888
-> %Total - Physical Reads as a percentage of Total Disk Reads
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Disk Reads: 152
-> Captured SQL account for 107.2% of Total
Physical Reads Elapsed
Reads Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ---------- ------ ---------- ------ ------ -------------
70 1 70.0 46.1 6.3 98.9 .5 0a59tkkpx31vx
Module: Admin Connection
select output from table(dbms_workload_repository.awr_report_html(:1, :2, :3, :4
))
26 11 2.4 17.1 0.0 .0 84.5 39m4sx9k63ba2
select /*+ index(idl_ub2$ i_idl_ub21) +*/ piece#,length,piece from idl_ub2$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
22 1 22.0 14.5 0.0 119.9 15.3 gcpj8av4kx6j2
Module: Admin Connection
select event_name , dbms_swrf_report_internal.to_1000s(total_waits)
total_waits_str , substr(to_char(decode(to1, 0, to_number(NULL),
100* to1 /total_waits), '999.9MI'),1,5) to1 , subst
r(to_char(decode(to2, 0, to_number(NULL), 100* to
9 11 0.8 5.9 0.0 .0 71.9 ga9j9xk5cy9s0
select /*+ index(idl_sb4$ i_idl_sb41) +*/ piece#,length,piece from idl_sb4$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
8 1 8.0 5.3 0.1 79.4 3.7 8fx6pqqbpra0s
Module: OEM.DefaultPool
begin emd_database.getDBSiteMapInfo(:1,:2,:3); end;
8 11 0.7 5.3 0.0 496.7 74.1 cvn54b7yz0s8u
select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#,length,piece from idl_ub1$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
6 1 6.0 3.9 0.0 78.3 2.0 ab9rc63zxa4bj
Module: Admin Connection
select service_name, db_time / 1000000, db_cpu / 1000000,
phy_reads / 1000, log_reads / 1000 from (select
s1.service_name, sum(decode(s1.stat_name, 'DB time', s1.diff, 0))
db_time, sum(decode(s1.stat_name, 'DB CPU', s1.diff, 0)) db_cpu
4 1 4.0 2.6 0.0 113.4 11.4 5m67tmr82m5mk
Module: Admin Connection
select * from (select sqt.bget, sqt.exec,
decode(sqt.exec, 0, to_number(null), (sqt.bget / sqt.e
xec)), decode(:slr, 0, to_number(null), (100*sq
t.bget)/:slr) norm_val, nvl((sqt.elap/1000000), to_number(null)),
4 24,205 0.0 2.6 261.7 63.0 .0 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
4 1 4.0 2.6 0.0 129.8 2.3 8untnccygdj6y
Module: Admin Connection
select * from (select nvl((sqt.uiot/1000000), to_number(null)
), sqt.exec, decode(sqt.exec, 0, to_number(null),
(sqt.uiot / sqt.exec / 1000000)), decode(:uiowt, 0,
to_number(null), (100 * (sqt.uiot / :uiowt))) norm_val,
4 1 4.0 2.6 0.0 34.5 22.0 ccn7b5ja9tp0w
Module: Admin Connection
select * from (select nvl((sqt.cput/1000000), to_number(null)
), sqt.exec, decode(sqt.exec, 0, to_number(null),
SQL ordered by Reads DB/Inst: GLDB/gldb Snaps: 887-888
-> %Total - Physical Reads as a percentage of Total Disk Reads
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Disk Reads: 152
-> Captured SQL account for 107.2% of Total
Physical Reads Elapsed
Reads Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ---------- ------ ---------- ------ ------ -------------
(sqt.cput / sqt.exec / 1000000)), decode(:tcpu, 0,
to_number(null), (100 * (sqt.cput / :tcpu))) norm_val,
4 1 4.0 2.6 0.0 85.4 2.8 fg679qy6uychn
Module: Admin Connection
select * from (select nvl((sqt.elap/1000000), to_number(null)
), sqt.exec, decode(sqt.exec, 0, to_number(null),
(sqt.elap / sqt.exec / 1000000)), decode(:dbtime, 0
, to_number(null), (100 * (sqt.elap / :dbtime))) norm_val,
2 1 2.0 1.3 0.0 107.6 1.2 db7404kj5jt39
Module: SQL Developer
declare TYPE attrs_cur IS REF CURSOR; m_cur attrs_cur; m_event varcha
r2(512); m_user varchar2(512); m_owner varchar2(512); m_user1 varchar2
(512); m_type varchar2(512); m_name varchar2(5120); m_column varchar2(
5120); m_cnt NUMBER; m_stmt varchar2(512); m_ret varchar2(3000);
-------------------------------------------------------------
SQL ordered by Physical Reads (UnOptimized)DB/Inst: GLDB/gldb Snaps: 887-888
-> UnOptimized Read Reqs = Physical Read Reqts - Optimized Read Reqs
-> %Opt - Optimized Reads as percentage of SQL Read Requests
-> %Total - UnOptimized Read Reqs as a percentage of Total UnOptimized Read Reqs
-> Total Physical Read Requests: 146
-> Captured SQL account for 89.7% of Total
-> Total UnOptimized Read Requests: 146
-> Captured SQL account for 89.7% of Total
-> Total Optimized Read Requests: 1
-> Captured SQL account for 0.0% of Total
UnOptimized Physical UnOptimized
Read Reqs Read Reqs Executions Reqs per Exe %Opt %Total SQL Id
----------- ----------- ---------- ------------ ------ ------ -------------
86 86 1 86.0 0.0 58.9 1qhza1uh1xcf9
Module: emagent_SQL_oracle_database
/* OracleOEM */ DECLARE l_log_mode VARCHAR2(32); l_flashback_on VARCHAR2(32
); l_flash_recovery_area VARCHAR2(512); l_flash_recovery_size NUMBER; l_us
able_area NUMBER; l_space_used NUMBER; l_reclaimable_area NUMBER; l_nonrec
laimable_area NUMBER; l_oldest_flashback_time VARCHAR2(512); TYPE data_curs
64 64 1 64.0 0.0 43.8 0a59tkkpx31vx
Module: Admin Connection
select output from table(dbms_workload_repository.awr_report_html(:1, :2, :3, :4
))
22 22 1 22.0 0.0 15.1 gcpj8av4kx6j2
Module: Admin Connection
select event_name , dbms_swrf_report_internal.to_1000s(total_waits)
total_waits_str , substr(to_char(decode(to1, 0, to_number(NULL),
100* to1 /total_waits), '999.9MI'),1,5) to1 , subst
r(to_char(decode(to2, 0, to_number(NULL), 100* to
18 18 11 1.6 0.0 12.3 39m4sx9k63ba2
select /*+ index(idl_ub2$ i_idl_ub21) +*/ piece#,length,piece from idl_ub2$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
10 10 22 0.5 0.0 6.8 49s332uhbnsma
declare vsn varchar2(20); begin vsn :=
dbms_rcvman.getPackageVersion; :pkg_vsn:pkg_vsn_i := vsn;
if vsn is not null then :pkg_vsnub4 :=
to_number(substr(vsn,1,2) || substr(vsn,4,2) || s
8 8 1 8.0 0.0 5.5 8fx6pqqbpra0s
Module: OEM.DefaultPool
begin emd_database.getDBSiteMapInfo(:1,:2,:3); end;
4 4 1 4.0 0.0 2.7 5m67tmr82m5mk
Module: Admin Connection
select * from (select sqt.bget, sqt.exec,
decode(sqt.exec, 0, to_number(null), (sqt.bget / sqt.e
xec)), decode(:slr, 0, to_number(null), (100*sq
t.bget)/:slr) norm_val, nvl((sqt.elap/1000000), to_number(null)),
4 4 24,205 0.0 0.0 2.7 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
4 4 1 4.0 0.0 2.7 8untnccygdj6y
Module: Admin Connection
select * from (select nvl((sqt.uiot/1000000), to_number(null)
), sqt.exec, decode(sqt.exec, 0, to_number(null),
(sqt.uiot / sqt.exec / 1000000)), decode(:uiowt, 0,
to_number(null), (100 * (sqt.uiot / :uiowt))) norm_val,
4 4 1 4.0 0.0 2.7 ccn7b5ja9tp0w
Module: Admin Connection
select * from (select nvl((sqt.cput/1000000), to_number(null)
), sqt.exec, decode(sqt.exec, 0, to_number(null),
(sqt.cput / sqt.exec / 1000000)), decode(:tcpu, 0,
to_number(null), (100 * (sqt.cput / :tcpu))) norm_val,
SQL ordered by Physical Reads (UnOptimized)DB/Inst: GLDB/gldb Snaps: 887-888
-> UnOptimized Read Reqs = Physical Read Reqts - Optimized Read Reqs
-> %Opt - Optimized Reads as percentage of SQL Read Requests
-> %Total - UnOptimized Read Reqs as a percentage of Total UnOptimized Read Reqs
-> Total Physical Read Requests: 146
-> Captured SQL account for 89.7% of Total
-> Total UnOptimized Read Requests: 146
-> Captured SQL account for 89.7% of Total
-> Total Optimized Read Requests: 1
-> Captured SQL account for 0.0% of Total
UnOptimized Physical UnOptimized
Read Reqs Read Reqs Executions Reqs per Exe %Opt %Total SQL Id
----------- ----------- ---------- ------------ ------ ------ -------------
4 4 1 4.0 0.0 2.7 fg679qy6uychn
Module: Admin Connection
select * from (select nvl((sqt.elap/1000000), to_number(null)
), sqt.exec, decode(sqt.exec, 0, to_number(null),
(sqt.elap / sqt.exec / 1000000)), decode(:dbtime, 0
, to_number(null), (100 * (sqt.elap / :dbtime))) norm_val,
2 2 1 2.0 0.0 1.4 ab9rc63zxa4bj
Module: Admin Connection
select service_name, db_time / 1000000, db_cpu / 1000000,
phy_reads / 1000, log_reads / 1000 from (select
s1.service_name, sum(decode(s1.stat_name, 'DB time', s1.diff, 0))
db_time, sum(decode(s1.stat_name, 'DB CPU', s1.diff, 0)) db_cpu
2 2 11 0.2 0.0 1.4 cvn54b7yz0s8u
select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#,length,piece from idl_ub1$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
2 2 11 0.2 0.0 1.4 ga9j9xk5cy9s0
select /*+ index(idl_sb4$ i_idl_sb41) +*/ piece#,length,piece from idl_sb4$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
-------------------------------------------------------------
SQL ordered by Executions DB/Inst: GLDB/gldb Snaps: 887-888
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Executions: 159,673
-> Captured SQL account for 96.3% of Total
Elapsed
Executions Rows Processed Rows per Exec Time (s) %CPU %IO SQL Id
------------ --------------- -------------- ---------- ------ ------ -----------
120,750 120,750 1.0 12.2 59.9 .0 4m7m0t6fjcs
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
24,205 2,415,000 99.8 261.7 63.0 .0 7k1usds2tau
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
1,158 1,158 1.0 0.1 95.6 .1 bsa0wjtftg3
select file# from file$ where ts#=:1
1,127 1,127 1.0 0.1 52.6 .0 0kkhhb2w93c
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
886 818 0.9 0.1 .0 .0 1umfsnn451y
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
851 1,290 1.5 0.0 .0 .0 cm5vu20fhtn
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
819 819 1.0 0.1 .0 .0 0ysq85ju8aj
Module: OdbcDbTrace64.exe
INSERT INTO DbLoaderStatus ( LoaderName, ProbeName, IpAddrPort, Status,OkFrameCo
unt, ErrorFrameCount) VALUES ( :1, :2, :3, :4, :5, :6 )
762 762 1.0 0.1 41.4 .0 df9md17q736
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
757 757 1.0 0.0 .0 .0 8t43xdhf4d9
Module: OEM.BoundedPool
SELECT CONTEXT_TYPE_ID,CONTEXT_TYPE,TRACE_LEVEL,NULL,NULL FROM EMDW_TRACE_CONFIG
WHERE CONTEXT_TYPE = UPPER(:B1 )
426 426 1.0 0.0 .0 .0 089dbukv1aa
Module: EM_PING
SELECT SYS_EXTRACT_UTC(SYSTIMESTAMP) FROM DUAL
-------------------------------------------------------------
SQL ordered by Parse Calls DB/Inst: GLDB/gldb Snaps: 887-888
-> Total Parse Calls: 128,869
-> Captured SQL account for 98.0% of Total
% Total
Parse Calls Executions Parses SQL Id
------------ ------------ --------- -------------
120,750 120,750 93.70 4m7m0t6fjcs5x
update seq$ set increment$=:2,minvalue=:3,maxvalue=:4,cycle#=:5,order$=:6,cache=
:7,highwater=:8,audit$=:9,flags=:10 where obj#=:1
1,158 1,158 0.90 bsa0wjtftg3uw
select file# from file$ where ts#=:1
1,127 1,127 0.87 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
851 851 0.66 cm5vu20fhtnq1
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
762 762 0.59 df9md17q736da
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
421 421 0.33 grwydz59pu6mc
select text from view$ where rowid=:1
212 212 0.16 3972rvxu3knn3
Module: emagent_AQMetrics
delete from sdo_geor_ddl__table$$
108 108 0.08 350f5yrnnmshs
lock table sys.mon_mods$ in exclusive mode nowait
108 108 0.08 g00cj285jmgsw
update sys.mon_mods$ set inserts = inserts + :ins, updates = updates + :upd, del
etes = deletes + :del, flags = (decode(bitand(flags, :flag), :flag, flags, flags
+ :flag)), drop_segments = drop_segments + :dropseg, timestamp = :time where ob
j# = :objn
61 61 0.05 1kwc9w9fbtxsz
Module: OdbcDbTrace64.exe
Update GLT_DB_LOADER_STATUS SET LOADER_TIMESTAMP=CURRENT_DATE,DB_CONN_STATUS=1,L
OG_ENABLED=1,TOTAL_PROBES_CONN=0,UNIQUE_PROBES_CONN=0,TOTAL_REC_LOADED_SUM=0,TOT
AL_REC_LOADED_CDR=0,TOTAL_REC_LOADED_VBA=0,DB_INS_ERR_SUM=0,DB_INS_ERR_CDR=0,DB_
INS_ERR_VBA=0,DB_INS_RPS_CUR=0,DB_INS_RPS_AVG=0,DB_INS_RPS_MAX=0,DB_OVER_RUN_GRO
-------------------------------------------------------------
SQL ordered by Sharable Memory DB/Inst: GLDB/gldb Snaps: 887-888
-> Only Statements with Sharable Memory greater than 1048576 are displayed
Sharable Mem (b) Executions % Total SQL Id
---------------- ------------ -------- -------------
2,032,037 3 0.33 5w5ay3m2zusm3
Module: SQL Developer
select * from ( SELECT o.OBJECT_NAME, o.OBJECT_ID ,'' short_name, t.partition
ed,t.iot_type, o.OWNER OBJECT_OWNER, o.CREATED, o.LAST_DDL_TIME FROM SYS.ALL
_OBJECTS O ,sys.all_tables t WHERE O.OWNER = :SCHEMA and o.owner = t.o
wner(+) and o.object_name = t.table_name(+) AND O.OBJECT_TYPE = 'TABLE
2,019,877 3 0.33 5w5ay3m2zusm3
Module: SQL Developer
select * from ( SELECT o.OBJECT_NAME, o.OBJECT_ID ,'' short_name, t.partition
ed,t.iot_type, o.OWNER OBJECT_OWNER, o.CREATED, o.LAST_DDL_TIME FROM SYS.ALL
_OBJECTS O ,sys.all_tables t WHERE O.OWNER = :SCHEMA and o.owner = t.o
wner(+) and o.object_name = t.table_name(+) AND O.OBJECT_TYPE = 'TABLE
-------------------------------------------------------------
SQL ordered by Version Count DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 887-888
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
Batched IO (bound) vector count 0 0.0 0.0
Batched IO (full) vector count 0 0.0 0.0
Batched IO block miss count 0 0.0 0.0
Batched IO double miss count 0 0.0 0.0
Batched IO same unit count 0 0.0 0.0
Batched IO single block count 0 0.0 0.0
Batched IO vector block count 0 0.0 0.0
Batched IO vector read count 0 0.0 0.0
Block Cleanout Optim referenced 4,395 4.9 1.6
CCursor + sql area evicted 0 0.0 0.0
CPU used by this session 18,759 20.8 7.0
CPU used when call started 18,718 20.7 7.0
CR blocks created 81 0.1 0.0
Cached Commit SCN referenced 0 0.0 0.0
Commit SCN cached 0 0.0 0.0
DB time 301,128 333.4 111.9
DBWR checkpoint buffers written 303,315 335.8 112.7
DBWR checkpoints 7 0.0 0.0
DBWR object drop buffers written 135 0.2 0.1
DBWR parallel query checkpoint b 0 0.0 0.0
DBWR revisited being-written buf 0 0.0 0.0
DBWR tablespace checkpoint buffe 0 0.0 0.0
DBWR thread checkpoint buffers w 0 0.0 0.0
DBWR transaction table writes 29 0.0 0.0
DBWR undo block writes 147,098 162.9 54.6
DFO trees parallelized 0 0.0 0.0
HSC Heap Segment Block Changes 2,538,494 2,810.6 943.0
Heap Segment Array Inserts 87 0.1 0.0
Heap Segment Array Updates 1,058 1.2 0.4
IMU CR rollbacks 72 0.1 0.0
IMU Flushes 1,093 1.2 0.4
IMU Redo allocation size 48,595,360 53,804.7 18,051.8
IMU commits 1,841 2.0 0.7
IMU contention 17 0.0 0.0
IMU ktichg flush 5 0.0 0.0
IMU pool not allocated 16 0.0 0.0
IMU recursive-transaction flush 92 0.1 0.0
IMU undo allocation size 28,548,336 31,608.7 10,604.9
IMU- failed to get a private str 16 0.0 0.0
LOB table id lookup cache misses 0 0.0 0.0
Number of read IOs issued 32 0.0 0.0
PX local messages recv'd 0 0.0 0.0
PX local messages sent 0 0.0 0.0
Parallel operations not downgrad 0 0.0 0.0
RowCR attempts 9 0.0 0.0
RowCR hits 16 0.0 0.0
SMON posted for undo segment shr 0 0.0 0.0
SQL*Net roundtrips to/from clien 33,183 36.7 12.3
TBS Extension: bytes extended 0 0.0 0.0
TBS Extension: files extended 0 0.0 0.0
TBS Extension: tasks created 0 0.0 0.0
TBS Extension: tasks executed 0 0.0 0.0
active txn count during cleanout 174,506 193.2 64.8
application wait time 16 0.0 0.0
background checkpoints completed 0 0.0 0.0
background checkpoints started 1 0.0 0.0
background timeouts 3,774 4.2 1.4
branch node splits 191 0.2 0.1
buffer is not pinned count 281,576 311.8 104.6
buffer is pinned count 171,580 190.0 63.7
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 887-888
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
bytes received via SQL*Net from 1,003,972,358 1,111,597.2 372,946.6
bytes sent via SQL*Net to client 5,085,581 5,630.8 1,889.2
calls to get snapshot scn: kcmgs 513,716 568.8 190.8
calls to kcmgas 421,989 467.2 156.8
calls to kcmgcs 356,185 394.4 132.3
cell physical IO interconnect by 7,915,783,680 8,764,347.8 2,940,484.3
change write time 3,960 4.4 1.5
cleanout - number of ktugct call 199,807 221.2 74.2
cleanouts and rollbacks - consis 0 0.0 0.0
cleanouts only - consistent read 1 0.0 0.0
cluster key scan block gets 2,464 2.7 0.9
cluster key scans 2,391 2.7 0.9
commit batch performed 0 0.0 0.0
commit batch requested 0 0.0 0.0
commit batch/immediate performed 137 0.2 0.1
commit batch/immediate requested 137 0.2 0.1
commit cleanout failures: block 4 0.0 0.0
commit cleanout failures: buffer 0 0.0 0.0
commit cleanout failures: callba 11,571 12.8 4.3
commit cleanouts 799,180 884.9 296.9
commit cleanouts successfully co 787,605 872.0 292.6
commit immediate performed 137 0.2 0.1
commit immediate requested 137 0.2 0.1
commit txn count during cleanout 67,341 74.6 25.0
concurrency wait time 18 0.0 0.0
consistent changes 162,110 179.5 60.2
consistent gets 592,978 656.5 220.3
consistent gets - examination 446,822 494.7 166.0
consistent gets direct 32 0.0 0.0
consistent gets from cache 592,946 656.5 220.3
consistent gets from cache (fast 139,541 154.5 51.8
cursor authentications 13 0.0 0.0
data blocks consistent reads - u 132 0.2 0.1
db block changes 26,458,423 29,294.7 9,828.5
db block gets 33,038,619 36,580.3 12,272.9
db block gets direct 0 0.0 0.0
db block gets from cache 33,038,619 36,580.3 12,272.9
db block gets from cache (fastpa 9,655,298 10,690.3 3,586.7
deferred (CURRENT) block cleanou 531,831 588.8 197.6
dirty buffers inspected 0 0.0 0.0
enqueue conversions 215 0.2 0.1
enqueue releases 463,025 512.7 172.0
enqueue requests 463,023 512.7 172.0
enqueue timeouts 0 0.0 0.0
enqueue waits 6 0.0 0.0
execute count 159,673 176.8 59.3
failed probes on index block rec 0 0.0 0.0
file io wait time 12,371,422 13,697.6 4,595.6
free buffer inspected 288,485 319.4 107.2
free buffer requested 430,105 476.2 159.8
heap block compress 1,291 1.4 0.5
hot buffers moved to head of LRU 35,303 39.1 13.1
immediate (CR) block cleanout ap 1 0.0 0.0
immediate (CURRENT) block cleano 121,621 134.7 45.2
index crx upgrade (positioned) 1,382 1.5 0.5
index crx upgrade (prefetch) 0 0.0 0.0
index fast full scans (direct re 0 0.0 0.0
index fast full scans (full) 7 0.0 0.0
index fast full scans (rowid ran 0 0.0 0.0
index fetch by key 202,696 224.4 75.3
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 887-888
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
index scans kdiixs1 11,491 12.7 4.3
leaf node 90-10 splits 11,340 12.6 4.2
leaf node splits 43,172 47.8 16.0
lob reads 53,262 59.0 19.8
lob writes 45,233 50.1 16.8
lob writes unaligned 45,233 50.1 16.8
logons cumulative 64 0.1 0.0
max cf enq hold time 0 0.0 0.0
messages received 30,095 33.3 11.2
messages sent 30,095 33.3 11.2
min active SCN optimization appl 0 0.0 0.0
no work - consistent read gets 32,734 36.2 12.2
non-idle wait count 187,977 208.1 69.8
non-idle wait time 4,664 5.2 1.7
opened cursors cumulative 130,557 144.6 48.5
parse count (describe) 0 0.0 0.0
parse count (failures) 2 0.0 0.0
parse count (hard) 1,077 1.2 0.4
parse count (total) 128,869 142.7 47.9
parse time cpu 263 0.3 0.1
parse time elapsed 248 0.3 0.1
physical read IO requests 146 0.2 0.1
physical read bytes 1,245,184 1,378.7 462.6
physical read total IO requests 1,598 1.8 0.6
physical read total bytes 25,035,776 27,719.6 9,300.1
physical read total multi block 0 0.0 0.0
physical reads 152 0.2 0.1
physical reads cache 120 0.1 0.0
physical reads cache prefetch 6 0.0 0.0
physical reads direct 32 0.0 0.0
physical reads direct (lob) 32 0.0 0.0
physical reads direct temporary 0 0.0 0.0
physical reads prefetch warmup 0 0.0 0.0
physical write IO requests 21,330 23.6 7.9
physical write bytes 2,485,936,128 2,752,426.0 923,453.2
physical write total IO requests 35,371 39.2 13.1
physical write total bytes 7,890,747,904 8,736,628.3 2,931,184.2
physical write total multi block 24,660 27.3 9.2
physical writes 303,459 336.0 112.7
physical writes direct 0 0.0 0.0
physical writes direct (lob) 0 0.0 0.0
physical writes direct temporary 0 0.0 0.0
physical writes from cache 303,459 336.0 112.7
physical writes non checkpoint 297,468 329.4 110.5
pinned buffers inspected 0 0.0 0.0
pinned cursors current 1 0.0 0.0
prefetch warmup blocks aged out 0 0.0 0.0
prefetched blocks aged out befor 12 0.0 0.0
process last non-idle time 86 0.1 0.0
queries parallelized 0 0.0 0.0
recursive calls 1,768,927 1,958.6 657.1
recursive cpu usage 2,712 3.0 1.0
redo blocks checksummed by FG (e 3,013,561 3,336.6 1,119.5
redo blocks written 10,527,471 11,656.0 3,910.7
redo buffer allocation retries 1 0.0 0.0
redo entries 13,223,411 14,641.0 4,912.1
redo log space requests 0 0.0 0.0
redo log space wait time 0 0.0 0.0
redo ordering marks 251,773 278.8 93.5
redo size 5,213,278,116 5,772,136.4 1,936,581.8
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 887-888
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
redo size for direct writes 0 0.0 0.0
redo subscn max counts 393,645 435.8 146.2
redo synch time 179 0.2 0.1
redo synch writes 2,769 3.1 1.0
redo wastage 2,265,544 2,508.4 841.6
redo write time 2,751 3.1 1.0
redo writes 8,676 9.6 3.2
rollback changes - undo records 279 0.3 0.1
rollbacks only - consistent read 81 0.1 0.0
root node splits 4 0.0 0.0
rows fetched via callback 68,672 76.0 25.5
scheduler wait time 0 0.0 0.0
session connect time 0 0.0 0.0
session cursor cache hits 64,179 71.1 23.8
session logical reads 33,631,578 37,236.9 12,493.2
shared hash latch upgrades - no 4,624 5.1 1.7
shared hash latch upgrades - wai 0 0.0 0.0
sorts (disk) 0 0.0 0.0
sorts (memory) 4,198 4.7 1.6
sorts (rows) 16,980 18.8 6.3
sql area evicted 826 0.9 0.3
sql area purged 3 0.0 0.0
summed dirty queue length 0 0.0 0.0
switch current to new buffer 1,998 2.2 0.7
table fetch by rowid 153,810 170.3 57.1
table fetch continued row 34 0.0 0.0
table scan blocks gotten 12,787 14.2 4.8
table scan rows gotten 753,894 834.7 280.1
table scans (direct read) 0 0.0 0.0
table scans (long tables) 0 0.0 0.0
table scans (short tables) 2,012 2.2 0.8
temp space allocated (bytes) 3,145,728 3,483.0 1,168.6
total cf enq hold time 15 0.0 0.0
total number of cf enq holders 48 0.1 0.0
total number of slots 0 0.0 0.0
total number of times SMON poste 0 0.0 0.0
transaction rollbacks 137 0.2 0.1
undo change vector size 1,429,630,352 1,582,885.3 531,066.3
user I/O wait time 8 0.0 0.0
user calls 33,733 37.4 12.5
user commits 2,692 3.0 1.0
user rollbacks 0 0.0 0.0
workarea executions - onepass 0 0.0 0.0
workarea executions - optimal 2,529 2.8 0.9
write clones created in backgrou 9 0.0 0.0
write clones created in foregrou 1 0.0 0.0
-------------------------------------------------------------
Instance Activity Stats - Absolute Values DB/Inst: GLDB/gldb Snaps: 887-888
-> Statistics with absolute values (should not be diffed)
Statistic Begin Value End Value
-------------------------------- --------------- ---------------
session uga memory max 6,215,792,000 6,282,197,408
session pga memory 3,688,400,216 3,722,394,088
session pga memory max 4,339,629,704 4,486,148,888
session cursor cache count 117,577 118,795
session uga memory 7.267468512E+12 7.340489002E+12
opened cursors current 182 190
logons current 39 36
-------------------------------------------------------------
Instance Activity Stats - Thread Activity DB/Inst: GLDB/gldb Snaps: 887-888
-> Statistics identified by '(derived)' come from sources other than SYSSTAT
Statistic Total per Hour
-------------------------------- ------------------ ---------
log switches (derived) 1 3.99
-------------------------------------------------------------
IOStat by Function summary DB/Inst: GLDB/gldb Snaps: 887-888
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Function Name Data per sec per sec Data per sec per sec Count Tm(ms)
--------------- ------- ------- ------- ------- ------- ------- ------- -------
LGWR 0M 0.0 0M 5G 14.6 5.69653 36 0.4
DBWR 0M 0.0 0M 2.3G 23.6 2.62627 0 N/A
Others 23M 1.6 .025465 14M 1.0 .015500 1868 0.4
Buffer Cache Re 1M 0.1 .001107 0M 0.0 0M 124 0.3
Direct Reads 0M 0.0 0M 0M 0.0 0M 0 N/A
TOTAL: 24M 1.8 .026572 7.4G 39.2 8.33831 2028 0.4
-------------------------------------------------------------
IOStat by Filetype summary DB/Inst: GLDB/gldb Snaps: 887-888
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Small Read and Large Read are average service times, in milliseconds
-> Ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Small Large
Filetype Name Data per sec per sec Data per sec per sec Read Read
--------------- ------- ------- ------- ------- ------- ------- ------- -------
Log File 0M 0.0 0M 5G 14.6 5.69653 0.0 N/A
Data File 1M 0.2 .001107 2.3G 23.6 2.62406 0.4 N/A
Control File 22M 1.6 .024358 14M 1.0 .015500 0.1 N/A
TOTAL: 23M 1.8 .025465 7.4G 39.2 8.33610 0.1 N/A
-------------------------------------------------------------
IOStat by Function/Filetype summary DB/Inst: GLDB/gldb Snaps: 887-888
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Ordered by (Data Read + Write) desc for each function
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Data per sec per sec Data per sec per sec Count Tm(ms)
------- ------- ------- ------- ------- ------- ------- -------
LGWR
0M 0.0 0M 5G 14.6 5.69653 26 0.0
LGWR (Log File)
0M 0.0 0M 5G 14.6 5.69653 4 0.0
LGWR (Control File)
0M 0.0 0M 0M 0.0 0M 22 0.0
DBWR
0M 0.0 0M 2.3G 23.6 2.62627 0 N/A
DBWR (Data File)
0M 0.0 0M 2.3G 23.6 2.62627 0 N/A
Others
22M 1.6 .024358 14M 1.0 .015500 1428 0.1
Others (Control File)
22M 1.6 .024358 14M 1.0 .015500 1422 0.1
Others (Data File)
0M 0.0 0M 0M 0.0 0M 6 0.0
Buffer Cache Reads
1M 0.1 .001107 0M 0.0 0M 124 0.3
Buffer Cache Reads (Data File)
1M 0.1 .001107 0M 0.0 0M 124 0.3
Direct Reads
0M 0.0 0M 0M 0.0 0M 0 N/A
Direct Reads (Data File)
0M 0.0 0M 0M 0.0 0M 0 N/A
TOTAL:
23M 1.8 .025465 7.4G 39.2 8.33831 1578 0.1
-------------------------------------------------------------
Tablespace IO Stats DB/Inst: GLDB/gldb Snaps: 887-888
-> ordered by IOs (Reads + Writes) desc
Tablespace
------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
GLCOMM
18 0 1.1 1.0 10,847 12 0 0.0
UNDOTBS1
0 0 0.0 .0 10,032 11 0 0.0
SYSAUX
54 0 0.0 1.1 401 0 0 0.0
SYSTEM
61 0 0.3 1.0 50 0 0 0.0
-------------------------------------------------------------
File IO Stats DB/Inst: GLDB/gldb Snaps: 887-888
-> ordered by Tablespace, File
Tablespace Filename
------------------------ ----------------------------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
GLCOMM D:\ORACLE\ORADATA\GLDB\GLCOMM01.DBF
18 0 1.1 1.0 10,847 12 0 0.0
SYSAUX D:\ORACLE\ORADATA\GLDB\SYSAUX01.DBF
54 0 0.0 1.1 401 0 0 0.0
SYSTEM D:\ORACLE\ORADATA\GLDB\SYSTEM01.DBF
61 0 0.3 1.0 50 0 0 0.0
UNDOTBS1 D:\ORACLE\ORADATA\GLDB\UNDOTBS01.DBF
0 0 N/A N/A 10,032 11 0 0.0
-------------------------------------------------------------
Buffer Pool Statistics DB/Inst: GLDB/gldb Snaps: 887-888
-> Standard block size Pools D: default, K: keep, R: recycle
-> Default Pools for other block sizes: 2k, 4k, 8k, 16k, 32k
Free Writ Buffer
Number of Pool Buffer Physical Physical Buff Comp Busy
P Buffers Hit% Gets Reads Writes Wait Wait Waits
--- ---------- ---- ------------ ------------ ----------- ------ ------ --------
D 281,710 100 33,630,939 118 303,459 0 0 0
-------------------------------------------------------------
Checkpoint Activity DB/Inst: GLDB/gldb Snaps: 887-888
-> Total Physical Writes: 303,459
Other Autotune Thread
MTTR Log Size Log Ckpt Settings Ckpt Ckpt
Writes Writes Writes Writes Writes Writes
----------- ----------- ----------- ----------- ----------- -----------
0 0 0 0 303,315 0
-------------------------------------------------------------
Instance Recovery Stats DB/Inst: GLDB/gldb Snaps: 887-888
-> B: Begin Snapshot, E: End Snapshot
Estd
Targt Estd Log Ckpt Log Ckpt Opt RAC
MTTR MTTR Recovery Actual Target Log Sz Timeout Interval Log Avail
(s) (s) Estd IOs RedoBlks RedoBlks RedoBlks RedoBlks RedoBlks Sz(M) Time
- ----- ----- -------- -------- -------- -------- -------- -------- ------ -----
B 0 32 44774 1234438 1639825 1.66E+07 1639825 N/A N/A N/A
E 0 120 148961 3803160 1.21E+07 1.66E+07 1.21E+07 N/A N/A N/A
-------------------------------------------------------------
MTTR Advisory DB/Inst: GLDB/gldb Snap: 888
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Pool Advisory DB/Inst: GLDB/gldb Snap: 888
-> Only rows with estimated physical reads >0 are displayed
-> ordered by Block Size, Buffers For Estimate
Est
Phys Estimated Est
Size for Size Buffers Read Phys Reads Est Phys %DBtime
P Est (M) Factor (thousands) Factor (thousands) Read Time for Rds
--- -------- ------ ------------ ------ -------------- ------------ -------
D 224 .1 28 1.2 1,651 1 180.0
D 448 .2 55 1.2 1,597 1 162.0
D 672 .3 83 1.1 1,486 1 126.0
D 896 .4 110 1.1 1,463 1 118.0
D 1,120 .5 138 1.1 1,453 1 115.0
D 1,344 .6 165 1.0 1,434 1 109.0
D 1,568 .7 193 1.0 1,426 1 106.0
D 1,792 .8 221 1.0 1,406 1 100.0
D 2,016 .9 248 1.0 1,388 1 94.0
D 2,240 1.0 276 1.0 1,371 1 89.0
D 2,288 1.0 282 1.0 1,369 1 88.0
D 2,464 1.1 303 1.0 1,362 1 86.0
D 2,688 1.2 331 1.0 1,355 1 83.0
D 2,912 1.3 359 1.0 1,348 1 81.0
D 3,136 1.4 386 1.0 1,341 1 79.0
D 3,360 1.5 414 1.0 1,335 1 77.0
D 3,584 1.6 441 0.9 1,300 1 75.0
D 3,808 1.7 469 0.9 1,270 1 75.0
D 4,032 1.8 496 0.9 1,248 1 75.0
D 4,256 1.9 524 0.9 1,230 1 75.0
D 4,480 2.0 552 0.9 1,217 1 75.0
-------------------------------------------------------------
PGA Aggr Summary DB/Inst: GLDB/gldb Snaps: 887-888
-> PGA cache hit % - percentage of W/A (WorkArea) data processed only in-memory
PGA Cache Hit % W/A MB Processed Extra W/A MB Read/Written
--------------- ------------------ --------------------------
100.0 133 0
-------------------------------------------------------------
PGA Aggr Target Stats DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
PGA Aggr Target Histogram DB/Inst: GLDB/gldb Snaps: 887-888
-> Optimal Executions are purely in-memory operations
Low High
Optimal Optimal Total Execs Optimal Execs 1-Pass Execs M-Pass Execs
------- ------- -------------- -------------- ------------ ------------
2K 4K 2,383 2,383 0 0
64K 128K 2 2 0 0
512K 1024K 137 137 0 0
1M 2M 5 5 0 0
4M 8M 2 2 0 0
-------------------------------------------------------------
PGA Memory Advisory DB/Inst: GLDB/gldb Snap: 888
-> When using Auto Memory Mgmt, minimally choose a pga_aggregate_target value
where Estd PGA Overalloc Count is 0
Estd Extra Estd P Estd PGA
PGA Target Size W/A MB W/A MB Read/ Cache Overallo Estd
Est (MB) Factr Processed Written to Disk Hit % Count Time
---------- ------- ---------------- ---------------- ------ -------- -------
246 0.1 6,079.5 447.2 93.0 0 2.0E+05
492 0.3 6,079.5 447.2 93.0 0 2.0E+05
984 0.5 6,079.5 279.5 96.0 0 1.9E+05
1,476 0.8 6,079.5 279.5 96.0 0 1.9E+05
1,968 1.0 6,079.5 279.5 96.0 0 1.9E+05
2,362 1.2 6,079.5 279.5 96.0 0 1.9E+05
2,755 1.4 6,079.5 279.5 96.0 0 1.9E+05
3,149 1.6 6,079.5 279.5 96.0 0 1.9E+05
3,542 1.8 6,079.5 279.5 96.0 0 1.9E+05
3,936 2.0 6,079.5 279.5 96.0 0 1.9E+05
5,904 3.0 6,079.5 279.5 96.0 0 1.9E+05
7,872 4.0 6,079.5 279.5 96.0 0 1.9E+05
11,808 6.0 6,079.5 279.5 96.0 0 1.9E+05
15,744 8.0 6,079.5 279.5 96.0 0 1.9E+05
-------------------------------------------------------------
Shared Pool Advisory DB/Inst: GLDB/gldb Snap: 888
-> SP: Shared Pool Est LC: Estimated Library Cache Factr: Factor
-> Note there is often a 1:Many correlation between a single logical object
in the Library Cache, and the physical number of memory objects associated
with it. Therefore comparing the number of Lib Cache objects (e.g. in
v$librarycache), with the number of Lib Cache Memory Objects is invalid.
Est LC Est LC Est LC Est LC
Shared SP Est LC Time Time Load Load Est LC
Pool Size Size Est LC Saved Saved Time Time Mem Obj
Size(M) Factr (M) Mem Obj (s) Factr (s) Factr Hits (K)
-------- ----- -------- ------------ -------- ------ ------- ------ ------------
336 .6 11 948 11,779 1.0 921 1.1 2,290
400 .7 76 5,848 11,793 1.0 907 1.1 12,980
464 .8 139 8,580 11,857 1.0 843 1.0 12,990
528 .9 202 11,421 11,863 1.0 837 1.0 12,991
592 1.0 266 14,238 11,865 1.0 835 1.0 12,992
656 1.1 330 17,160 11,868 1.0 832 1.0 12,992
720 1.2 394 20,091 11,868 1.0 832 1.0 12,992
784 1.3 458 22,372 11,869 1.0 831 1.0 12,993
848 1.4 522 24,713 11,869 1.0 831 1.0 12,993
912 1.5 579 26,924 11,869 1.0 831 1.0 12,993
976 1.6 599 27,950 11,869 1.0 831 1.0 12,993
1,040 1.8 599 27,950 11,869 1.0 831 1.0 12,993
1,104 1.9 599 27,950 11,869 1.0 831 1.0 12,993
1,168 2.0 599 27,950 11,869 1.0 831 1.0 12,993
1,232 2.1 599 27,950 11,869 1.0 831 1.0 12,993
-------------------------------------------------------------
SGA Target Advisory DB/Inst: GLDB/gldb Snap: 888
SGA Target SGA Size Est DB Est Physical
Size (M) Factor Time (s) Reads
---------- ---------- ------------ ----------------
736 0.3 3,358 1,651,567
1,472 0.5 3,226 1,463,208
2,208 0.8 3,211 1,434,187
2,944 1.0 3,191 1,368,891
3,680 1.3 3,184 1,347,810
4,416 1.5 3,177 1,299,899
5,152 1.8 3,177 1,247,470
5,888 2.0 3,177 1,217,081
-------------------------------------------------------------
Streams Pool Advisory DB/Inst: GLDB/gldb Snap: 888
No data exists for this section of the report.
-------------------------------------------------------------
Java Pool Advisory DB/Inst: GLDB/gldb Snap: 888
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Wait Statistics DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Enqueue Activity DB/Inst: GLDB/gldb Snaps: 887-888
-> only enqueues with waits are shown
-> Enqueue stats gathered prior to 10g should not be compared with 10g data
-> ordered by Wait Time desc, Waits desc
Enqueue Type (Request Reason)
------------------------------------------------------------------------------
Requests Succ Gets Failed Gets Waits Wt Time (s) Av Wt Time(ms)
------------ ------------ ----------- ----------- ------------ --------------
RO-Multiple Object Reuse (fast object reuse)
54 54 0 6 0 23.50
-------------------------------------------------------------
Undo Segment Summary DB/Inst: GLDB/gldb Snaps: 887-888
-> Min/Max TR (mins) - Min and Max Tuned Retention (minutes)
-> STO - Snapshot Too Old count, OOS - Out of Space count
-> Undo segment block stats:
-> uS - unexpired Stolen, your - unexpired Released, uU - unexpired reUsed
-> eS - expired Stolen, eR - expired Released, eU - expired reUsed
Undo Num Undo Number of Max Qry Max Tx Min/Max STO/ uS/uR/uU/
TS# Blocks (K) Transactions Len (s) Concurcy TR (mins) OOS eS/eR/eU
---- ---------- --------------- -------- -------- --------- ----- --------------
2 111.2 93,682 1,178 4 31.7/31.7 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Undo Segment Stats DB/Inst: GLDB/gldb Snaps: 887-888
-> Most recent 35 Undostat rows, ordered by Time desc
Num Undo Number of Max Qry Max Tx Tun Ret STO/ uS/uR/uU/
End Time Blocks Transactions Len (s) Concy (mins) OOS eS/eR/eU
------------ ----------- ------------ ------- ------- ------- ----- ------------
17-Oct 10:38 111,190 93,682 1,178 4 32 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Latch Activity DB/Inst: GLDB/gldb Snaps: 887-888
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
AQ deq hash table latch 1 0.0 0 0 N/A
AQ dequeue txn counter l 780 0.0 0 0 N/A
ASM db client latch 612 0.0 0 0 N/A
ASM map operation hash t 1 0.0 0 0 N/A
ASM network state latch 15 0.0 0 0 N/A
AWR Alerted Metric Eleme 6,453 0.0 0 0 N/A
Change Notification Hash 300 0.0 0 0 N/A
Consistent RBA 8,684 0.0 0.0 0 0 N/A
DML lock allocation 268,752 0.0 0 0 N/A
Event Group Locks 48 0.0 0 0 N/A
FOB s.o list latch 138 0.0 0 0 N/A
File State Object Pool P 1 0.0 0 0 N/A
IPC stats buffer allocat 1 0.0 0 0 N/A
In memory undo latch 69,564 0.0 0 3,426 0.0
JS Sh mem access 3 0.0 0 0 N/A
JS broadcast autostart l 17 0.0 0 0 N/A
JS mem alloc latch 1 0.0 0 0 N/A
JS queue access latch 2 0.0 0 0 N/A
JS queue state obj latch 6,516 0.0 0 0 N/A
KFC FX Hash Latch 1 0.0 0 0 N/A
KFC Hash Latch 1 0.0 0 0 N/A
KFCL LE Freelist 1 0.0 0 0 N/A
KGNFS-NFS:SHM structure 1 0.0 0 0 N/A
KGNFS-NFS:SVR LIST 1 0.0 0 0 N/A
KJC message pool free li 1 0.0 0 0 N/A
KJCT flow control latch 1 0.0 0 0 N/A
KMG MMAN ready and start 300 0.0 0 0 N/A
KTF sga latch 5 0.0 0 301 0.0
KWQMN job cache list lat 5 0.0 0 0 N/A
KWQS pqueue ctx latch 10 0.0 0 0 N/A
Locator state objects po 1 0.0 0 0 N/A
Lsod array latch 1 0.0 0 0 N/A
MQL Tracking Latch 0 N/A 0 17 0.0
Memory Management Latch 1 0.0 0 300 0.0
Memory Queue 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Subscriber 1 0.0 0 0 N/A
MinActiveScn Latch 5 0.0 0 0 N/A
Mutex 1 0.0 0 0 N/A
Mutex Stats 1 0.0 0 0 N/A
OS process 349 0.0 0 0 N/A
OS process allocation 529 0.0 0 0 N/A
OS process: request allo 97 0.0 0 0 N/A
PL/SQL warning settings 576 0.0 0 0 N/A
PX hash array latch 1 0.0 0 0 N/A
QMT 1 0.0 0 0 N/A
Real-time plan statistic 496 0.0 0 0 N/A
SGA IO buffer pool latch 2 0.0 0 2 0.0
SGA blob parent 1 0.0 0 0 N/A
SGA bucket locks 1 0.0 0 0 N/A
SGA heap locks 1 0.0 0 0 N/A
SGA pool locks 1 0.0 0 0 N/A
SQL memory manager latch 31 0.0 0 300 0.0
SQL memory manager worka 21,748 0.0 0 0 N/A
Shared B-Tree 79 0.0 0 0 N/A
Streams Generic 1 0.0 0 0 N/A
Testing 1 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 887-888
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
Token Manager 1 0.0 0 0 N/A
WCR: sync 1 0.0 0 0 N/A
Write State Object Pool 1 0.0 0 0 N/A
X$KSFQP 1 0.0 0 0 N/A
XDB NFS Security Latch 1 0.0 0 0 N/A
XDB unused session pool 1 0.0 0 0 N/A
XDB used session pool 1 0.0 0 0 N/A
active checkpoint queue 21,690 0.0 0 0 N/A
active service list 2,123 0.1 0.0 0 1,094 0.0
buffer pool 1 0.0 0 0 N/A
business card 1 0.0 0 0 N/A
cache buffer handles 3,888 0.0 0 0 N/A
cache buffers chains 127,740,764 0.0 0.0 0 412,763 0.0
cache buffers lru chain 307,553 0.0 0.0 0 942,575 0.0
cache table scan latch 2 0.0 0 2 0.0
call allocation 761 0.3 0.0 0 0 N/A
cas latch 1 0.0 0 0 N/A
change notification clie 1 0.0 0 0 N/A
channel handle pool latc 101 0.0 0 0 N/A
channel operations paren 5,704 0.0 0 0 N/A
checkpoint queue latch 534,757 0.0 0.0 0 407,451 0.0
client/application info 1,295 0.0 0 0 N/A
compile environment latc 64 0.0 0 0 N/A
corrupted undo seg latch 974 0.0 0 0 N/A
cp cmon/server latch 1 0.0 0 0 N/A
cp pool latch 1 0.0 0 0 N/A
cp server hash latch 1 0.0 0 0 N/A
cp sga latch 15 0.0 0 0 N/A
cvmap freelist lock 1 0.0 0 0 N/A
deferred cleanup latch 15 0.0 0 0 N/A
dml lock allocation 15 0.0 0 0 N/A
done queue latch 1 0.0 0 0 N/A
dummy allocation 132 0.0 0 0 N/A
enqueue hash chains 926,282 0.0 0.0 0 0 N/A
enqueues 93,287 0.0 0.0 0 0 N/A
fifth spare latch 1 0.0 0 0 N/A
file cache latch 1,831 0.0 0 0 N/A
flashback copy 1 0.0 0 0 N/A
gc element 1 0.0 0 0 N/A
gcs commit scn state 1 0.0 0 0 N/A
gcs partitioned table ha 1 0.0 0 0 N/A
gcs pcm hashed value buc 1 0.0 0 0 N/A
gcs resource freelist 1 0.0 0 0 N/A
gcs resource hash 1 0.0 0 0 N/A
gcs resource scan list 1 0.0 0 0 N/A
gcs shadows freelist 1 0.0 0 0 N/A
ges domain table 1 0.0 0 0 N/A
ges enqueue table freeli 1 0.0 0 0 N/A
ges group table 1 0.0 0 0 N/A
ges process hash list 1 0.0 0 0 N/A
ges process parent latch 1 0.0 0 0 N/A
ges resource hash list 1 0.0 0 0 N/A
ges resource scan list 1 0.0 0 0 N/A
ges resource table freel 1 0.0 0 0 N/A
ges value block free lis 1 0.0 0 0 N/A
global KZLD latch for me 14 0.0 0 0 N/A
global ctx hash table la 1 0.0 0 0 N/A
global tx hash mapping 1 0.0 0 0 N/A
granule operation 1 0.0 0 0 N/A
hash table column usage 97 0.0 0 273,684 0.0
Latch Activity DB/Inst: GLDB/gldb Snaps: 887-888
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
hash table modification 6 0.0 0 0 N/A
heartbeat check 1 0.0 0 0 N/A
internal temp table obje 2 0.0 0 0 N/A
intra txn parallel recov 1 0.0 0 0 N/A
io pool granule metadata 1 0.0 0 0 N/A
job workq parent latch 18 0.0 0 17 0.0
job_queue_processes free 34 0.0 0 0 N/A
job_queue_processes para 213 0.0 0 0 N/A
k2q lock allocation 1 0.0 0 0 N/A
kcbtsemkid latch 1 0.0 0 0 N/A
kdlx hb parent latch 1 0.0 0 0 N/A
kgb parent 1 0.0 0 0 N/A
kks stats 5,596 0.0 0 0 N/A
kokc descriptor allocati 220 0.0 0 0 N/A
ksfv messages 1 0.0 0 0 N/A
kss move lock 11 0.0 0 0 N/A
ksuosstats global area 63 0.0 0 0 N/A
ksv allocation latch 35 0.0 0 0 N/A
ksv class latch 21 0.0 0 0 N/A
ksv msg queue latch 1 0.0 0 0 N/A
ksz_so allocation latch 97 0.0 0 0 N/A
ktm global data 5 0.0 0 0 N/A
kwqbsn:qsga 45 0.0 0 0 N/A
lgwr LWN SCN 8,696 0.2 0.0 0 0 N/A
list of block allocation 55,688 0.0 0 0 N/A
loader state object free 64 0.0 0 0 N/A
lob segment dispenser la 1 0.0 0 0 N/A
lob segment hash table l 3 0.0 0 0 N/A
lob segment query latch 1 0.0 0 0 N/A
lock DBA buffer during m 1 0.0 0 0 N/A
logical standby cache 1 0.0 0 0 N/A
logminer context allocat 1 0.0 0 0 N/A
logminer work area 1 0.0 0 0 N/A
longop free list parent 1 0.0 0 0 N/A
mapped buffers lru chain 1 0.0 0 0 N/A
message pool operations 73 0.0 0 0 N/A
messages 77,108 0.1 0.0 0 0 N/A
mostly latch-free SCN 8,795 1.0 0.0 0 0 N/A
msg queue latch 1 0.0 0 0 N/A
multiblock read objects 8 0.0 0 0 N/A
name-service namespace b 1 0.0 0 0 N/A
ncodef allocation latch 15 0.0 0 0 N/A
object queue header heap 86,781 0.0 0 1,363 0.0
object queue header oper 1,958,367 0.0 0.0 0 0 N/A
object stats modificatio 66 0.0 0 0 N/A
parallel query alloc buf 121 0.0 0 0 N/A
parallel query stats 1 0.0 0 0 N/A
parameter list 61 0.0 0 0 N/A
parameter table manageme 131 0.0 0 0 N/A
peshm 1 0.0 0 0 N/A
pesom_free_list 1 0.0 0 0 N/A
pesom_hash_node 1 0.0 0 0 N/A
post/wait queue 4,095 0.0 0 2,699 0.0
process allocation 130 0.0 0 47 0.0
process group creation 97 0.0 0 0 N/A
process queue 1 0.0 0 0 N/A
process queue reference 1 0.0 0 0 N/A
qmn task queue latch 136 0.0 0 0 N/A
query server freelists 1 0.0 0 0 N/A
queued dump request 3 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 887-888
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
queuing load statistics 1 0.0 0 0 N/A
recovery domain hash lis 1 0.0 0 0 N/A
redo allocation 33,356 0.4 0.0 0 13,223,072 0.0
redo copy 1 0.0 0 13,223,218 0.0
redo writing 48,579 0.0 0 0 N/A
resmgr group change latc 278 0.0 0 0 N/A
resmgr:active threads 134 0.0 0 0 N/A
resmgr:actses change gro 41 0.0 0 0 N/A
resmgr:actses change sta 3 0.0 0 0 N/A
resmgr:free threads list 131 1.5 0.0 0 0 N/A
resmgr:plan CPU method 1 0.0 0 0 N/A
resmgr:resource group CP 1 0.0 0 0 N/A
resmgr:schema config 11 0.0 0 0 N/A
resmgr:session queuing 1 0.0 0 0 N/A
rm cas latch 1 0.0 0 0 N/A
row cache objects 1,300,523 0.0 0 379 0.0
second spare latch 1 0.0 0 0 N/A
sequence cache 7,478,244 0.0 0 0 N/A
session allocation 83,326 0.0 0 27,773 0.0
session idle bit 95,176 0.0 0 0 N/A
session queue latch 1 0.0 0 0 N/A
session state list latch 122 0.0 0 0 N/A
session switching 266 0.0 0 0 N/A
session timer 319 0.0 0 0 N/A
shared pool 91,353 0.1 0.0 0 0 N/A
shared pool sim alloc 49 0.0 0 0 N/A
shared pool simulator 10,756 0.0 0 0 N/A
sim partition latch 1 0.0 0 0 N/A
simulator hash latch 1,469,694 0.0 0 0 N/A
simulator lru latch 147,860 0.0 0.0 0 1,274,516 0.0
sort extent pool 54 0.0 0 0 N/A
space background task la 673 0.0 0 600 0.0
state object free list 2 0.0 0 0 N/A
statistics aggregation 560 0.0 0 0 N/A
tablespace key chain 1 0.0 0 0 N/A
temp lob duration state 3 0.0 0 0 N/A
test excl. parent l0 1 0.0 0 0 N/A
test excl. parent2 l0 1 0.0 0 0 N/A
third spare latch 1 0.0 0 0 N/A
threshold alerts latch 42 0.0 0 0 N/A
transaction allocation 4,787 0.0 0 0 N/A
undo global data 972,086 0.0 0 0 N/A
virtual circuit buffers 1 0.0 0 0 N/A
virtual circuit holder 1 0.0 0 0 N/A
virtual circuit queues 1 0.0 0 0 N/A
-------------------------------------------------------------
Latch Sleep Breakdown DB/Inst: GLDB/gldb Snaps: 887-888
-> ordered by misses desc
Get Spin
Latch Name Requests Misses Sleeps Gets
-------------------------- --------------- ------------ ----------- -----------
messages 77,108 67 1 66
-------------------------------------------------------------
Latch Miss Sources DB/Inst: GLDB/gldb Snaps: 887-888
-> only latches with sleeps are shown
-> ordered by name, sleeps desc
NoWait Waiter
Latch Name Where Misses Sleeps Sleeps
------------------------ -------------------------- ------- ---------- --------
messages ksarcv 0 1 0
-------------------------------------------------------------
Mutex Sleep Summary DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Parent Latch Statistics DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Child Latch Statistics DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Logical Reads DB/Inst: GLDB/gldb Snaps: 887-888
-> Total Logical Reads: 33,631,578
-> Captured Segments account for 96.9% of Total
Tablespace Subobject Obj. Logical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 7,348,976 21.85
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 7,324,944 21.78
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 7,162,992 21.30
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 6,951,104 20.67
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 2,903,152 8.63
-------------------------------------------------------------
Segments by Physical Reads DB/Inst: GLDB/gldb Snaps: 887-888
-> Total Physical Reads: 152
-> Captured Segments account for 14.5% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.32
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.32
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.32
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.32
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.32
-------------------------------------------------------------
Segments by Physical Read Requests DB/Inst: GLDB/gldb Snaps: 887-888
-> Total Physical Read Requests: 146
-> Captured Segments account for 15.1% of Total
Tablespace Subobject Obj. Phys Read
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.37
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.37
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.37
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.37
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.37
-------------------------------------------------------------
Segments by UnOptimized Reads DB/Inst: GLDB/gldb Snaps: 887-888
-> Total UnOptimized Read Requests: 146
-> Captured Segments account for 15.1% of Total
Tablespace Subobject Obj. UnOptimized
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.37
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.37
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.37
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.37
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2 1.37
-------------------------------------------------------------
Segments by Optimized Reads DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Direct Physical Reads DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Physical Writes DB/Inst: GLDB/gldb Snaps: 887-888
-> Total Physical Writes: 303,459
-> Captured Segments account for 38.9% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Writes %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 83,421 27.49
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 15,364 5.06
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 11,681 3.85
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 4,061 1.34
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 3,074 1.01
-------------------------------------------------------------
Segments by Physical Write Requests DB/Inst: GLDB/gldb Snaps: 887-888
-> Total Physical Write Requestss: 21,330
-> Captured Segments account for 38.5% of Total
Tablespace Subobject Obj. Phys Write
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 5,689 26.67
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 1,014 4.75
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 826 3.87
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 266 1.25
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 207 .97
-------------------------------------------------------------
Segments by Direct Physical Writes DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Table Scans DB/Inst: GLDB/gldb Snaps: 887-888
-> Total Table Scans: 7
-> Captured Segments account for 71.4% of Total
Tablespace Subobject Obj. Table
Owner Name Object Name Name Type Scans %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSTEM I_OBJ2 INDEX 3 42.86
SYS SYSTEM I_OBJ1 INDEX 2 28.57
-------------------------------------------------------------
Segments by DB Blocks Changes DB/Inst: GLDB/gldb Snaps: 887-888
-> % of Capture shows % of DB Block Changes for each top segment compared
-> with total DB Block Changes for all segments captured by the Snapshot
Tablespace Subobject Obj. DB Block % of
Owner Name Object Name Name Type Changes Capture
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 2,990,256 22.24
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,641,376 19.65
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,587,664 19.25
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,474,816 18.41
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 2,460,016 18.30
-------------------------------------------------------------
Segments by Row Lock Waits DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Segments by ITL Waits DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Buffer Busy Waits DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Dictionary Cache Stats DB/Inst: GLDB/gldb Snaps: 887-888
-> "Pct Misses" should be very low (< 2% in most cases)
-> "Final Usage" is the number of cache entries being used
Get Pct Scan Pct Mod Final
Cache Requests Miss Reqs Miss Reqs Usage
------------------------- ------------ ------ ------- ----- -------- ----------
dc_awr_control 19 0.0 0 N/A 2 1
dc_global_oids 1,045 0.0 0 N/A 0 132
dc_histogram_data 22,622 0.1 0 N/A 0 3,899
dc_histogram_defs 33,496 0.3 0 N/A 0 6,105
dc_object_grants 142 0.0 0 N/A 0 200
dc_objects 17,217 0.0 0 N/A 6 3,795
dc_profiles 43 0.0 0 N/A 0 2
dc_rollback_segments 229 0.0 0 N/A 0 22
dc_segments 8,432 0.0 0 N/A 1,125 1,460
dc_sequences 120,615 0.0 0 N/A 120,615 13
dc_tablespaces 38,752 0.0 0 N/A 0 8
dc_users 44,244 0.0 0 N/A 0 184
global database name 653 0.0 0 N/A 0 1
outstanding_alerts 10 0.0 0 N/A 0 5
sch_lj_oids 1 0.0 0 N/A 0 14
-------------------------------------------------------------
Library Cache Activity DB/Inst: GLDB/gldb Snaps: 887-888
-> "Pct Misses" should be very low
Get Pct Pin Pct Invali-
Namespace Requests Miss Requests Miss Reloads dations
--------------- ------------ ------ -------------- ------ ---------- --------
APP CONTEXT 21 0.0 21 0.0 0 0
BODY 306 0.0 2,228 0.0 1 0
CLUSTER 132 0.0 30 0.0 0 0
DBLINK 29 0.0 0 N/A 0 0
EDITION 36 0.0 67 0.0 0 0
INDEX 220 1.8 155 2.6 0 0
QUEUE 1,982 0.0 2,400 0.0 0 0
SCHEMA 53 0.0 0 N/A 0 0
SQL AREA 3,731 69.9 288,870 1.0 85 11
SUBSCRIPTION 1 0.0 1 0.0 0 0
TABLE/PROCEDURE 5,369 0.1 2,423,207 0.0 116 0
TRIGGER 218 0.0 232 0.0 0 0
-------------------------------------------------------------
Memory Dynamic Components DB/Inst: GLDB/gldb Snaps: 887-888
-> Min/Max sizes since instance startup
-> Oper Types/Modes: INItializing,GROw,SHRink,STAtic/IMMediate,DEFerred
-> ordered by Component
Begin Snap Current Min Max Oper Last Op
Component Size (Mb) Size (Mb) Size (Mb) Size (Mb) Count Typ/Mod
--------------- ----------- ----------- ----------- ----------- ------ -------
ASM Buffer Cach .00 .00 .00 .00 0 STA/
DEFAULT 16K buf .00 .00 .00 .00 0 STA/
DEFAULT 2K buff .00 .00 .00 .00 0 STA/
DEFAULT 32K buf .00 .00 .00 .00 0 STA/
DEFAULT 4K buff .00 .00 .00 .00 0 STA/
DEFAULT 8K buff .00 .00 .00 .00 0 STA/
DEFAULT buffer 2,288.00 2,288.00 2,288.00 2,304.00 0 SHR/IMM
KEEP buffer cac .00 .00 .00 .00 0 STA/
PGA Target 1,968.00 1,968.00 1,968.00 1,968.00 0 STA/
RECYCLE buffer .00 .00 .00 .00 0 STA/
SGA Target 2,944.00 2,944.00 2,944.00 2,944.00 0 STA/
Shared IO Pool .00 .00 .00 .00 0 STA/
java pool 16.00 16.00 16.00 16.00 0 STA/
large pool 16.00 16.00 .00 16.00 0 GRO/IMM
shared pool 592.00 592.00 576.00 592.00 0 GRO/IMM
streams pool .00 .00 .00 .00 0 STA/
-------------------------------------------------------------
Memory Resize Operations Summary DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Memory Resize Ops DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Process Memory Summary DB/Inst: GLDB/gldb Snaps: 887-888
-> B: Begin Snap E: End Snap
-> All rows below contain absolute values (i.e. not diffed over the interval)
-> Max Alloc is Maximum PGA Allocation size at snapshot time
-> Hist Max Alloc is the Historical Max Allocation for still-connected processes
-> ordered by Begin/End snapshot, Alloc (MB) desc
Hist
Avg Std Dev Max Max
Alloc Used Alloc Alloc Alloc Alloc Num Num
Category (MB) (MB) (MB) (MB) (MB) (MB) Proc Alloc
- -------- --------- --------- -------- -------- ------- ------- ------ ------
B Other 77.6 N/A 1.9 1.7 9 25 41 41
Freeable 44.4 .0 1.9 4.3 21 N/A 23 23
PL/SQL 11.1 5.9 .3 .5 2 2 39 39
SQL 3.5 2.3 .1 .4 2 26 27 22
E Other 75.4 N/A 2.0 1.7 9 47 38 38
Freeable 44.6 .0 1.9 4.3 21 N/A 23 23
PL/SQL 13.2 6.8 .4 .6 2 3 36 36
SQL 3.4 1.7 .1 .5 2 93 25 20
-------------------------------------------------------------
SGA Memory Summary DB/Inst: GLDB/gldb Snaps: 887-888
End Size (Bytes)
SGA regions Begin Size (Bytes) (if different)
------------------------------ ------------------- -------------------
Database Buffers 2,399,141,888
Fixed Size 2,184,632
Redo Buffers 8,364,032
Variable Size 2,717,911,624
-------------------
sum 5,127,602,176
-------------------------------------------------------------
SGA breakdown difference DB/Inst: GLDB/gldb Snaps: 887-888
-> ordered by Pool, Name
-> N/A value for Begin MB or End MB indicates the size of that Pool/Name was
insignificant, or zero in that snapshot
Pool Name Begin MB End MB % Diff
------ ------------------------------ -------------- -------------- -------
java free memory 16.0 16.0 0.00
large PX msg pool 7.5 7.5 0.00
large free memory 8.5 8.5 0.00
shared ASH buffers 8.0 8.0 0.00
shared CCUR 41.5 41.7 0.59
shared FileOpenBlock 10.5 10.5 0.00
shared KGLH0 10.6 10.3 -2.84
shared KGLHD 17.7 17.5 -1.33
shared KGLS 14.9 15.2 1.73
shared PCUR 32.9 33.0 0.20
shared PLMCD 13.5 13.5 0.00
shared SQLA 218.6 210.7 -3.61
shared db_block_hash_buckets 22.3 22.3 0.00
shared free memory 98.1 106.6 8.66
shared row cache 7.2 7.2 0.00
buffer_cache 2,288.0 2,288.0 0.00
fixed_sga 2.1 2.1 0.00
log_buffer 8.0 8.0 0.00
-------------------------------------------------------------
Streams CPU/IO Usage DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture Rate DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply Rate DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queues DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queue Subscribers DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Rule Set DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues Rate DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queue Subscribers DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Resource Limit Stats DB/Inst: GLDB/gldb Snap: 888
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Activity DB/Inst: GLDB/gldb Snaps: 887-888
-> Values represent averages for all samples
Avg Total Avg Active Avg Total Avg Active Avg Total Avg Active
Connections Connections Shared Srvrs Shared Srvrs Dispatchers Dispatchers
------------ ------------ ------------ ------------ ------------ ------------
0 0 1 0 1 0
-------------------------------------------------------------
Shared Servers Rates DB/Inst: GLDB/gldb Snaps: 887-888
Common Disp Common Disp Server
Queue Queue Server Server Queue Queue Total Server
Per Sec Per Sec Msgs/Sec KB/Sec Total Total Msgs Total(KB)
-------- -------- -------- --------- ---------- ---------- ---------- ----------
0 0 0 0.0 0 0 0 0
-------------------------------------------------------------
Shared Servers Utilization DB/Inst: GLDB/gldb Snaps: 887-888
-> Statistics are combined for all servers
-> Incoming and Outgoing Net % are included in %Busy
Total Server Incoming Outgoing
Time (s) %Busy %Idle Net % Net %
-------------- -------- -------- --------- ---------
903 0.0 100.0 0.0 0.0
-------------------------------------------------------------
Shared Servers Common Queue DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Dispatchers DB/Inst: GLDB/gldb Snaps: 887-888
-> Ordered by %Busy, descending
-> Total Queued, Total Queue Wait and Avg Queue Wait are for dispatcher queue
-> Name suffixes:
"(N)" - dispatcher started between begin and end snapshots
"(R)" - dispatcher re-started between begin and end snapshots
Avg Total Disp Total Total Queue Avg Queue
Name Conns Time (s) %Busy %Idle Queued Wait (s) Wait (ms)
------- --------- ---------- -------- -------- ---------- ----------- ----------
D000 0.0 903 0.0 100.0 0 0
-------------------------------------------------------------
init.ora Parameters DB/Inst: GLDB/gldb Snaps: 887-888
-> if IP/Public/Source at End snap is different a '*' is displayed
End value
Parameter Name Begin value (if different)
----------------------------- --------------------------------- --------------
audit_file_dest D:\ORACLE\ADMIN\GLDB\ADUMP
audit_trail DB
compatible 11.2.0.0.0
control_files D:\ORACLE\FLASH_RECOVERY_AREA\GLD
db_block_size 8192
db_domain
db_name gldb
db_recovery_file_dest D:\Oracle\flash_recovery_area
db_recovery_file_dest_size 4102029312
diagnostic_dest D:\ORACLE
dispatchers (PROTOCOL=TCP) (SERVICE=gldbXDB)
memory_target 5150605312
open_cursors 300
processes 150
remote_login_passwordfile EXCLUSIVE
undo_tablespace UNDOTBS1
-------------------------------------------------------------
Dynamic Remastering Stats DB/Inst: GLDB/gldb Snaps: 887-888
No data exists for this section of the report.
-------------------------------------------------------------
End of Report
AWRSQLRPT 801-802 (50M REDO LOG FILES)
Toggle Spoiler
WORKLOAD REPOSITORY SQL Report
Snapshot Period Summary
DB Name DB Id Instance Inst Num Startup Time Release RAC
------------ ----------- ------------ -------- --------------- ----------- ---
GLDB 2907699466 gldb 1 16-Oct-12 10:08 11.2.0.1.0 NO
Snap Id Snap Time Sessions Curs/Sess
--------- ------------------- -------- ---------
Begin Snap: 801 16-Oct-12 13:00:02 38 3.5
End Snap: 802 16-Oct-12 13:15:05 38 3.5
Elapsed: 15.05 (mins)
DB Time: 5.41 (mins)
SQL Summary DB/Inst: GLDB/gldb Snaps: 801-802
Elapsed
SQL Id Time (ms)
------------- ----------
7k1usds2tau95 311,924
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
-------------------------------------------------------------
SQL ID: 7k1usds2tau95 DB/Inst: GLDB/gldb Snaps: 801-802
-> 1st Capture and Last Capture Snap IDs
refer to Snapshot IDs witin the snapshot range
-> INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSum...
Plan Hash Total Elapsed 1st Capture Last Capture
# Value Time(ms) Executions Snap ID Snap ID
--- ---------------- ---------------- ------------- ------------- --------------
1 1207092900 311,924 2,2602 802 802
-------------------------------------------------------------
Plan 1(PHV: 1207092900)
-----------------------
Plan Statistics DB/Inst: GLDB/gldb Snaps: 801-802
-> % Total DB Time is the Elapsed Time of the SQL statement divided
into the Total Database Time multiplied by 100
Stat Name Statement Per Execution % Snap
---------------------------------------- ---------- -------------- -------
Elapsed Time (ms) 311,924 13.8 96.2
CPU Time (ms) 158,762 7.0 98.3
Executions 22,602 N/A N/A
Buffer Gets 3.1309E+07 1,385.2 99.9
Disk Reads 8 0.0 1.0
Parse Calls 0 0.0 0.0
Rows 2,254,901 99.8 N/A
User I/O Wait Time (ms) 6 N/A N/A
Cluster Wait Time (ms) 0 N/A N/A
Application Wait Time (ms) 0 N/A N/A
Concurrency Wait Time (ms) 0 N/A N/A
Invalidations 0 N/A N/A
Version Count 1 N/A N/A
Sharable Mem(KB) 95 N/A N/A
-------------------------------------------------------------
Execution Plan
----------------------------------------------------------------------
| Id | Operation | Name | Cost |
----------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 |
| 1 | LOAD TABLE CONVENTIONAL | | |
| 2 | SEQUENCE | GLS_PROT_TRAFFIC_SUM_VOIP | |
----------------------------------------------------------------------
Note
-----
- cpu costing is off (consider enabling it)
Full SQL Text
SQL ID SQL Text
------------ -----------------------------------------------------------------
7k1usds2tau9 INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( traff
ficSumID, probeName, callingNumber, calledNumber, callID, startTi
me, duration, callSuccess, failureCause, postDialDelay, sessionDi
sconnectDelay, rtporiginationIPAddress, rtpdestinationIPAddress,
siporiginationIPAddress, sipdestinationIPAddress, ErrorCode, Prot
ocolTYpe, packetCount1, payload1, totalPacketCount1, missingPacke
tCount1, missingPacketPercentage1, DuplicatePacketCount1, Duplica
tePacketPercentage1, reorderedPacketCount1, reorderedPacketPercen
tage1, conversationalMos1, conversationalR1, listeningMos1, liste
ningR1, packetsDiscarded1, packetsDiscardedPercentage1, averageGa
p1, averageDelay1, averageJitter1, averageInterArrivalJitter1, Cu
mulativePacketLoss1, minGap1, maxGap1, minDelay1, maxDelay1, minJ
itter1, maxJitter1, minRtd1, maxRtd1, averageRtd1, packetCount2,
payload2, totalPacketCount2, missingPacketCount2, missingPacketPe
rcentage2, DuplicatePacketCount2, DuplicatePacketPercentage2, reo
rderedPacketCount2, reorderedPacketPercentage2, conversationalMos
2, conversationalR2, listeningMos2, listeningR2, packetsDiscarded
2, packetsDiscardedPercentage2, averageGap2, averageDelay2, avera
geJitter2, averageInterArrivalJitter2, CumulativePacketLoss2, min
Gap2, maxGap2, minDelay2, maxDelay2, minJitter2, maxJitter2, minR
td2, maxRtd2, averageRtd2, filename ) VALUES (GLS_PROT_TRAFFIC_SU
M_VOIP.NEXTVAL, :1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :12
, :13, :14, :15, :16, :17, :18, :19, :20, :21, :22, :23, :24, :25
, :26, :27, :28, :29, :30, :31, :32, :33, :34, :35, :36, :37, :38
, :39, :40, :41, :42, :43, :44, :45, :46, :47, :48, :49, :50, :51
, :52, :53, :54, :55, :56, :57, :58, :59, :60, :61, :62, :63, :64
, :65, :66, :67, :68, :69, :70, :71, :72, :73, :74, :75 )
AWRSQLRPT 887-888 (5000M REDO LOG FILES)
Toggle Spoiler
WORKLOAD REPOSITORY SQL Report
Snapshot Period Summary
DB Name DB Id Instance Inst Num Startup Time Release RAC
------------ ----------- ------------ -------- --------------- ----------- ---
GLDB 2907699466 gldb 1 16-Oct-12 10:08 11.2.0.1.0 NO
Snap Id Snap Time Sessions Curs/Sess
--------- ------------------- -------- ---------
Begin Snap: 887 17-Oct-12 10:30:35 39 4.7
End Snap: 888 17-Oct-12 10:45:38 36 5.3
Elapsed: 15.05 (mins)
DB Time: 4.84 (mins)
SQL Summary DB/Inst: GLDB/gldb Snaps: 887-888
Elapsed
SQL Id Time (ms)
------------- ----------
7k1usds2tau95 261,736
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
-------------------------------------------------------------
SQL ID: 7k1usds2tau95 DB/Inst: GLDB/gldb Snaps: 887-888
-> 1st Capture and Last Capture Snap IDs
refer to Snapshot IDs witin the snapshot range
-> INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSum...
Plan Hash Total Elapsed 1st Capture Last Capture
# Value Time(ms) Executions Snap ID Snap ID
--- ---------------- ---------------- ------------- ------------- --------------
1 1207092900 261,736 2,4205 888 888
-------------------------------------------------------------
Plan 1(PHV: 1207092900)
-----------------------
Plan Statistics DB/Inst: GLDB/gldb Snaps: 887-888
-> % Total DB Time is the Elapsed Time of the SQL statement divided
into the Total Database Time multiplied by 100
Stat Name Statement Per Execution % Snap
---------------------------------------- ---------- -------------- -------
Elapsed Time (ms) 261,736 10.8 90.1
CPU Time (ms) 164,924 6.8 88.1
Executions 24,205 N/A N/A
Buffer Gets 3.2983E+07 1,362.7 98.1
Disk Reads 4 0.0 2.6
Parse Calls 1 0.0 0.0
Rows 2,415,000 99.8 N/A
User I/O Wait Time (ms) 1 N/A N/A
Cluster Wait Time (ms) 0 N/A N/A
Application Wait Time (ms) 0 N/A N/A
Concurrency Wait Time (ms) 0 N/A N/A
Invalidations 0 N/A N/A
Version Count 1 N/A N/A
Sharable Mem(KB) 95 N/A N/A
-------------------------------------------------------------
Execution Plan
----------------------------------------------------------------------
| Id | Operation | Name | Cost |
----------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 |
| 1 | LOAD TABLE CONVENTIONAL | | |
| 2 | SEQUENCE | GLS_PROT_TRAFFIC_SUM_VOIP | |
----------------------------------------------------------------------
Note
-----
- cpu costing is off (consider enabling it)
Full SQL Text
SQL ID SQL Text
------------ -----------------------------------------------------------------
7k1usds2tau9 INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( traff
ficSumID, probeName, callingNumber, calledNumber, callID, startTi
me, duration, callSuccess, failureCause, postDialDelay, sessionDi
sconnectDelay, rtporiginationIPAddress, rtpdestinationIPAddress,
siporiginationIPAddress, sipdestinationIPAddress, ErrorCode, Prot
ocolTYpe, packetCount1, payload1, totalPacketCount1, missingPacke
tCount1, missingPacketPercentage1, DuplicatePacketCount1, Duplica
tePacketPercentage1, reorderedPacketCount1, reorderedPacketPercen
tage1, conversationalMos1, conversationalR1, listeningMos1, liste
ningR1, packetsDiscarded1, packetsDiscardedPercentage1, averageGa
p1, averageDelay1, averageJitter1, averageInterArrivalJitter1, Cu
mulativePacketLoss1, minGap1, maxGap1, minDelay1, maxDelay1, minJ
itter1, maxJitter1, minRtd1, maxRtd1, averageRtd1, packetCount2,
payload2, totalPacketCount2, missingPacketCount2, missingPacketPe
rcentage2, DuplicatePacketCount2, DuplicatePacketPercentage2, reo
rderedPacketCount2, reorderedPacketPercentage2, conversationalMos
2, conversationalR2, listeningMos2, listeningR2, packetsDiscarded
2, packetsDiscardedPercentage2, averageGap2, averageDelay2, avera
geJitter2, averageInterArrivalJitter2, CumulativePacketLoss2, min
Gap2, maxGap2, minDelay2, maxDelay2, minJitter2, maxJitter2, minR
td2, maxRtd2, averageRtd2, filename ) VALUES (GLS_PROT_TRAFFIC_SU
M_VOIP.NEXTVAL, :1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :12
, :13, :14, :15, :16, :17, :18, :19, :20, :21, :22, :23, :24, :25
, :26, :27, :28, :29, :30, :31, :32, :33, :34, :35, :36, :37, :38
, :39, :40, :41, :42, :43, :44, :45, :46, :47, :48, :49, :50, :51
, :52, :53, :54, :55, :56, :57, :58, :59, :60, :61, :62, :63, :64
, :65, :66, :67, :68, :69, :70, :71, :72, :73, :74, :75 )
[Updated on: Wed, 17 October 2012 10:08] Report message to a moderator
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568917 is a reply to message #568915] |
Wed, 17 October 2012 10:17 |
John Watson
Messages: 8960 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
As promised, we've knocked out those wait events. And the proportion of DBTime that is actually working has gone from 49.8% up to 64.5%. That is good, but the number of executes per second has not significantly changed, so as RoachCoach said, perhaps there isn't actually enough work to do. Are you certain that the bottleneck is not the application server? It looks to me as though the work is being done more efficiently: could it be that the DB is in fact processing data as fast as you can provide it?
Note that you are not in fact getting a direct load, you are getting a conventional insert. You need to move your hint, it must be between SELECT and INTO.
(ps - brilliant use of tags, you will make a lot of friends here if you keep it up)
--
Edit: another dumb typo, SELECT above shoud read INSERT. But you all know that, of course. jw.
[Updated on: Wed, 17 October 2012 10:35] Report message to a moderator
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568918 is a reply to message #568917] |
Wed, 17 October 2012 10:23 |
John Watson
Messages: 8960 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
And one more point: the sequence. How many values is it caching?
select cache_size,sequence_name from dba_sequences where sequence_name='GLS_PROT_TRAFFIC_SUM_VOIP';
if it is the default of 20, change it. Perhaps:
alter sequence GLS_PROT_TRAFFIC_SUM_VOIP cache 10000;
and that may help a lot.
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568920 is a reply to message #568918] |
Wed, 17 October 2012 10:38 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
Glad you like my tags , and thanks for the pointer on my hint I will correct that. Yes the wait events have diminished dramatically which is fantastic, and performance has improved somewhat as a result. And you are right my cache_size is 20, I will up it accordingly and test again.
Regarding whether I'm sure where the bottleneck is, no I am definitely not sure. My basic system architecture is I have a number of probes distributed through a VOIP network (this is the real world architecture at least, in the lab I just have a single CLI application I use to generate steady, regular loads), and a central machine running both the Oracle RDBMS and an ODBC Loader application. The probes connect to the ODBC loader via TCP, and the loader connects to the database.
I know based on wireshark observation that the load generator is doing its job, and I am running this in a lab LAN at the moment with sub millisecond latency. So I feel safe in ruling that out as a bottleneck. The ODBC loader application accepts incoming records from the probes or load generator, caches them, and array inserts them into the database. By no means am I convinced that the ODBC loader is not the bottleneck, frankly I sort of have a hunch that it is. But my first job before I go digging into that code is to prove that Oracle itself is healthy.
|
|
|
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568925 is a reply to message #568924] |
Wed, 17 October 2012 11:13 |
John Watson
Messages: 8960 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
wrt the buffer gets, are there many indexes on that table? If you can lose any, that would reduce the buffer gets and therefore CPU per insert.
So far, you haven't really attacked the actual run time, only the wait events: CPU time per execute has dropped from 7.0 to 6.8, elapsed time from 13.8 to 10.8. Tuning the sequence (and given that it is millions of rows, better cache at least 100000) and dropping an index might help.
Any chance that you can test these things one at a time, also test the direct load individually?
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568926 is a reply to message #568925] |
Wed, 17 October 2012 11:32 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
Yes I have free reign over the dB, so I will test each of the following variables individually:
*direct load
*sequence cache size
*index count (currently there is the primary key and three additional indexes on the table)
This will take some time, but I'll post the results as soon as I have them.
And thanks for all the help so far, it is much appreciated.
[Updated on: Wed, 17 October 2012 14:24] Report message to a moderator
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568941 is a reply to message #568926] |
Wed, 17 October 2012 15:15 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
I have changed sequence cache to 100,000 per your recommendation. This change chops about .4ms from my elapsed time per execution. The first two reports (907-908) were run at the same load volume as all my previous reports, then I decided to run my load generator at a higher volume - a volume I knew the Loader/dB would not be able to handle without the loader overflowing and losing data - report 908-909. They look about the same to my eyes, which I think proves that the loader is the issue, and not the database. Not to say that the dB cannot be further tuned, simply that it is not the bottleneck. Is this a logical conclusion?
AWRRPT 907-908 (sustainable call volume)
Toggle Spoiler
WORKLOAD REPOSITORY report for
DB Name DB Id Instance Inst Num Startup Time Release RAC
------------ ----------- ------------ -------- --------------- ----------- ---
GLDB 2907699466 gldb 1 16-Oct-12 10:08 11.2.0.1.0 NO
Host Name Platform CPUs Cores Sockets Memory(GB)
---------------- -------------------------------- ---- ----- ------- ----------
WIN-VTBNMB5VC5I Microsoft Windows x86 64-bit 4 4 1 11.99
Snap Id Snap Time Sessions Curs/Sess
--------- ------------------- -------- ---------
Begin Snap: 907 17-Oct-12 15:30:38 37 5.0
End Snap: 908 17-Oct-12 15:45:42 37 5.0
Elapsed: 15.05 (mins)
DB Time: 4.65 (mins)
Cache Sizes Begin End
~~~~~~~~~~~ ---------- ----------
Buffer Cache: 2,288M 2,288M Std Block Size: 8K
Shared Pool Size: 592M 592M Log Buffer: 8,168K
Load Profile Per Second Per Transaction Per Exec Per Call
~~~~~~~~~~~~ --------------- --------------- ---------- ----------
DB Time(s): 0.3 0.1 0.01 0.01
DB CPU(s): 0.2 0.1 0.00 0.01
Redo size: 6,422,655.3 2,053,385.4
Logical reads: 45,388.9 14,511.3
Block changes: 31,254.3 9,992.3
Physical reads: 1.5 0.5
Physical writes: 664.1 212.3
User calls: 39.4 12.6
Parses: 6.2 2.0
Hard parses: 1.0 0.3
W/A MB processed: 0.0 0.0
Logons: 0.1 0.0
Executes: 42.2 13.5
Rollbacks: 0.0 0.0
Transactions: 3.1
Instance Efficiency Percentages (Target 100%)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Buffer Nowait %: 100.00 Redo NoWait %: 100.00
Buffer Hit %: 100.00 In-memory Sort %: 100.00
Library Hit %: 99.90 Soft Parse %: 83.69
Execute to Parse %: 85.35 Latch Hit %: 100.00
Parse CPU to Parse Elapsd %: 101.89 % Non-Parse CPU: 99.40
Shared Pool Statistics Begin End
------ ------
Memory Usage %: 81.50 81.06
% SQL with executions>1: 93.83 83.36
% Memory for SQL w/exec>1: 90.03 83.73
Top 5 Timed Foreground Events
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Avg
wait % DB
Event Waits Time(s) (ms) time Wait Class
------------------------------ ------------ ----------- ------ ------ ----------
DB CPU 180 64.6
log file sync 2,669 5 2 1.6 Commit
SQL*Net more data from client 124,770 2 0 .7 Network
db file sequential read 1,304 1 1 .4 User I/O
log buffer space 1 0 177 .1 Configurat
Host CPU (CPUs: 4 Cores: 4 Sockets: 1)
~~~~~~~~ Load Average
Begin End %User %System %WIO %Idle
--------- --------- --------- --------- --------- ---------
7.5 1.7 90.8
Instance CPU
~~~~~~~~~~~~
% of total CPU for Instance: 5.2
% of busy CPU for Instance: 56.5
%DB time waiting for CPU - Resource Mgr: 0.0
Memory Statistics
~~~~~~~~~~~~~~~~~ Begin End
Host Mem (MB): 12,275.1 12,275.1
SGA use (MB): 2,944.0 2,944.0
PGA use (MB): 142.7 142.9
% Host Mem used for SGA+PGA: 25.15 25.15
Time Model Statistics DB/Inst: GLDB/gldb Snaps: 907-908
-> Total time in database user-calls (DB Time): 279s
-> 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 270.7 97.0
DB CPU 180.1 64.6
parse time elapsed 1.6 .6
hard parse elapsed time 1.3 .5
PL/SQL execution elapsed time 0.5 .2
connection management call elapsed time 0.1 .0
PL/SQL compilation elapsed time 0.0 .0
sequence load elapsed time 0.0 .0
repeated bind elapsed time 0.0 .0
DB time 279.0
background elapsed time 76.7
background cpu time 7.1
-------------------------------------------------------------
Operating System Statistics DB/Inst: GLDB/gldb Snaps: 907-908
-> *TIME statistic values are diffed.
All others display actual values. End Value is displayed if different
-> ordered by statistic type (CPU Use, Virtual Memory, Hardware Config), Name
Statistic Value End Value
------------------------- ---------------------- ----------------
AVG_BUSY_TIME 8,264
AVG_IDLE_TIME 82,006
AVG_SYS_TIME 1,478
AVG_USER_TIME 6,762
BUSY_TIME 33,150
IDLE_TIME 328,129
SYS_TIME 5,999
USER_TIME 27,151
RSRC_MGR_CPU_WAIT_TIME 0
VM_IN_BYTES 6.6678607248547840E+18
VM_OUT_BYTES 1,530,520,182,468,608
PHYSICAL_MEMORY_BYTES 12,871,364,608
NUM_CPUS 4
NUM_CPU_CORES 4
NUM_CPU_SOCKETS 1
-------------------------------------------------------------
Operating System Statistics - Detail DB/Inst: GLDB/gldb Snaps: 907-908
Snap Time Load %busy %user %sys %idle %iowait
--------------- -------- -------- -------- -------- -------- --------
17-Oct 15:30:38 0.0 N/A N/A N/A N/A N/A
17-Oct 15:45:42 0.0 9.2 7.5 1.7 90.8 0.0
-------------------------------------------------------------
Foreground Wait Class DB/Inst: GLDB/gldb Snaps: 907-908
-> s - second, ms - millisecond - 1000th of a second
-> ordered by wait time desc, waits desc
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
-> Captured Time accounts for 67.4% of Total DB time 278.97 (s)
-> Total FG Wait Time: 8.00 (s) DB CPU time: 180.09 (s)
Avg
%Time Total Wait wait
Wait Class Waits -outs Time (s) (ms) %DB time
-------------------- ---------------- ----- ---------------- -------- ---------
DB CPU 180 64.6
Commit 2,669 0 5 2 1.6
Network 159,839 0 2 0 0.7
User I/O 1,338 0 1 1 0.4
Configuration 2 0 0 94 0.1
System I/O 165 0 0 1 0.0
Application 60 0 0 0 0.0
Other 114 75 0 0 0.0
Concurrency 0 0 0.0
-------------------------------------------------------------
Foreground Wait Events DB/Inst: GLDB/gldb Snaps: 907-908
-> s - second, ms - millisecond - 1000th of a second
-> Only events with Total Wait Time (s) >= .001 are shown
-> ordered by wait time desc, waits desc (idle events last)
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % DB
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
log file sync 2,669 0 5 2 0.9 1.6
SQL*Net more data from cli 124,770 0 2 0 44.2 .7
db file sequential read 1,304 0 1 1 0.5 .4
log buffer space 1 0 0 177 0.0 .1
control file sequential re 165 0 0 1 0.1 .0
SQL*Net message to client 35,069 0 0 0 12.4 .0
log file switch (private s 1 0 0 12 0.0 .0
SQL*Net break/reset to cli 60 0 0 0 0.0 .0
ADR block file read 17 0 0 0 0.0 .0
Disk file operations I/O 33 0 0 0 0.0 .0
SQL*Net message from clien 35,069 0 6,008 171 12.4
jobq slave wait 2,002 100 1,028 514 0.7
wait for unread message on 900 99 903 1003 0.3
Streams AQ: waiting for me 182 100 901 4952 0.1
-------------------------------------------------------------
Background Wait Events DB/Inst: GLDB/gldb Snaps: 907-908
-> ordered by wait time desc, waits desc (idle events last)
-> Only events with Total Wait Time (s) >= .001 are shown
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % bg
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
log file parallel write 8,901 0 36 4 3.2 46.7
db file parallel write 32,521 0 28 1 11.5 36.2
control file parallel writ 455 0 1 3 0.2 1.7
control file sequential re 1,273 0 1 1 0.5 1.4
db file sequential read 60 0 1 11 0.0 .9
os thread startup 34 0 0 5 0.0 .2
Disk file operations I/O 27 0 0 1 0.0 .0
LGWR wait for redo copy 902 0 0 0 0.3 .0
direct path read 3 0 0 1 0.0 .0
direct path write 2 0 0 1 0.0 .0
log file sequential read 2 0 0 1 0.0 .0
rdbms ipc message 13,713 27 11,659 850 4.9
DIAG idle wait 1,782 100 1,807 1014 0.6
pmon timer 315 95 903 2867 0.1
Space Manager: slave idle 180 100 901 5007 0.1
shared server idle wait 30 100 900 30014 0.0
dispatcher timer 15 100 900 60012 0.0
smon timer 3 100 900 300006 0.0
Streams AQ: qmn slave idle 33 0 897 27168 0.0
Streams AQ: qmn coordinato 64 50 897 14008 0.0
SQL*Net message from clien 48 0 0 1 0.0
-------------------------------------------------------------
Wait Event Histogram DB/Inst: GLDB/gldb Snaps: 907-908
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> % of Waits: value of .0 indicates value was <.05%; value of null is truly 0
-> % of Waits: column heading of <=1s is truly <1024ms, >1s is truly >=1024ms
-> Ordered by Event (idle events last)
% of Waits
-----------------------------------------------
Total
Event Waits <1ms <2ms <4ms <8ms <16ms <32ms <=1s >1s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
ADR block file read 17 100.0
ADR block file write 5 100.0
ADR file lock 6 100.0
Disk file operations I/O 60 98.3 1.7
LGWR wait for redo copy 903 100.0
SQL*Net break/reset to cli 60 100.0
SQL*Net message to client 35.1K 100.0
SQL*Net more data from cli 124.8 100.0
asynch descriptor resize 140 100.0
control file parallel writ 455 97.6 .7 .2 .4 .2 .4 .4
control file sequential re 1438 84.2 7.3 6.9 1.3 .1 .3
db file parallel write 32.6K 85.3 6.3 3.8 4.1 .2 .2 .1
db file scattered read 1 100.0
db file sequential read 1385 91.9 1.5 2.9 2.1 .6 .9 .1
direct path read 3 100.0
direct path write 2 50.0 50.0
latch free 1 100.0
latch: messages 1 100.0
latch: object queue header 2 100.0
log buffer space 1 100.0
log file parallel write 8898 33.2 2.8 5.7 55.5 1.0 1.2 .6
log file sequential read 2 100.0
log file single write 2 100.0
log file switch (private s 1 100.0
log file sync 2670 73.8 8.9 14.2 1.6 .4 .7 .3
os thread startup 34 100.0
DIAG idle wait 1782 100.0
SQL*Net message from clien 35.1K 22.5 30.6 3.7 .9 .7 1.8 39.2 .5
Space Manager: slave idle 180 100.0
Streams AQ: qmn coordinato 64 50.0 50.0
Streams AQ: qmn slave idle 33 3.0 97.0
Streams AQ: waiting for me 183 1.1 98.9
class slave wait 6 100.0
dispatcher timer 15 100.0
jobq slave wait 2002 100.0
pmon timer 315 4.8 95.2
rdbms ipc message 13.7K 15.7 .4 6.8 1.0 .9 1.4 54.5 19.3
shared server idle wait 30 100.0
smon timer 3 100.0
wait for unread message on 900 .4 .4 .1 99.0
-------------------------------------------------------------
Wait Event Histogram Detail (64 msec to 2 sec)DB/Inst: GLDB/gldb Snaps: 907-
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> Units for % of Total Waits:
ms is milliseconds
s is 1024 milliseconds (approximately 1 second)
-> % of Total Waits: total waits for all wait classes, including Idle
-> % of Total Waits: value of .0 indicates value was <.05%;
value of null is truly 0
-> Ordered by Event (only non-idle events are displayed)
% of Total Waits
-----------------------------------------------
Waits
64ms
Event to 2s <32ms <64ms <1/8s <1/4s <1/2s <1s <2s >=2s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
control file parallel writ 2 99.6 .2 .2
db file parallel write 23 99.9 .0 .0 .0
db file sequential read 2 99.9 .1 .1
log buffer space 1 100.0
log file parallel write 54 99.4 .3 .2 .0 .0 .0
log file sync 9 99.7 .1 .1 .0 .1
-------------------------------------------------------------
Wait Event Histogram Detail (4 sec to 2 min)DB/Inst: GLDB/gldb Snaps: 907-90
No data exists for this section of the report.
-------------------------------------------------------------
Wait Event Histogram Detail (4 min to 1 hr)DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Service Statistics DB/Inst: GLDB/gldb Snaps: 907-908
-> ordered by DB Time
Physical Logical
Service Name DB Time (s) DB CPU (s) Reads (K) Reads (K)
---------------------------- ------------ ------------ ------------ ------------
gldb 278 179 1 40,972
SYS$USERS 1 1 0 12
SYS$BACKGROUND 0 0 0 9
gldbXDB 0 0 0 0
-------------------------------------------------------------
Service Wait Class Stats DB/Inst: GLDB/gldb Snaps: 907-908
-> Wait Class info for services in the Service Statistics section.
-> Total Waits and Time Waited displayed for the following wait
classes: User I/O, Concurrency, Administrative, Network
-> Time Waited (Wt Time) in seconds
Service Name
----------------------------------------------------------------
User I/O User I/O Concurcy Concurcy Admin Admin Network Network
Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time
--------- --------- --------- --------- --------- --------- --------- ---------
gldb
1271 1 0 0 0 0 159293 2
SYS$USERS
67 0 0 0 0 0 546 0
SYS$BACKGROUND
90 1 34 0 0 0 0 0
-------------------------------------------------------------
SQL ordered by Elapsed Time DB/Inst: GLDB/gldb Snaps: 907-908
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> % Total DB Time is the Elapsed Time of the SQL statement divided
into the Total Database Time multiplied by 100
-> %Total - Elapsed Time as a percentage of Total DB time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 97.1% of Total DB Time (s): 279
-> Captured PL/SQL account for 0.3% of Total DB Time (s): 279
Elapsed Elapsed Time
Time (s) Executions per Exec (s) %Total %CPU %IO SQL Id
---------------- -------------- ------------- ------ ------ ------ -------------
268.1 26,203 0.01 96.1 66.1 .4 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
0.7 66 0.01 .2 .0 99.5 5h7w8ykwtb2xt
INSERT INTO SYS.WRI$_ADV_PARAMETERS (TASK_ID,NAME,DATATYPE,VALUE,FLAGS,DESCRIPTI
ON) VALUES (:B6 , :B5 , :B4 , :B3 , :B2 , :B1 )
0.4 1 0.38 .1 99.7 .0 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.4 1 0.37 .1 92.0 .1 dayq182sk41ks
insert into wrh$_memory_target_advice (snap_id, dbid, instance_number, memo
ry_size, memory_size_factor, estd_db_time, estd_db_time_factor, version) sel
ect :snap_id, :dbid, :instance_number, memory_size, memory_size_factor,
estd_db_time, estd_db_time_factor, version from v$memory_target_advice
0.4 1 0.37 .1 92.2 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.2 356 0.00 .1 .0 .0 6v7n0y2bq89n8
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
0.2 15 0.01 .1 .0 1.1 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
0.2 30 0.01 .1 9.7 .0 2b064ybzkwf1y
Module: OEM.SystemPool
BEGIN EMD_NOTIFICATION.QUEUE_READY(:1, :2, :3); END;
0.1 891 0.00 .1 .0 .0 1umfsnn451yuu
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
0.1 827 0.00 .0 91.4 .0 df9md17q736da
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
-------------------------------------------------------------
SQL ordered by CPU Time DB/Inst: GLDB/gldb Snaps: 907-908
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - CPU Time as a percentage of Total DB CPU
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 99.2% of Total CPU Time (s): 180
-> Captured PL/SQL account for 0.1% of Total CPU Time (s): 180
CPU CPU per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
177.1 26,203 0.01 98.3 268.1 66.1 .4 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
0.4 1 0.37 0.2 0.4 99.7 .0 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.3 1 0.34 0.2 0.4 92.2 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.3 1 0.34 0.2 0.4 92.0 .1 dayq182sk41ks
insert into wrh$_memory_target_advice (snap_id, dbid, instance_number, memo
ry_size, memory_size_factor, estd_db_time, estd_db_time_factor, version) sel
ect :snap_id, :dbid, :instance_number, memory_size, memory_size_factor,
estd_db_time, estd_db_time_factor, version from v$memory_target_advice
0.1 1 0.08 0.0 0.1 114.9 .0 a8j39qb13tqkr
Module: emagent_SQL_oracle_database
SELECT :B1 TASK_ID, F.FINDING_ID FINDING_ID,DECODE(RECINFO.TYPE,NULL, 'Uncategor
ized',RECINFO.TYPE) REC_TYPE, RECINFO.RECCOUNT REC_COUNT, F.PERC_ACTIVE_SESS IMP
ACT_PCT, F.MESSAGE MESSAGE, TO_DATE(:B3 ,'MM-DD-YYYY HH24:MI:SS') START_TIME, TO
_DATE(:B2 ,'MM-DD-YYYY HH24:MI:SS') END_TIME, HISTORY.FINDING_COUNT FINDING_COUN
0.1 827 0.00 0.0 0.1 91.4 .0 df9md17q736da
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
0.1 1 0.06 0.0 0.1 105.8 11.5 98r07nzjsthxd
Module: DBMS_SCHEDULER
DECLARE job BINARY_INTEGER := :job; next_date TIMESTAMP WITH TIME ZONE := :myda
te; broken BOOLEAN := FALSE; job_name VARCHAR2(30) := :job_name; job_subname
VARCHAR2(30) := :job_subname; job_owner VARCHAR2(30) := :job_owner; job_start
TIMESTAMP WITH TIME ZONE := :job_start; job_scheduled_start TIMESTAMP WITH TIME
0.0 55 0.00 0.0 0.0 311.6 .0 1ytruncyx2kdb
Module: OEM.DefaultPool
BEGIN MGMT_HTTP_SESSION.session_expired(:1); END;
0.0 1 0.03 0.0 0.0 84.5 .0 5dfmd823r8dsp
insert into wrh$_memory_resize_ops (snap_id, dbid, instance_number, compone
nt, oper_type, start_time, end_time, target_size, oper_mode, parameter, initi
al_size, final_size, status) select snap_id, dbid, instance_num, compo
nent, oper_type, start_time, max(end_time), target_size, max(oper_mode),
0.0 1 0.03 0.0 0.0 117.8 .0 5k5v1ah25fb2c
Module: OEM.SystemPool
BEGIN EMD_LOADER.UPDATE_CURRENT_METRICS(:1, :2, :3, :4, :5, :6); END;
-------------------------------------------------------------
SQL ordered by User I/O Wait Time DB/Inst: GLDB/gldb Snaps: 907-908
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - User I/O Time as a percentage of Total User I/O Wait time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 96.7% of Total User I/O Wait Time (s):
-> Captured PL/SQL account for 1.1% of Total User I/O Wait Time (s):
User I/O UIO per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
1.1 26,203 0.00 61.5 268.1 66.1 .4 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
0.7 66 0.01 35.2 0.7 .0 99.5 5h7w8ykwtb2xt
INSERT INTO SYS.WRI$_ADV_PARAMETERS (TASK_ID,NAME,DATATYPE,VALUE,FLAGS,DESCRIPTI
ON) VALUES (:B6 , :B5 , :B4 , :B3 , :B2 , :B1 )
0.0 3 0.00 0.5 0.0 37.8 23.4 7j23tu2qk35zj
Module: emagent_SQL_oracle_database
/* OracleOEM */ BEGIN IF (:1 = 'READ WRITE' AND (:2 = '2' OR :2 = '3')) THEN
---- -- For a read-write database appropriately configured, try to evalu
ate. ---- dbsnmp.mgmt_response.get_metric_curs(:3); ELSE ----
-- For a read-only database, do not evaluate, but rather return an empty --
0.0 1 0.01 0.4 0.1 105.8 11.5 98r07nzjsthxd
Module: DBMS_SCHEDULER
DECLARE job BINARY_INTEGER := :job; next_date TIMESTAMP WITH TIME ZONE := :myda
te; broken BOOLEAN := FALSE; job_name VARCHAR2(30) := :job_name; job_subname
VARCHAR2(30) := :job_subname; job_owner VARCHAR2(30) := :job_owner; job_start
TIMESTAMP WITH TIME ZONE := :job_start; job_scheduled_start TIMESTAMP WITH TIME
0.0 15 0.00 0.1 0.2 .0 1.1 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
0.0 1 0.00 0.1 0.0 148.4 14.0 f0s0bk5k713yb
insert into wrh$_parameter (snap_id, dbid, instance_number, parameter_hash, va
lue, isdefault, ismodified) select :snap_id, :dbid, :instance_number, i.k
sppihash hash, substr(sv.ksppstvl, 1, 512), sv.ksppstdf, decode(bitand(sv.
ksppstvf,7), 1, 'MODIFIED', 'FALSE') from x$ksppi i, x$ksppsv sv where i.indx
0.0 14 0.00 0.0 0.0 .0 2.7 cydnuss99swtd
Module: OEM.SystemPool
BEGIN EM_PING.RECORD_BATCH_HEARTBEAT(:1, :2, :3); END;
0.0 9 0.00 0.0 0.0 103.3 2.1 3am9cfkvx7gq1
CALL MGMT_ADMIN_DATA.EVALUATE_MGMT_METRICS(:target_guid,:metric_guid,:metric_val
ues)
0.0 1 0.00 0.0 0.4 92.0 .1 dayq182sk41ks
insert into wrh$_memory_target_advice (snap_id, dbid, instance_number, memo
ry_size, memory_size_factor, estd_db_time, estd_db_time_factor, version) sel
ect :snap_id, :dbid, :instance_number, memory_size, memory_size_factor,
estd_db_time, estd_db_time_factor, version from v$memory_target_advice
0.0 77 0.00 0.0 0.0 .0 2.1 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
-------------------------------------------------------------
SQL ordered by Gets DB/Inst: GLDB/gldb Snaps: 907-908
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - Buffer Gets as a percentage of Total Buffer Gets
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Buffer Gets: 40,994,351
-> Captured SQL account for 100.0% of Total
Buffer Gets Elapsed
Gets Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ------------ ------ ---------- ------ ------ -----------
40,951,869 26,203 1,562.9 99.9 268.1 66.1 .4 7k1usds2tau
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
3,918 15 261.2 0.0 0.2 .0 1.1 6gvch1xu9ca
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
3,621 891 4.1 0.0 0.1 .0 .0 1umfsnn451y
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
3,329 827 4.0 0.0 0.1 91.4 .0 df9md17q736
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
2,979 845 3.5 0.0 0.0 .0 .0 cm5vu20fhtn
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
2,724 888 3.1 0.0 0.1 .0 .0 0ysq85ju8aj
Module: OdbcDbTrace64.exe
INSERT INTO DbLoaderStatus ( LoaderName, ProbeName, IpAddrPort, Status,OkFrameCo
unt, ErrorFrameCount) VALUES ( :1, :2, :3, :4, :5, :6 )
2,170 30 72.3 0.0 0.2 9.7 .0 2b064ybzkwf
Module: OEM.SystemPool
BEGIN EMD_NOTIFICATION.QUEUE_READY(:1, :2, :3); END;
1,992 517 3.9 0.0 0.0 35.6 .2 bsa0wjtftg3
select file# from file$ where ts#=:1
1,958 356 5.5 0.0 0.2 .0 .0 6v7n0y2bq89
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
1,948 206 9.5 0.0 0.0 75.9 1.3 8vwv6hx92ym
UPDATE MGMT_CURRENT_METRICS SET COLLECTION_TIMESTAMP = :B1 , VALUE = :B6 , STRIN
G_VALUE = :B5 WHERE TARGET_GUID = :B4 AND METRIC_GUID = :B3 AND KEY_VALUE = :B2
AND COLLECTION_TIMESTAMP < :B1
-------------------------------------------------------------
SQL ordered by Reads DB/Inst: GLDB/gldb Snaps: 907-908
-> %Total - Physical Reads as a percentage of Total Disk Reads
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Disk Reads: 1,378
-> Captured SQL account for 92.7% of Total
Physical Reads Elapsed
Reads Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ---------- ------ ---------- ------ ------ -------------
1,268 26,203 0.0 92.0 268.1 66.1 .4 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
24 1 24.0 1.7 0.1 105.8 11.5 98r07nzjsthxd
Module: DBMS_SCHEDULER
DECLARE job BINARY_INTEGER := :job; next_date TIMESTAMP WITH TIME ZONE := :myda
te; broken BOOLEAN := FALSE; job_name VARCHAR2(30) := :job_name; job_subname
VARCHAR2(30) := :job_subname; job_owner VARCHAR2(30) := :job_owner; job_start
TIMESTAMP WITH TIME ZONE := :job_start; job_scheduled_start TIMESTAMP WITH TIME
6 3 2.0 0.4 0.0 37.8 23.4 7j23tu2qk35zj
Module: emagent_SQL_oracle_database
/* OracleOEM */ BEGIN IF (:1 = 'READ WRITE' AND (:2 = '2' OR :2 = '3')) THEN
---- -- For a read-write database appropriately configured, try to evalu
ate. ---- dbsnmp.mgmt_response.get_metric_curs(:3); ELSE ----
-- For a read-only database, do not evaluate, but rather return an empty --
5 1 5.0 0.4 0.0 148.4 14.0 f0s0bk5k713yb
insert into wrh$_parameter (snap_id, dbid, instance_number, parameter_hash, va
lue, isdefault, ismodified) select :snap_id, :dbid, :instance_number, i.k
sppihash hash, substr(sv.ksppstvl, 1, 512), sv.ksppstdf, decode(bitand(sv.
ksppstvf,7), 1, 'MODIFIED', 'FALSE') from x$ksppi i, x$ksppsv sv where i.indx
3 15 0.2 0.2 0.2 .0 1.1 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
2 14 0.1 0.1 0.0 .0 2.7 cydnuss99swtd
Module: OEM.SystemPool
BEGIN EM_PING.RECORD_BATCH_HEARTBEAT(:1, :2, :3); END;
1 77 0.0 0.1 0.0 .0 2.1 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
1 9 0.1 0.1 0.0 103.3 2.1 3am9cfkvx7gq1
CALL MGMT_ADMIN_DATA.EVALUATE_MGMT_METRICS(:target_guid,:metric_guid,:metric_val
ues)
1 66 0.0 0.1 0.7 .0 99.5 5h7w8ykwtb2xt
INSERT INTO SYS.WRI$_ADV_PARAMETERS (TASK_ID,NAME,DATATYPE,VALUE,FLAGS,DESCRIPTI
ON) VALUES (:B6 , :B5 , :B4 , :B3 , :B2 , :B1 )
1 206 0.0 0.1 0.0 75.9 1.3 8vwv6hx92ymmm
UPDATE MGMT_CURRENT_METRICS SET COLLECTION_TIMESTAMP = :B1 , VALUE = :B6 , STRIN
G_VALUE = :B5 WHERE TARGET_GUID = :B4 AND METRIC_GUID = :B3 AND KEY_VALUE = :B2
AND COLLECTION_TIMESTAMP < :B1
-------------------------------------------------------------
SQL ordered by Physical Reads (UnOptimized)DB/Inst: GLDB/gldb Snaps: 907-908
-> UnOptimized Read Reqs = Physical Read Reqts - Optimized Read Reqs
-> %Opt - Optimized Reads as percentage of SQL Read Requests
-> %Total - UnOptimized Read Reqs as a percentage of Total UnOptimized Read Reqs
-> Total Physical Read Requests: 1,377
-> Captured SQL account for 98.6% of Total
-> Total UnOptimized Read Requests: 1,377
-> Captured SQL account for 98.6% of Total
-> Total Optimized Read Requests: 1
-> Captured SQL account for 0.0% of Total
UnOptimized Physical UnOptimized
Read Reqs Read Reqs Executions Reqs per Exe %Opt %Total SQL Id
----------- ----------- ---------- ------------ ------ ------ -------------
1,268 1,268 26,203 0.0 0.0 92.1 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
86 86 1 86.0 0.0 6.2 1qhza1uh1xcf9
Module: emagent_SQL_oracle_database
/* OracleOEM */ DECLARE l_log_mode VARCHAR2(32); l_flashback_on VARCHAR2(32
); l_flash_recovery_area VARCHAR2(512); l_flash_recovery_size NUMBER; l_us
able_area NUMBER; l_space_used NUMBER; l_reclaimable_area NUMBER; l_nonrec
laimable_area NUMBER; l_oldest_flashback_time VARCHAR2(512); TYPE data_curs
37 37 1 37.0 0.0 2.7 59suf2bbv0ht2
Module: emagent_SQL_oracle_database
SELECT SUM(PERCENT_SPACE_USED),SUM(PERCENT_SPACE_RECLAIMABLE) from v$flash_recov
ery_area_usage
37 37 1 37.0 0.0 2.7 9b7pdpgf2znkk
Module: emagent_SQL_oracle_database
SELECT (CASE WHEN PERCENT_USED> 100 THEN 0 ELSE (100-PERCENT_USED) END) PERCENT
_FREE FROM (SELECT (SUM(PERCENT_SPACE_USED)-SUM(PERCENT_SPACE_RECLAIMA
BLE)) PERCENT_USED FROM V$FLASH_RECOVERY_AREA_USAGE)
23 23 1 23.0 0.0 1.7 98r07nzjsthxd
Module: DBMS_SCHEDULER
DECLARE job BINARY_INTEGER := :job; next_date TIMESTAMP WITH TIME ZONE := :myda
te; broken BOOLEAN := FALSE; job_name VARCHAR2(30) := :job_name; job_subname
VARCHAR2(30) := :job_subname; job_owner VARCHAR2(30) := :job_owner; job_start
TIMESTAMP WITH TIME ZONE := :job_start; job_scheduled_start TIMESTAMP WITH TIME
10 10 22 0.5 0.0 0.7 49s332uhbnsma
declare vsn varchar2(20); begin vsn :=
dbms_rcvman.getPackageVersion; :pkg_vsn:pkg_vsn_i := vsn;
if vsn is not null then :pkg_vsnub4 :=
to_number(substr(vsn,1,2) || substr(vsn,4,2) || s
10 10 1 10.0 0.0 0.7 ab3swhv5g138y
select OBJOID, CLSOID, RUNTIME, PRI, JOBTYPE, SCHLIM, WT, INST, RUNNOW, ENQ_
SCHLIM from ( select a.obj# OBJOID, a.class_oid CLSOID, decode(bitand(a.flags
, 16384), 0, a.next_run_date, a.last_enabled_time) RUNTIME, (2*a.pr
iority + decode(bitand(a.job_status, 4), 0, 0, decode(a.running_i
6 6 3 2.0 0.0 0.4 7j23tu2qk35zj
Module: emagent_SQL_oracle_database
/* OracleOEM */ BEGIN IF (:1 = 'READ WRITE' AND (:2 = '2' OR :2 = '3')) THEN
---- -- For a read-write database appropriately configured, try to evalu
ate. ---- dbsnmp.mgmt_response.get_metric_curs(:3); ELSE ----
-- For a read-only database, do not evaluate, but rather return an empty --
5 5 1 5.0 0.0 0.4 f0s0bk5k713yb
insert into wrh$_parameter (snap_id, dbid, instance_number, parameter_hash, va
lue, isdefault, ismodified) select :snap_id, :dbid, :instance_number, i.k
sppihash hash, substr(sv.ksppstvl, 1, 512), sv.ksppstdf, decode(bitand(sv.
ksppstvf,7), 1, 'MODIFIED', 'FALSE') from x$ksppi i, x$ksppsv sv where i.indx
3 3 15 0.2 0.0 0.2 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
SQL ordered by Physical Reads (UnOptimized)DB/Inst: GLDB/gldb Snaps: 907-908
-> UnOptimized Read Reqs = Physical Read Reqts - Optimized Read Reqs
-> %Opt - Optimized Reads as percentage of SQL Read Requests
-> %Total - UnOptimized Read Reqs as a percentage of Total UnOptimized Read Reqs
-> Total Physical Read Requests: 1,377
-> Captured SQL account for 98.6% of Total
-> Total UnOptimized Read Requests: 1,377
-> Captured SQL account for 98.6% of Total
-> Total Optimized Read Requests: 1
-> Captured SQL account for 0.0% of Total
UnOptimized Physical UnOptimized
Read Reqs Read Reqs Executions Reqs per Exe %Opt %Total SQL Id
----------- ----------- ---------- ------------ ------ ------ -------------
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
-------------------------------------------------------------
SQL ordered by Executions DB/Inst: GLDB/gldb Snaps: 907-908
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Executions: 38,114
-> Captured SQL account for 88.6% of Total
Elapsed
Executions Rows Processed Rows per Exec Time (s) %CPU %IO SQL Id
------------ --------------- -------------- ---------- ------ ------ -----------
26,203 2,614,600 99.8 268.1 66.1 .4 7k1usds2tau
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
891 888 1.0 0.1 .0 .0 1umfsnn451y
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
891 0 0.0 0.0 .0 .0 3wx864ngwj4
Module: OdbcDbTrace64.exe
LOCK TABLE DbLoaderStatus IN EXCLUSIVE MODE
888 888 1.0 0.1 .0 .0 0ysq85ju8aj
Module: OdbcDbTrace64.exe
INSERT INTO DbLoaderStatus ( LoaderName, ProbeName, IpAddrPort, Status,OkFrameCo
unt, ErrorFrameCount) VALUES ( :1, :2, :3, :4, :5, :6 )
845 1,248 1.5 0.0 .0 .0 cm5vu20fhtn
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
827 827 1.0 0.1 91.4 .0 df9md17q736
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
757 757 1.0 0.0 .0 .0 8t43xdhf4d9
Module: OEM.BoundedPool
SELECT CONTEXT_TYPE_ID,CONTEXT_TYPE,TRACE_LEVEL,NULL,NULL FROM EMDW_TRACE_CONFIG
WHERE CONTEXT_TYPE = UPPER(:B1 )
517 517 1.0 0.0 35.6 .2 bsa0wjtftg3
select file# from file$ where ts#=:1
426 426 1.0 0.0 .0 .0 089dbukv1aa
Module: EM_PING
SELECT SYS_EXTRACT_UTC(SYSTIMESTAMP) FROM DUAL
356 356 1.0 0.2 .0 .0 6v7n0y2bq89
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
-------------------------------------------------------------
SQL ordered by Parse Calls DB/Inst: GLDB/gldb Snaps: 907-908
-> Total Parse Calls: 5,585
-> Captured SQL account for 56.4% of Total
% Total
Parse Calls Executions Parses SQL Id
------------ ------------ --------- -------------
845 845 15.13 cm5vu20fhtnq1
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
827 827 14.81 df9md17q736da
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
517 517 9.26 bsa0wjtftg3uw
select file# from file$ where ts#=:1
211 211 3.78 3972rvxu3knn3
Module: emagent_AQMetrics
delete from sdo_geor_ddl__table$$
99 99 1.77 g00cj285jmgsw
update sys.mon_mods$ set inserts = inserts + :ins, updates = updates + :upd, del
etes = deletes + :del, flags = (decode(bitand(flags, :flag), :flag, flags, flags
+ :flag)), drop_segments = drop_segments + :dropseg, timestamp = :time where ob
j# = :objn
77 77 1.38 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
61 61 1.09 au7jux77bsqqm
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE where PROBE_NAME='C
DRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CONN_TYPE=2
56 56 1.00 81ky0n97v4zsg
Module: emagent_SQL_oracle_database
/* OracleOEM */ select s.sid, s.serial# from v$session s where s.sid = (select s
id from v$mystat where rownum=1)
55 55 0.98 1ytruncyx2kdb
Module: OEM.DefaultPool
BEGIN MGMT_HTTP_SESSION.session_expired(:1); END;
55 55 0.98 43c5ykm1mcp2a
Module: OMS
begin dbms_application_info.set_module(:1, :2); dbms_application_info.set_client
_info(:3); dbms_session.set_identifier(:4); end;
-------------------------------------------------------------
SQL ordered by Sharable Memory DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
SQL ordered by Version Count DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 907-908
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
Batched IO (bound) vector count 0 0.0 0.0
Batched IO (full) vector count 0 0.0 0.0
Batched IO block miss count 0 0.0 0.0
Batched IO double miss count 0 0.0 0.0
Batched IO same unit count 0 0.0 0.0
Batched IO single block count 0 0.0 0.0
Batched IO vector block count 0 0.0 0.0
Batched IO vector read count 0 0.0 0.0
Block Cleanout Optim referenced 8,620 9.5 3.1
CCursor + sql area evicted 25 0.0 0.0
CPU used by this session 18,039 20.0 6.4
CPU used when call started 17,998 19.9 6.4
CR blocks created 89 0.1 0.0
Cached Commit SCN referenced 0 0.0 0.0
Commit SCN cached 0 0.0 0.0
DB time 300,700 332.9 106.4
DBWR checkpoint buffers written 169,243 187.4 59.9
DBWR checkpoints 1 0.0 0.0
DBWR object drop buffers written 0 0.0 0.0
DBWR parallel query checkpoint b 0 0.0 0.0
DBWR revisited being-written buf 0 0.0 0.0
DBWR tablespace checkpoint buffe 0 0.0 0.0
DBWR thread checkpoint buffers w 0 0.0 0.0
DBWR transaction table writes 32 0.0 0.0
DBWR undo block writes 265,103 293.5 93.8
DFO trees parallelized 0 0.0 0.0
HSC Heap Segment Block Changes 2,619,205 2,900.0 927.2
Heap Segment Array Inserts 90 0.1 0.0
Heap Segment Array Updates 90 0.1 0.0
IMU CR rollbacks 75 0.1 0.0
IMU Flushes 1,168 1.3 0.4
IMU Redo allocation size 52,456,944 58,080.3 18,568.8
IMU commits 1,902 2.1 0.7
IMU contention 23 0.0 0.0
IMU ktichg flush 5 0.0 0.0
IMU pool not allocated 9 0.0 0.0
IMU recursive-transaction flush 119 0.1 0.0
IMU undo allocation size 30,741,048 34,036.5 10,881.8
IMU- failed to get a private str 9 0.0 0.0
LOB table id lookup cache misses 0 0.0 0.0
Number of read IOs issued 0 0.0 0.0
PX local messages recv'd 0 0.0 0.0
PX local messages sent 0 0.0 0.0
Parallel operations not downgrad 0 0.0 0.0
RowCR attempts 3 0.0 0.0
RowCR hits 3 0.0 0.0
SMON posted for undo segment shr 0 0.0 0.0
SQL*Net roundtrips to/from clien 35,061 38.8 12.4
TBS Extension: bytes extended 0 0.0 0.0
TBS Extension: files extended 0 0.0 0.0
TBS Extension: tasks created 0 0.0 0.0
TBS Extension: tasks executed 0 0.0 0.0
active txn count during cleanout 192,223 212.8 68.0
application wait time 1 0.0 0.0
background checkpoints completed 1 0.0 0.0
background checkpoints started 1 0.0 0.0
background timeouts 3,773 4.2 1.3
branch node splits 279 0.3 0.1
buffer is not pinned count 13,519 15.0 4.8
buffer is pinned count 10,750 11.9 3.8
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 907-908
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
bytes received via SQL*Net from 1,088,027,720 1,204,663.2 385,142.6
bytes sent via SQL*Net to client 4,999,993 5,536.0 1,769.9
calls to get snapshot scn: kcmgs 98,829 109.4 35.0
calls to kcmgas 361,717 400.5 128.0
calls to kcmgcs 406,457 450.0 143.9
cell physical IO interconnect by 10,961,254,400 12,136,290.0 3,880,090.1
change write time 4,375 4.8 1.6
cleanout - number of ktugct call 222,282 246.1 78.7
cleanouts and rollbacks - consis 0 0.0 0.0
cleanouts only - consistent read 1 0.0 0.0
cluster key scan block gets 131 0.2 0.1
cluster key scans 130 0.1 0.1
commit batch performed 0 0.0 0.0
commit batch requested 0 0.0 0.0
commit batch/immediate performed 88 0.1 0.0
commit batch/immediate requested 88 0.1 0.0
commit cleanout failures: block 3 0.0 0.0
commit cleanout failures: buffer 21 0.0 0.0
commit cleanout failures: callba 13,618 15.1 4.8
commit cleanouts 1,201,476 1,330.3 425.3
commit cleanouts successfully co 1,187,834 1,315.2 420.5
commit immediate performed 88 0.1 0.0
commit immediate requested 88 0.1 0.0
commit txn count during cleanout 82,822 91.7 29.3
concurrency wait time 18 0.0 0.0
consistent changes 196 0.2 0.1
consistent gets 361,625 400.4 128.0
consistent gets - examination 282,823 313.1 100.1
consistent gets direct 2 0.0 0.0
consistent gets from cache 361,623 400.4 128.0
consistent gets from cache (fast 74,354 82.3 26.3
cursor authentications 1 0.0 0.0
data blocks consistent reads - u 149 0.2 0.1
db block changes 28,228,252 31,254.3 9,992.3
db block gets 40,632,742 44,988.5 14,383.3
db block gets direct 6 0.0 0.0
db block gets from cache 40,632,738 44,988.5 14,383.3
db block gets from cache (fastpa 10,463,921 11,585.6 3,704.0
deferred (CURRENT) block cleanou 847,539 938.4 300.0
dirty buffers inspected 180,112 199.4 63.8
enqueue conversions 186 0.2 0.1
enqueue releases 117,841 130.5 41.7
enqueue requests 117,841 130.5 41.7
enqueue timeouts 0 0.0 0.0
enqueue waits 0 0.0 0.0
execute count 38,114 42.2 13.5
failed probes on index block rec 0 0.0 0.0
file io wait time 581,965,083 644,351.2 206,005.3
free buffer inspected 473,934 524.7 167.8
free buffer requested 460,842 510.2 163.1
heap block compress 21 0.0 0.0
hot buffers moved to head of LRU 68,468 75.8 24.2
immediate (CR) block cleanout ap 1 0.0 0.0
immediate (CURRENT) block cleano 166,317 184.2 58.9
index crx upgrade (positioned) 1,387 1.5 0.5
index crx upgrade (prefetch) 0 0.0 0.0
index fast full scans (direct re 0 0.0 0.0
index fast full scans (full) 5 0.0 0.0
index fast full scans (rowid ran 0 0.0 0.0
index fetch by key 6,193 6.9 2.2
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 907-908
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
index scans kdiixs1 9,574 10.6 3.4
leaf node 90-10 splits 12,147 13.5 4.3
leaf node splits 58,361 64.6 20.7
lob reads 0 0.0 0.0
lob writes 16 0.0 0.0
lob writes unaligned 16 0.0 0.0
logons cumulative 64 0.1 0.0
max cf enq hold time 0 0.0 0.0
messages received 42,131 46.7 14.9
messages sent 42,131 46.7 14.9
min active SCN optimization appl 0 0.0 0.0
no work - consistent read gets 12,518 13.9 4.4
non-idle wait count 212,013 234.7 75.1
non-idle wait time 7,488 8.3 2.7
opened cursors cumulative 6,867 7.6 2.4
parse count (describe) 0 0.0 0.0
parse count (failures) 0 0.0 0.0
parse count (hard) 911 1.0 0.3
parse count (total) 5,585 6.2 2.0
parse time cpu 108 0.1 0.0
parse time elapsed 106 0.1 0.0
physical read IO requests 1,377 1.5 0.5
physical read bytes 11,288,576 12,498.7 3,996.0
physical read total IO requests 2,823 3.1 1.0
physical read total bytes 34,980,864 38,730.8 12,382.6
physical read total multi block 0 0.0 0.0
physical reads 1,378 1.5 0.5
physical reads cache 1,370 1.5 0.5
physical reads cache prefetch 1 0.0 0.0
physical reads direct 8 0.0 0.0
physical reads direct (lob) 0 0.0 0.0
physical reads direct temporary 0 0.0 0.0
physical reads prefetch warmup 0 0.0 0.0
physical write IO requests 67,818 75.1 24.0
physical write bytes 4,913,692,672 5,440,435.7 1,739,360.2
physical write total IO requests 82,491 91.3 29.2
physical write total bytes 10,926,273,536 12,097,559.2 3,867,707.5
physical write total multi block 40,684 45.1 14.4
physical writes 599,816 664.1 212.3
physical writes direct 12 0.0 0.0
physical writes direct (lob) 6 0.0 0.0
physical writes direct temporary 0 0.0 0.0
physical writes from cache 599,804 664.1 212.3
physical writes non checkpoint 462,347 511.9 163.7
pinned buffers inspected 0 0.0 0.0
pinned cursors current 1 0.0 0.0
prefetch warmup blocks aged out 0 0.0 0.0
prefetched blocks aged out befor 0 0.0 0.0
process last non-idle time 0 0.0 0.0
queries parallelized 0 0.0 0.0
recursive calls 38,444 42.6 13.6
recursive cpu usage 246 0.3 0.1
redo blocks checksummed by FG (e 3,594,615 3,980.0 1,272.4
redo blocks written 11,714,200 12,970.0 4,146.6
redo buffer allocation retries 2 0.0 0.0
redo entries 14,215,958 15,739.9 5,032.2
redo log space requests 2 0.0 0.0
redo log space wait time 2 0.0 0.0
redo ordering marks 298,712 330.7 105.7
redo size 5,800,813,780 6,422,655.3 2,053,385.4
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 907-908
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
redo size for direct writes 312 0.4 0.1
redo subscn max counts 463,941 513.7 164.2
redo synch time 335 0.4 0.1
redo synch writes 2,848 3.2 1.0
redo wastage 2,447,056 2,709.4 866.2
redo write time 3,679 4.1 1.3
redo writes 8,898 9.9 3.2
rollback changes - undo records 186 0.2 0.1
rollbacks only - consistent read 89 0.1 0.0
root node splits 1 0.0 0.0
rows fetched via callback 1,244 1.4 0.4
scheduler wait time 0 0.0 0.0
session connect time 0 0.0 0.0
session cursor cache hits 6,445 7.1 2.3
session logical reads 40,994,351 45,388.9 14,511.3
shared hash latch upgrades - no 4,272 4.7 1.5
shared hash latch upgrades - wai 0 0.0 0.0
sorts (disk) 0 0.0 0.0
sorts (memory) 3,724 4.1 1.3
sorts (rows) 12,989 14.4 4.6
sql area evicted 898 1.0 0.3
sql area purged 0 0.0 0.0
summed dirty queue length 1,805,687 1,999.3 639.2
switch current to new buffer 1,020 1.1 0.4
table fetch by rowid 6,160 6.8 2.2
table fetch continued row 1 0.0 0.0
table scan blocks gotten 4,659 5.2 1.7
table scan rows gotten 206,850 229.0 73.2
table scans (direct read) 0 0.0 0.0
table scans (long tables) 0 0.0 0.0
table scans (short tables) 1,306 1.5 0.5
temp space allocated (bytes) 0 0.0 0.0
total cf enq hold time 31 0.0 0.0
total number of cf enq holders 49 0.1 0.0
total number of slots 0 0.0 0.0
total number of times SMON poste 0 0.0 0.0
transaction rollbacks 88 0.1 0.0
undo change vector size 1,623,850,656 1,797,925.8 574,814.4
user I/O wait time 187 0.2 0.1
user calls 35,544 39.4 12.6
user commits 2,825 3.1 1.0
user rollbacks 0 0.0 0.0
workarea executions - onepass 0 0.0 0.0
workarea executions - optimal 2,007 2.2 0.7
write clones created in backgrou 0 0.0 0.0
write clones created in foregrou 100 0.1 0.0
-------------------------------------------------------------
Instance Activity Stats - Absolute Values DB/Inst: GLDB/gldb Snaps: 907-908
-> Statistics with absolute values (should not be diffed)
Statistic Begin Value End Value
-------------------------------- --------------- ---------------
session uga memory max 7,409,277,224 7,464,481,112
session pga memory 4,397,794,560 4,434,329,456
session pga memory max 5,210,719,824 5,245,944,000
session cursor cache count 141,208 142,362
session uga memory 8.749301072E+12 8.826613671E+12
opened cursors current 186 186
logons current 37 37
-------------------------------------------------------------
Instance Activity Stats - Thread Activity DB/Inst: GLDB/gldb Snaps: 907-908
-> Statistics identified by '(derived)' come from sources other than SYSSTAT
Statistic Total per Hour
-------------------------------- ------------------ ---------
log switches (derived) 1 3.99
-------------------------------------------------------------
IOStat by Function summary DB/Inst: GLDB/gldb Snaps: 907-908
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Function Name Data per sec per sec Data per sec per sec Count Tm(ms)
--------------- ------- ------- ------- ------- ------- ------- ------- -------
LGWR 0M 0.0 0M 5.6G 15.3 6.33539 36 0.4
DBWR 0M 0.0 0M 4.6G 75.3 5.20494 0 N/A
Others 22M 1.6 .024358 14M 1.0 .015500 1869 0.8
Buffer Cache Re 11M 1.5 .012179 0M 0.0 0M 1382 1.1
Direct Reads 0M 0.0 0M 0M 0.0 0M 0 N/A
Direct Writes 0M 0.0 0M 0M 0.0 0M 0 N/A
TOTAL: 33M 3.1 .036537 10.2G 91.5 11.5558 3287 0.9
-------------------------------------------------------------
IOStat by Filetype summary DB/Inst: GLDB/gldb Snaps: 907-908
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Small Read and Large Read are average service times, in milliseconds
-> Ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Small Large
Filetype Name Data per sec per sec Data per sec per sec Read Read
--------------- ------- ------- ------- ------- ------- ------- ------- -------
Log File 0M 0.0 0M 5.6G 15.2 6.33428 0.0 N/A
Data File 12M 1.5 .013286 4.6G 75.3 5.20604 1.1 N/A
Control File 23M 1.6 .025465 14M 1.0 .015500 0.2 N/A
Temp File 0M 0.0 0M 0M 0.0 0M N/A N/A
TOTAL: 35M 3.1 .038751 10.2G 91.5 11.5558 0.6 N/A
-------------------------------------------------------------
IOStat by Function/Filetype summary DB/Inst: GLDB/gldb Snaps: 907-908
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Ordered by (Data Read + Write) desc for each function
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Data per sec per sec Data per sec per sec Count Tm(ms)
------- ------- ------- ------- ------- ------- ------- -------
LGWR
0M 0.0 0M 5.6G 15.3 6.33539 26 0.0
LGWR (Log File)
0M 0.0 0M 5.6G 15.2 6.33428 4 0.0
LGWR (Control File)
0M 0.0 0M 1M 0.0 .001107 22 0.0
DBWR
0M 0.0 0M 4.6G 75.3 5.20494 0 N/A
DBWR (Data File)
0M 0.0 0M 4.6G 75.3 5.20494 0 N/A
Others
22M 1.6 .024358 14M 1.0 .015500 1424 0.3
Others (Control File)
22M 1.6 .024358 14M 1.0 .015500 1416 0.3
Others (Data File)
0M 0.0 0M 0M 0.0 0M 8 0.0
Buffer Cache Reads
11M 1.5 .012179 0M 0.0 0M 1381 1.1
Buffer Cache Reads (Data File)
11M 1.5 .012179 0M 0.0 0M 1381 1.1
Direct Reads
0M 0.0 0M 0M 0.0 0M 0 N/A
Direct Reads (Data File)
0M 0.0 0M 0M 0.0 0M 0 N/A
Direct Writes
0M 0.0 0M 0M 0.0 0M 0 N/A
Direct Writes (Data File)
0M 0.0 0M 0M 0.0 0M 0 N/A
TOTAL:
33M 3.1 .036537 10.2G 91.5 11.5558 2831 0.6
-------------------------------------------------------------
Tablespace IO Stats DB/Inst: GLDB/gldb Snaps: 907-908
-> ordered by IOs (Reads + Writes) desc
Tablespace
------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
GLCOMM
1,269 1 0.9 1.0 34,967 39 0 0.0
UNDOTBS1
1 0 0.0 1.0 32,350 36 0 0.0
SYSAUX
64 0 10.8 1.0 455 1 0 0.0
SYSTEM
26 0 0.4 1.0 43 0 0 0.0
EXAMPLE
1 0 0.0 1.0 1 0 0 0.0
USERS
1 0 0.0 1.0 1 0 0 0.0
TEMP
0 0 0.0 N/A 1 0 0 0.0
-------------------------------------------------------------
File IO Stats DB/Inst: GLDB/gldb Snaps: 907-908
-> ordered by Tablespace, File
Tablespace Filename
------------------------ ----------------------------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
EXAMPLE D:\ORACLE\ORADATA\GLDB\EXAMPLE01.DBF
1 0 0.0 1.0 1 0 0 0.0
GLCOMM D:\ORACLE\ORADATA\GLDB\GLCOMM01.DBF
1,269 1 0.9 1.0 34,967 39 0 0.0
SYSAUX D:\ORACLE\ORADATA\GLDB\SYSAUX01.DBF
64 0 10.8 1.0 455 1 0 0.0
SYSTEM D:\ORACLE\ORADATA\GLDB\SYSTEM01.DBF
26 0 0.4 1.0 43 0 0 0.0
TEMP D:\ORACLE\ORADATA\GLDB\TEMP01.DBF
0 0 N/A N/A 1 0 0 N/A
UNDOTBS1 D:\ORACLE\ORADATA\GLDB\UNDOTBS01.DBF
1 0 0.0 1.0 32,350 36 0 0.0
USERS D:\ORACLE\ORADATA\GLDB\USERS01.DBF
1 0 0.0 1.0 1 0 0 0.0
-------------------------------------------------------------
Buffer Pool Statistics DB/Inst: GLDB/gldb Snaps: 907-908
-> Standard block size Pools D: default, K: keep, R: recycle
-> Default Pools for other block sizes: 2k, 4k, 8k, 16k, 32k
Free Writ Buffer
Number of Pool Buffer Physical Physical Buff Comp Busy
P Buffers Hit% Gets Reads Writes Wait Wait Waits
--- ---------- ---- ------------ ------------ ----------- ------ ------ --------
D 281,710 100 40,993,472 1,363 599,804 0 0 0
-------------------------------------------------------------
Checkpoint Activity DB/Inst: GLDB/gldb Snaps: 907-908
-> Total Physical Writes: 599,816
Other Autotune Thread
MTTR Log Size Log Ckpt Settings Ckpt Ckpt
Writes Writes Writes Writes Writes Writes
----------- ----------- ----------- ----------- ----------- -----------
0 0 0 0 169,243 0
-------------------------------------------------------------
Instance Recovery Stats DB/Inst: GLDB/gldb Snaps: 907-908
-> B: Begin Snapshot, E: End Snapshot
Estd
Targt Estd Log Ckpt Log Ckpt Opt RAC
MTTR MTTR Recovery Actual Target Log Sz Timeout Interval Log Avail
(s) (s) Estd IOs RedoBlks RedoBlks RedoBlks RedoBlks RedoBlks Sz(M) Time
- ----- ----- -------- -------- -------- -------- -------- -------- ------ -----
B 0 69 123142 2038327 2174065 1.66E+07 2174065 N/A N/A N/A
E 0 77 118216 4046011 1.37E+07 1.66E+07 1.37E+07 N/A N/A N/A
-------------------------------------------------------------
MTTR Advisory DB/Inst: GLDB/gldb Snap: 908
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Pool Advisory DB/Inst: GLDB/gldb Snap: 908
-> Only rows with estimated physical reads >0 are displayed
-> ordered by Block Size, Buffers For Estimate
Est
Phys Estimated Est
Size for Size Buffers Read Phys Reads Est Phys %DBtime
P Est (M) Factor (thousands) Factor (thousands) Read Time for Rds
--- -------- ------ ------------ ------ -------------- ------------ -------
D 224 .1 28 1.4 1,933 1 300.0
D 448 .2 55 1.4 1,891 1 285.0
D 672 .3 83 1.3 1,754 1 233.0
D 896 .4 110 1.1 1,552 1 158.0
D 1,120 .5 138 1.0 1,429 1 112.0
D 1,344 .6 165 1.0 1,417 1 108.0
D 1,568 .7 193 1.0 1,409 1 105.0
D 1,792 .8 221 1.0 1,396 1 100.0
D 2,016 .9 248 1.0 1,384 1 95.0
D 2,240 1.0 276 1.0 1,373 1 91.0
D 2,288 1.0 282 1.0 1,371 1 91.0
D 2,464 1.1 303 1.0 1,366 1 89.0
D 2,688 1.2 331 1.0 1,361 1 87.0
D 2,912 1.3 359 1.0 1,357 1 85.0
D 3,136 1.4 386 1.0 1,352 1 84.0
D 3,360 1.5 414 1.0 1,348 1 82.0
D 3,584 1.6 441 1.0 1,325 1 75.0
D 3,808 1.7 469 1.0 1,305 1 75.0
D 4,032 1.8 496 0.9 1,290 1 75.0
D 4,256 1.9 524 0.9 1,279 1 75.0
D 4,480 2.0 552 0.9 1,271 1 75.0
-------------------------------------------------------------
PGA Aggr Summary DB/Inst: GLDB/gldb Snaps: 907-908
-> PGA cache hit % - percentage of W/A (WorkArea) data processed only in-memory
PGA Cache Hit % W/A MB Processed Extra W/A MB Read/Written
--------------- ------------------ --------------------------
100.0 37 0
-------------------------------------------------------------
PGA Aggr Target Stats DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
PGA Aggr Target Histogram DB/Inst: GLDB/gldb Snaps: 907-908
-> Optimal Executions are purely in-memory operations
Low High
Optimal Optimal Total Execs Optimal Execs 1-Pass Execs M-Pass Execs
------- ------- -------------- -------------- ------------ ------------
2K 4K 1,978 1,978 0 0
64K 128K 2 2 0 0
512K 1024K 21 21 0 0
1M 2M 4 4 0 0
4M 8M 2 2 0 0
-------------------------------------------------------------
PGA Memory Advisory DB/Inst: GLDB/gldb Snap: 908
-> When using Auto Memory Mgmt, minimally choose a pga_aggregate_target value
where Estd PGA Overalloc Count is 0
Estd Extra Estd P Estd PGA
PGA Target Size W/A MB W/A MB Read/ Cache Overallo Estd
Est (MB) Factr Processed Written to Disk Hit % Count Time
---------- ------- ---------------- ---------------- ------ -------- -------
246 0.1 7,204.9 447.2 94.0 0 2.3E+05
492 0.3 7,204.9 447.2 94.0 0 2.3E+05
984 0.5 7,204.9 279.5 96.0 0 2.3E+05
1,476 0.8 7,204.9 279.5 96.0 0 2.3E+05
1,968 1.0 7,204.9 279.5 96.0 0 2.3E+05
2,362 1.2 7,204.9 279.5 96.0 0 2.3E+05
2,755 1.4 7,204.9 279.5 96.0 0 2.3E+05
3,149 1.6 7,204.9 279.5 96.0 0 2.3E+05
3,542 1.8 7,204.9 279.5 96.0 0 2.3E+05
3,936 2.0 7,204.9 279.5 96.0 0 2.3E+05
5,904 3.0 7,204.9 279.5 96.0 0 2.3E+05
7,872 4.0 7,204.9 279.5 96.0 0 2.3E+05
11,808 6.0 7,204.9 279.5 96.0 0 2.3E+05
15,744 8.0 7,204.9 279.5 96.0 0 2.3E+05
-------------------------------------------------------------
Shared Pool Advisory DB/Inst: GLDB/gldb Snap: 908
-> SP: Shared Pool Est LC: Estimated Library Cache Factr: Factor
-> Note there is often a 1:Many correlation between a single logical object
in the Library Cache, and the physical number of memory objects associated
with it. Therefore comparing the number of Lib Cache objects (e.g. in
v$librarycache), with the number of Lib Cache Memory Objects is invalid.
Est LC Est LC Est LC Est LC
Shared SP Est LC Time Time Load Load Est LC
Pool Size Size Est LC Saved Saved Time Time Mem Obj
Size(M) Factr (M) Mem Obj (s) Factr (s) Factr Hits (K)
-------- ----- -------- ------------ -------- ------ ------- ------ ------------
336 .6 5 564 15,167 1.0 957 1.1 2,044
400 .7 70 6,387 15,176 1.0 948 1.1 22,379
464 .8 133 8,845 15,263 1.0 861 1.0 22,392
528 .9 197 11,584 15,271 1.0 853 1.0 22,394
592 1.0 261 14,274 15,274 1.0 850 1.0 22,394
656 1.1 325 17,099 15,277 1.0 847 1.0 22,395
720 1.2 389 19,940 15,278 1.0 846 1.0 22,395
784 1.3 453 22,954 15,279 1.0 845 1.0 22,395
848 1.4 517 25,874 15,279 1.0 845 1.0 22,396
912 1.5 581 28,151 15,280 1.0 844 1.0 22,396
976 1.6 645 30,568 15,280 1.0 844 1.0 22,396
1,040 1.8 704 32,910 15,280 1.0 844 1.0 22,396
1,104 1.9 716 33,551 15,280 1.0 844 1.0 22,396
1,168 2.0 716 33,551 15,280 1.0 844 1.0 22,396
1,232 2.1 716 33,551 15,280 1.0 844 1.0 22,396
-------------------------------------------------------------
SGA Target Advisory DB/Inst: GLDB/gldb Snap: 908
SGA Target SGA Size Est DB Est Physical
Size (M) Factor Time (s) Reads
---------- ---------- ------------ ----------------
736 0.3 4,521 1,927,976
1,472 0.5 4,285 1,550,114
2,208 0.8 4,227 1,415,202
2,944 1.0 4,211 1,371,054
3,680 1.3 4,204 1,355,013
4,416 1.5 4,193 1,323,616
5,152 1.8 4,193 1,288,791
5,888 2.0 4,193 1,269,322
-------------------------------------------------------------
Streams Pool Advisory DB/Inst: GLDB/gldb Snap: 908
No data exists for this section of the report.
-------------------------------------------------------------
Java Pool Advisory DB/Inst: GLDB/gldb Snap: 908
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Wait Statistics DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Enqueue Activity DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Undo Segment Summary DB/Inst: GLDB/gldb Snaps: 907-908
-> Min/Max TR (mins) - Min and Max Tuned Retention (minutes)
-> STO - Snapshot Too Old count, OOS - Out of Space count
-> Undo segment block stats:
-> uS - unexpired Stolen, your - unexpired Released, uU - unexpired reUsed
-> eS - expired Stolen, eR - expired Released, eU - expired reUsed
Undo Num Undo Number of Max Qry Max Tx Min/Max STO/ uS/uR/uU/
TS# Blocks (K) Transactions Len (s) Concurcy TR (mins) OOS eS/eR/eU
---- ---------- --------------- -------- -------- --------- ----- --------------
2 164.7 37,040 1,054 4 30.6/30.6 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Undo Segment Stats DB/Inst: GLDB/gldb Snaps: 907-908
-> Most recent 35 Undostat rows, ordered by Time desc
Num Undo Number of Max Qry Max Tx Tun Ret STO/ uS/uR/uU/
End Time Blocks Transactions Len (s) Concy (mins) OOS eS/eR/eU
------------ ----------- ------------ ------- ------- ------- ----- ------------
17-Oct 15:38 164,659 37,040 1,054 4 31 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Latch Activity DB/Inst: GLDB/gldb Snaps: 907-908
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
AQ deq hash table latch 1 0.0 0 0 N/A
AQ dequeue txn counter l 780 0.0 0 0 N/A
ASM db client latch 603 0.0 0 0 N/A
ASM map operation hash t 1 0.0 0 0 N/A
ASM network state latch 15 0.0 0 0 N/A
AWR Alerted Metric Eleme 6,421 0.0 0 0 N/A
Change Notification Hash 300 0.0 0 0 N/A
Consistent RBA 8,909 0.1 0.0 0 0 N/A
DML lock allocation 25,673 0.0 0 0 N/A
Event Group Locks 47 0.0 0 0 N/A
FOB s.o list latch 122 0.0 0 0 N/A
File State Object Pool P 1 0.0 0 0 N/A
IPC stats buffer allocat 1 0.0 0 0 N/A
In memory undo latch 74,265 0.0 0 3,491 0.0
JS Sh mem access 3 0.0 0 0 N/A
JS broadcast autostart l 17 0.0 0 0 N/A
JS mem alloc latch 3 0.0 0 0 N/A
JS queue access latch 4 0.0 0 0 N/A
JS queue state obj latch 6,568 0.0 0 0 N/A
JS slv state obj latch 165 0.0 0 0 N/A
KFC FX Hash Latch 1 0.0 0 0 N/A
KFC Hash Latch 1 0.0 0 0 N/A
KFCL LE Freelist 1 0.0 0 0 N/A
KGNFS-NFS:SHM structure 1 0.0 0 0 N/A
KGNFS-NFS:SVR LIST 1 0.0 0 0 N/A
KJC message pool free li 1 0.0 0 0 N/A
KJCT flow control latch 1 0.0 0 0 N/A
KMG MMAN ready and start 300 0.0 0 0 N/A
KTF sga latch 5 0.0 0 302 0.0
KWQS pqueue ctx latch 10 0.0 0 0 N/A
Locator state objects po 1 0.0 0 0 N/A
Lsod array latch 1 0.0 0 0 N/A
MQL Tracking Latch 0 N/A 0 18 0.0
Memory Management Latch 1 0.0 0 300 0.0
Memory Queue 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Subscriber 1 0.0 0 0 N/A
MinActiveScn Latch 5 0.0 0 0 N/A
Mutex 1 0.0 0 0 N/A
Mutex Stats 1 0.0 0 0 N/A
OS process 343 0.0 0 0 N/A
OS process allocation 528 0.0 0 0 N/A
OS process: request allo 92 0.0 0 0 N/A
PL/SQL warning settings 551 0.0 0 0 N/A
PX hash array latch 1 0.0 0 0 N/A
QMT 1 0.0 0 0 N/A
Real-time plan statistic 495 0.0 0 0 N/A
SGA IO buffer pool latch 4,843 0.0 0 5,475 0.0
SGA blob parent 1 0.0 0 0 N/A
SGA bucket locks 1 0.0 0 0 N/A
SGA heap locks 1 0.0 0 0 N/A
SGA pool locks 1 0.0 0 0 N/A
SQL memory manager latch 31 0.0 0 300 0.0
SQL memory manager worka 20,762 0.0 0 0 N/A
Shared B-Tree 75 0.0 0 0 N/A
Streams Generic 1 0.0 0 0 N/A
Testing 1 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 907-908
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
Token Manager 1 0.0 0 0 N/A
WCR: sync 1 0.0 0 0 N/A
Write State Object Pool 1 0.0 0 0 N/A
X$KSFQP 1 0.0 0 0 N/A
XDB NFS Security Latch 1 0.0 0 0 N/A
XDB unused session pool 1 0.0 0 0 N/A
XDB used session pool 1 0.0 0 0 N/A
active checkpoint queue 33,465 0.0 0 0 N/A
active service list 2,128 0.0 0 1,098 0.0
begin backup scn array 6 0.0 0 0 N/A
buffer pool 1 0.0 0 0 N/A
business card 1 0.0 0 0 N/A
cache buffer handles 74 0.0 0 0 N/A
cache buffers chains 153,874,861 0.0 0.0 0 461,886 0.0
cache buffers lru chain 645,865 0.0 0.0 0 1,060,264 0.1
cache table scan latch 1 0.0 0 1 0.0
call allocation 336 0.0 0 0 N/A
cas latch 1 0.0 0 0 N/A
change notification clie 1 0.0 0 0 N/A
channel handle pool latc 96 0.0 0 0 N/A
channel operations paren 5,642 0.0 0 0 N/A
checkpoint queue latch 1,038,221 0.0 0.0 0 594,661 0.0
client/application info 1,279 0.0 0 0 N/A
compile environment latc 64 0.0 0 0 N/A
corrupted undo seg latch 646 0.0 0 0 N/A
cp cmon/server latch 1 0.0 0 0 N/A
cp pool latch 1 0.0 0 0 N/A
cp server hash latch 1 0.0 0 0 N/A
cp sga latch 15 0.0 0 0 N/A
cvmap freelist lock 1 0.0 0 0 N/A
deferred cleanup latch 15 0.0 0 0 N/A
dml lock allocation 15 0.0 0 0 N/A
done queue latch 1 0.0 0 0 N/A
dummy allocation 129 0.0 0 0 N/A
enqueue hash chains 235,889 0.0 0.0 0 0 N/A
enqueues 99,912 0.0 0.0 0 0 N/A
fifth spare latch 1 0.0 0 0 N/A
file cache latch 572 0.0 0 0 N/A
flashback copy 1 0.0 0 0 N/A
gc element 1 0.0 0 0 N/A
gcs commit scn state 1 0.0 0 0 N/A
gcs partitioned table ha 1 0.0 0 0 N/A
gcs pcm hashed value buc 1 0.0 0 0 N/A
gcs resource freelist 1 0.0 0 0 N/A
gcs resource hash 1 0.0 0 0 N/A
gcs resource scan list 1 0.0 0 0 N/A
gcs shadows freelist 1 0.0 0 0 N/A
ges domain table 1 0.0 0 0 N/A
ges enqueue table freeli 1 0.0 0 0 N/A
ges group table 1 0.0 0 0 N/A
ges process hash list 1 0.0 0 0 N/A
ges process parent latch 1 0.0 0 0 N/A
ges resource hash list 1 0.0 0 0 N/A
ges resource scan list 1 0.0 0 0 N/A
ges resource table freel 1 0.0 0 0 N/A
ges value block free lis 1 0.0 0 0 N/A
global KZLD latch for me 12 0.0 0 0 N/A
global tx hash mapping 1 0.0 0 0 N/A
granule operation 1 0.0 0 0 N/A
hash table column usage 28 0.0 0 5,389 0.0
Latch Activity DB/Inst: GLDB/gldb Snaps: 907-908
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
heartbeat check 1 0.0 0 0 N/A
intra txn parallel recov 1 0.0 0 0 N/A
io pool granule metadata 1 0.0 0 0 N/A
job workq parent latch 19 0.0 0 18 0.0
job_queue_processes free 38 0.0 0 0 N/A
job_queue_processes para 214 0.0 0 0 N/A
k2q lock allocation 1 0.0 0 0 N/A
kcbtsemkid latch 1 0.0 0 0 N/A
kdlx hb parent latch 1 0.0 0 0 N/A
kgb parent 1 0.0 0 0 N/A
kks stats 5,729 0.0 0 0 N/A
kokc descriptor allocati 214 0.0 0 0 N/A
ksfv messages 1 0.0 0 0 N/A
kss move lock 13 0.0 0 0 N/A
ksuosstats global area 63 0.0 0 0 N/A
ksv allocation latch 39 0.0 0 0 N/A
ksv class latch 25 0.0 0 0 N/A
ksv msg queue latch 1 0.0 0 0 N/A
ksz_so allocation latch 92 0.0 0 0 N/A
ktm global data 5 0.0 0 0 N/A
kwqbsn:qsga 44 0.0 0 0 N/A
lgwr LWN SCN 8,947 0.4 0.0 0 0 N/A
list of block allocation 102,380 0.0 0 0 N/A
loader state object free 20 0.0 0 0 N/A
lob segment dispenser la 1 0.0 0 0 N/A
lob segment hash table l 3 0.0 0 0 N/A
lob segment query latch 1 0.0 0 0 N/A
lock DBA buffer during m 1 0.0 0 0 N/A
logical standby cache 1 0.0 0 0 N/A
logminer context allocat 1 0.0 0 0 N/A
logminer work area 1 0.0 0 0 N/A
longop free list parent 1 0.0 0 0 N/A
mapped buffers lru chain 1 0.0 0 0 N/A
message pool operations 55 0.0 0 0 N/A
messages 102,906 0.1 0.0 0 0 N/A
mostly latch-free SCN 9,077 1.5 0.0 0 0 N/A
msg queue latch 1 0.0 0 0 N/A
multiblock read objects 20 0.0 0 0 N/A
name-service namespace b 1 0.0 0 0 N/A
ncodef allocation latch 15 0.0 0 0 N/A
object queue header heap 133,941 0.0 0 695 0.0
object queue header oper 2,818,489 0.0 0.0 0 0 N/A
object stats modificatio 7 0.0 0 0 N/A
parallel query alloc buf 121 0.0 0 0 N/A
parallel query stats 1 0.0 0 0 N/A
parameter list 30 0.0 0 0 N/A
parameter table manageme 129 0.0 0 0 N/A
peshm 1 0.0 0 0 N/A
pesom_free_list 1 0.0 0 0 N/A
pesom_hash_node 1 0.0 0 0 N/A
post/wait queue 4,127 0.0 0 2,684 0.0
process allocation 126 0.0 0 46 0.0
process group creation 92 0.0 0 0 N/A
process queue 1 0.0 0 0 N/A
process queue reference 1 0.0 0 0 N/A
qmn task queue latch 132 0.0 0 0 N/A
query server freelists 1 0.0 0 0 N/A
queued dump request 3 0.0 0 0 N/A
queuing load statistics 1 0.0 0 0 N/A
recovery domain hash lis 1 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 907-908
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
redo allocation 34,325 0.5 0.0 0 14,215,577 0.0
redo copy 1 0.0 0 14,215,794 0.0
redo writing 61,140 0.0 0 0 N/A
resmgr group change latc 275 0.0 0 0 N/A
resmgr:active threads 129 0.0 0 0 N/A
resmgr:actses change gro 37 0.0 0 0 N/A
resmgr:actses change sta 1 0.0 0 0 N/A
resmgr:free threads list 128 0.0 0 0 N/A
resmgr:plan CPU method 1 0.0 0 0 N/A
resmgr:resource group CP 1 0.0 0 0 N/A
resmgr:schema config 11 0.0 0 0 N/A
resmgr:session queuing 1 0.0 0 0 N/A
rm cas latch 1 0.0 0 0 N/A
row cache objects 111,740 0.0 0 741 0.0
second spare latch 1 0.0 0 0 N/A
sequence cache 7,843,968 0.0 0 0 N/A
session allocation 12,486 0.0 0 4,161 0.0
session idle bit 75,190 0.0 0 0 N/A
session queue latch 1 0.0 0 0 N/A
session state list latch 120 0.0 0 0 N/A
session switching 246 0.0 0 0 N/A
session timer 315 0.0 0 0 N/A
shared pool 89,951 0.0 0.0 0 0 N/A
shared pool sim alloc 64 0.0 0 0 N/A
shared pool simulator 9,004 0.0 0 0 N/A
sim partition latch 1 0.0 0 0 N/A
simulator hash latch 2,167,807 0.0 0.0 0 0 N/A
simulator lru latch 271,101 0.1 0.0 0 1,841,526 0.0
sort extent pool 48 0.0 0 0 N/A
space background state o 2 0.0 0 0 N/A
space background task la 663 0.0 0 600 0.0
state object free list 2 0.0 0 0 N/A
statistics aggregation 560 0.0 0 0 N/A
tablespace key chain 1 0.0 0 0 N/A
temp lob duration state 2 0.0 0 0 N/A
test excl. parent l0 1 0.0 0 0 N/A
test excl. parent2 l0 1 0.0 0 0 N/A
third spare latch 1 0.0 0 0 N/A
threshold alerts latch 42 0.0 0 0 N/A
transaction allocation 4,478 0.0 0 0 N/A
undo global data 726,423 0.0 0 0 N/A
virtual circuit buffers 1 0.0 0 0 N/A
virtual circuit holder 1 0.0 0 0 N/A
virtual circuit queues 1 0.0 0 0 N/A
-------------------------------------------------------------
Latch Sleep Breakdown DB/Inst: GLDB/gldb Snaps: 907-908
-> ordered by misses desc
Get Spin
Latch Name Requests Misses Sleeps Gets
-------------------------- --------------- ------------ ----------- -----------
object queue header operat 2,818,489 468 2 466
simulator lru latch 271,101 151 1 150
messages 102,906 57 1 56
-------------------------------------------------------------
Latch Miss Sources DB/Inst: GLDB/gldb Snaps: 907-908
-> only latches with sleeps are shown
-> ordered by name, sleeps desc
NoWait Waiter
Latch Name Where Misses Sleeps Sleeps
------------------------ -------------------------- ------- ---------- --------
messages ksarcv: after wait 0 1 1
object queue header oper kcbo_switch_cq 0 1 0
object queue header oper kcbo_unlink_q 0 1 0
simulator lru latch kcbs_simulate: simulate se 0 1 0
-------------------------------------------------------------
Mutex Sleep Summary DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Parent Latch Statistics DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Child Latch Statistics DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Logical Reads DB/Inst: GLDB/gldb Snaps: 907-908
-> Total Logical Reads: 40,994,351
-> Captured Segments account for 97.7% of Total
Tablespace Subobject Obj. Logical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 10,648,064 25.97
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 10,465,728 25.53
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 7,901,840 19.28
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 7,893,088 19.25
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 3,130,304 7.64
-------------------------------------------------------------
Segments by Physical Reads DB/Inst: GLDB/gldb Snaps: 907-908
-> Total Physical Reads: 1,378
-> Captured Segments account for 94.0% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 1,268 92.02
SYS SYSAUX WRH$_SQL_PLAN_PK INDEX 9 .65
SYS SYSAUX WRH$_SQL_PLAN TABLE 4 .29
SYS SYSAUX WRH$_DISPATCHER_PK INDEX 3 .22
SYS SYSAUX WRH$_SYSMETRIC_HISTO TABLE 3 .22
-------------------------------------------------------------
Segments by Physical Read Requests DB/Inst: GLDB/gldb Snaps: 907-908
-> Total Physical Read Requests: 1,377
-> Captured Segments account for 94.0% of Total
Tablespace Subobject Obj. Phys Read
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 1,268 92.08
SYS SYSAUX WRH$_SQL_PLAN_PK INDEX 9 .65
SYS SYSAUX WRH$_SQL_PLAN TABLE 4 .29
SYS SYSAUX WRH$_DISPATCHER_PK INDEX 3 .22
SYS SYSAUX WRH$_SYSMETRIC_HISTO TABLE 3 .22
-------------------------------------------------------------
Segments by UnOptimized Reads DB/Inst: GLDB/gldb Snaps: 907-908
-> Total UnOptimized Read Requests: 1,377
-> Captured Segments account for 94.0% of Total
Tablespace Subobject Obj. UnOptimized
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 1,268 92.08
SYS SYSAUX WRH$_SQL_PLAN_PK INDEX 9 .65
SYS SYSAUX WRH$_SQL_PLAN TABLE 4 .29
SYS SYSAUX WRH$_DISPATCHER_PK INDEX 3 .22
SYS SYSAUX WRH$_SYSMETRIC_HISTO TABLE 3 .22
-------------------------------------------------------------
Segments by Optimized Reads DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Direct Physical Reads DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Physical Writes DB/Inst: GLDB/gldb Snaps: 907-908
-> Total Physical Writes: 599,816
-> Captured Segments account for 55.7% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Writes %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 151,296 25.22
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 150,527 25.10
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 19,278 3.21
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 7,291 1.22
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 5,540 .92
-------------------------------------------------------------
Segments by Physical Write Requests DB/Inst: GLDB/gldb Snaps: 907-908
-> Total Physical Write Requestss: 67,818
-> Captured Segments account for 51.9% of Total
Tablespace Subobject Obj. Phys Write
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 21,326 31.45
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 10,218 15.07
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,280 3.36
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 633 .93
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 503 .74
-------------------------------------------------------------
Segments by Direct Physical Writes DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Table Scans DB/Inst: GLDB/gldb Snaps: 907-908
-> Total Table Scans: 5
-> Captured Segments account for 60.0% of Total
Tablespace Subobject Obj. Table
Owner Name Object Name Name Type Scans %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSTEM I_OBJ2 INDEX 3 60.00
-------------------------------------------------------------
Segments by DB Blocks Changes DB/Inst: GLDB/gldb Snaps: 907-908
-> % of Capture shows % of DB Block Changes for each top segment compared
-> with total DB Block Changes for all segments captured by the Snapshot
Tablespace Subobject Obj. DB Block % of
Owner Name Object Name Name Type Changes Capture
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 3,234,384 22.44
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,966,912 20.58
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,864,976 19.88
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,681,568 18.60
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 2,660,448 18.46
-------------------------------------------------------------
Segments by Row Lock Waits DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Segments by ITL Waits DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Buffer Busy Waits DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Dictionary Cache Stats DB/Inst: GLDB/gldb Snaps: 907-908
-> "Pct Misses" should be very low (< 2% in most cases)
-> "Final Usage" is the number of cache entries being used
Get Pct Scan Pct Mod Final
Cache Requests Miss Reqs Miss Reqs Usage
------------------------- ------------ ------ ------- ----- -------- ----------
dc_awr_control 19 0.0 0 N/A 2 1
dc_global_oids 990 0.0 0 N/A 0 86
dc_histogram_data 23 0.0 0 N/A 0 2,949
dc_histogram_defs 17,004 0.3 0 N/A 0 4,098
dc_object_grants 102 0.0 0 N/A 0 143
dc_objects 6,820 0.0 0 N/A 1 2,751
dc_profiles 43 0.0 0 N/A 0 2
dc_rollback_segments 229 0.0 0 N/A 0 22
dc_segments 4,287 0.0 0 N/A 80 1,071
dc_sequences 27 0.0 0 N/A 27 9
dc_tablespaces 1,652 0.0 0 N/A 0 8
dc_users 5,652 0.0 0 N/A 0 155
global database name 654 0.0 0 N/A 0 1
outstanding_alerts 10 0.0 0 N/A 0 5
sch_lj_oids 3 0.0 0 N/A 0 14
-------------------------------------------------------------
Library Cache Activity DB/Inst: GLDB/gldb Snaps: 907-908
-> "Pct Misses" should be very low
Get Pct Pin Pct Invali-
Namespace Requests Miss Requests Miss Reloads dations
--------------- ------------ ------ -------------- ------ ---------- --------
BODY 255 0.0 1,885 0.0 0 0
DBLINK 25 0.0 0 N/A 0 0
EDITION 35 0.0 65 0.0 0 0
QUEUE 1,974 0.0 2,391 0.0 0 0
SCHEMA 66 0.0 0 N/A 0 0
SQL AREA 3,470 78.8 42,638 6.4 0 0
SUBSCRIPTION 1 0.0 1 0.0 0 0
TABLE/PROCEDURE 2,919 0.4 2,623,010 0.0 0 0
TRIGGER 211 0.0 225 0.0 0 0
-------------------------------------------------------------
Memory Dynamic Components DB/Inst: GLDB/gldb Snaps: 907-908
-> Min/Max sizes since instance startup
-> Oper Types/Modes: INItializing,GROw,SHRink,STAtic/IMMediate,DEFerred
-> ordered by Component
Begin Snap Current Min Max Oper Last Op
Component Size (Mb) Size (Mb) Size (Mb) Size (Mb) Count Typ/Mod
--------------- ----------- ----------- ----------- ----------- ------ -------
ASM Buffer Cach .00 .00 .00 .00 0 STA/
DEFAULT 16K buf .00 .00 .00 .00 0 STA/
DEFAULT 2K buff .00 .00 .00 .00 0 STA/
DEFAULT 32K buf .00 .00 .00 .00 0 STA/
DEFAULT 4K buff .00 .00 .00 .00 0 STA/
DEFAULT 8K buff .00 .00 .00 .00 0 STA/
DEFAULT buffer 2,288.00 2,288.00 2,288.00 2,304.00 0 SHR/IMM
KEEP buffer cac .00 .00 .00 .00 0 STA/
PGA Target 1,968.00 1,968.00 1,968.00 1,968.00 0 STA/
RECYCLE buffer .00 .00 .00 .00 0 STA/
SGA Target 2,944.00 2,944.00 2,944.00 2,944.00 0 STA/
Shared IO Pool .00 .00 .00 .00 0 STA/
java pool 16.00 16.00 16.00 16.00 0 STA/
large pool 16.00 16.00 .00 16.00 0 GRO/IMM
shared pool 592.00 592.00 576.00 592.00 0 GRO/IMM
streams pool .00 .00 .00 .00 0 STA/
-------------------------------------------------------------
Memory Resize Operations Summary DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Memory Resize Ops DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Process Memory Summary DB/Inst: GLDB/gldb Snaps: 907-908
-> B: Begin Snap E: End Snap
-> All rows below contain absolute values (i.e. not diffed over the interval)
-> Max Alloc is Maximum PGA Allocation size at snapshot time
-> Hist Max Alloc is the Historical Max Allocation for still-connected processes
-> ordered by Begin/End snapshot, Alloc (MB) desc
Hist
Avg Std Dev Max Max
Alloc Used Alloc Alloc Alloc Alloc Num Num
Category (MB) (MB) (MB) (MB) (MB) (MB) Proc Alloc
- -------- --------- --------- -------- -------- ------- ------- ------ ------
B Other 81.6 N/A 2.1 2.1 9 47 39 39
Freeable 44.3 .0 1.9 4.3 21 N/A 23 23
PL/SQL 13.5 7.0 .4 .7 3 3 37 37
SQL 3.3 1.5 .1 .5 2 93 25 19
E Other 83.5 N/A 2.1 2.2 9 47 39 39
Freeable 42.6 .0 1.9 4.2 20 N/A 22 22
PL/SQL 13.5 7.0 .4 .7 3 3 37 37
SQL 3.2 1.5 .1 .5 2 93 25 19
-------------------------------------------------------------
SGA Memory Summary DB/Inst: GLDB/gldb Snaps: 907-908
End Size (Bytes)
SGA regions Begin Size (Bytes) (if different)
------------------------------ ------------------- -------------------
Database Buffers 2,399,141,888
Fixed Size 2,184,632
Redo Buffers 8,364,032
Variable Size 2,717,911,624
-------------------
sum 5,127,602,176
-------------------------------------------------------------
SGA breakdown difference DB/Inst: GLDB/gldb Snaps: 907-908
-> ordered by Pool, Name
-> N/A value for Begin MB or End MB indicates the size of that Pool/Name was
insignificant, or zero in that snapshot
Pool Name Begin MB End MB % Diff
------ ------------------------------ -------------- -------------- -------
java free memory 16.0 16.0 0.00
large PX msg pool 7.5 7.5 0.00
large free memory 8.5 8.5 0.00
shared ASH buffers 8.0 8.0 0.00
shared CCUR 42.3 42.1 -0.52
shared FileOpenBlock 10.5 10.5 0.00
shared KGLH0 7.7 6.4 -16.56
shared KGLHD 16.9 17.4 2.67
shared PCUR 35.3 37.1 5.08
shared PLMCD 11.3 10.5 -7.06
shared SQLA 228.1 227.7 -0.19
shared db_block_hash_buckets 22.3 22.3 0.00
shared free memory 109.5 112.1 2.38
shared row cache 7.2 7.2 0.00
buffer_cache 2,288.0 2,288.0 0.00
fixed_sga 2.1 2.1 0.00
log_buffer 8.0 8.0 0.00
-------------------------------------------------------------
Streams CPU/IO Usage DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture Rate DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply Rate DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queues DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queue Subscribers DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Rule Set DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues Rate DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queue Subscribers DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Resource Limit Stats DB/Inst: GLDB/gldb Snap: 908
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Activity DB/Inst: GLDB/gldb Snaps: 907-908
-> Values represent averages for all samples
Avg Total Avg Active Avg Total Avg Active Avg Total Avg Active
Connections Connections Shared Srvrs Shared Srvrs Dispatchers Dispatchers
------------ ------------ ------------ ------------ ------------ ------------
0 0 1 0 1 0
-------------------------------------------------------------
Shared Servers Rates DB/Inst: GLDB/gldb Snaps: 907-908
Common Disp Common Disp Server
Queue Queue Server Server Queue Queue Total Server
Per Sec Per Sec Msgs/Sec KB/Sec Total Total Msgs Total(KB)
-------- -------- -------- --------- ---------- ---------- ---------- ----------
0 0 0 0.0 0 0 0 0
-------------------------------------------------------------
Shared Servers Utilization DB/Inst: GLDB/gldb Snaps: 907-908
-> Statistics are combined for all servers
-> Incoming and Outgoing Net % are included in %Busy
Total Server Incoming Outgoing
Time (s) %Busy %Idle Net % Net %
-------------- -------- -------- --------- ---------
903 0.0 100.0 0.0 0.0
-------------------------------------------------------------
Shared Servers Common Queue DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Dispatchers DB/Inst: GLDB/gldb Snaps: 907-908
-> Ordered by %Busy, descending
-> Total Queued, Total Queue Wait and Avg Queue Wait are for dispatcher queue
-> Name suffixes:
"(N)" - dispatcher started between begin and end snapshots
"(R)" - dispatcher re-started between begin and end snapshots
Avg Total Disp Total Total Queue Avg Queue
Name Conns Time (s) %Busy %Idle Queued Wait (s) Wait (ms)
------- --------- ---------- -------- -------- ---------- ----------- ----------
D000 0.0 903 0.0 100.0 0 0
-------------------------------------------------------------
init.ora Parameters DB/Inst: GLDB/gldb Snaps: 907-908
-> if IP/Public/Source at End snap is different a '*' is displayed
End value
Parameter Name Begin value (if different)
----------------------------- --------------------------------- --------------
audit_file_dest D:\ORACLE\ADMIN\GLDB\ADUMP
audit_trail DB
compatible 11.2.0.0.0
control_files D:\ORACLE\FLASH_RECOVERY_AREA\GLD
db_block_size 8192
db_domain
db_name gldb
db_recovery_file_dest D:\Oracle\flash_recovery_area
db_recovery_file_dest_size 4102029312
diagnostic_dest D:\ORACLE
dispatchers (PROTOCOL=TCP) (SERVICE=gldbXDB)
memory_target 5150605312
open_cursors 300
processes 150
remote_login_passwordfile EXCLUSIVE
undo_tablespace UNDOTBS1
-------------------------------------------------------------
Dynamic Remastering Stats DB/Inst: GLDB/gldb Snaps: 907-908
No data exists for this section of the report.
-------------------------------------------------------------
End of Report
AWRSQLRPT 907-908 (sustainable call volume)
Toggle Spoiler
WORKLOAD REPOSITORY SQL Report
Snapshot Period Summary
DB Name DB Id Instance Inst Num Startup Time Release RAC
------------ ----------- ------------ -------- --------------- ----------- ---
GLDB 2907699466 gldb 1 16-Oct-12 10:08 11.2.0.1.0 NO
Snap Id Snap Time Sessions Curs/Sess
--------- ------------------- -------- ---------
Begin Snap: 907 17-Oct-12 15:30:38 37 5.0
End Snap: 908 17-Oct-12 15:45:42 37 5.0
Elapsed: 15.05 (mins)
DB Time: 4.65 (mins)
SQL Summary DB/Inst: GLDB/gldb Snaps: 907-908
Elapsed
SQL Id Time (ms)
------------- ----------
7k1usds2tau95 268,102
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
-------------------------------------------------------------
SQL ID: 7k1usds2tau95 DB/Inst: GLDB/gldb Snaps: 907-908
-> 1st Capture and Last Capture Snap IDs
refer to Snapshot IDs witin the snapshot range
-> INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSum...
Plan Hash Total Elapsed 1st Capture Last Capture
# Value Time(ms) Executions Snap ID Snap ID
--- ---------------- ---------------- ------------- ------------- --------------
1 1207092900 268,102 2,6203 908 908
-------------------------------------------------------------
Plan 1(PHV: 1207092900)
-----------------------
Plan Statistics DB/Inst: GLDB/gldb Snaps: 907-908
-> % Total DB Time is the Elapsed Time of the SQL statement divided
into the Total Database Time multiplied by 100
Stat Name Statement Per Execution % Snap
---------------------------------------- ---------- -------------- -------
Elapsed Time (ms) 268,102 10.2 96.1
CPU Time (ms) 177,108 6.8 98.3
Executions 26,203 N/A N/A
Buffer Gets 4.0952E+07 1,562.9 99.9
Disk Reads 1,268 0.0 92.0
Parse Calls 0 0.0 0.0
Rows 2,614,600 99.8 N/A
User I/O Wait Time (ms) 1,146 N/A N/A
Cluster Wait Time (ms) 0 N/A N/A
Application Wait Time (ms) 0 N/A N/A
Concurrency Wait Time (ms) 0 N/A N/A
Invalidations 0 N/A N/A
Version Count 1 N/A N/A
Sharable Mem(KB) 95 N/A N/A
-------------------------------------------------------------
Execution Plan
----------------------------------------------------------------------
| Id | Operation | Name | Cost |
----------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 |
| 1 | LOAD TABLE CONVENTIONAL | | |
| 2 | SEQUENCE | GLS_PROT_TRAFFIC_SUM_VOIP | |
----------------------------------------------------------------------
Note
-----
- cpu costing is off (consider enabling it)
Full SQL Text
SQL ID SQL Text
------------ -----------------------------------------------------------------
7k1usds2tau9 INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( traff
ficSumID, probeName, callingNumber, calledNumber, callID, startTi
me, duration, callSuccess, failureCause, postDialDelay, sessionDi
sconnectDelay, rtporiginationIPAddress, rtpdestinationIPAddress,
siporiginationIPAddress, sipdestinationIPAddress, ErrorCode, Prot
ocolTYpe, packetCount1, payload1, totalPacketCount1, missingPacke
tCount1, missingPacketPercentage1, DuplicatePacketCount1, Duplica
tePacketPercentage1, reorderedPacketCount1, reorderedPacketPercen
tage1, conversationalMos1, conversationalR1, listeningMos1, liste
ningR1, packetsDiscarded1, packetsDiscardedPercentage1, averageGa
p1, averageDelay1, averageJitter1, averageInterArrivalJitter1, Cu
mulativePacketLoss1, minGap1, maxGap1, minDelay1, maxDelay1, minJ
itter1, maxJitter1, minRtd1, maxRtd1, averageRtd1, packetCount2,
payload2, totalPacketCount2, missingPacketCount2, missingPacketPe
rcentage2, DuplicatePacketCount2, DuplicatePacketPercentage2, reo
rderedPacketCount2, reorderedPacketPercentage2, conversationalMos
2, conversationalR2, listeningMos2, listeningR2, packetsDiscarded
2, packetsDiscardedPercentage2, averageGap2, averageDelay2, avera
geJitter2, averageInterArrivalJitter2, CumulativePacketLoss2, min
Gap2, maxGap2, minDelay2, maxDelay2, minJitter2, maxJitter2, minR
td2, maxRtd2, averageRtd2, filename ) VALUES (GLS_PROT_TRAFFIC_SU
M_VOIP.NEXTVAL, :1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :12
, :13, :14, :15, :16, :17, :18, :19, :20, :21, :22, :23, :24, :25
, :26, :27, :28, :29, :30, :31, :32, :33, :34, :35, :36, :37, :38
, :39, :40, :41, :42, :43, :44, :45, :46, :47, :48, :49, :50, :51
, :52, :53, :54, :55, :56, :57, :58, :59, :60, :61, :62, :63, :64
, :65, :66, :67, :68, :69, :70, :71, :72, :73, :74, :75 )
AWRRPT 908-909 (unsustainable call volume)
Toggle Spoiler
WORKLOAD REPOSITORY report for
DB Name DB Id Instance Inst Num Startup Time Release RAC
------------ ----------- ------------ -------- --------------- ----------- ---
GLDB 2907699466 gldb 1 16-Oct-12 10:08 11.2.0.1.0 NO
Host Name Platform CPUs Cores Sockets Memory(GB)
---------------- -------------------------------- ---- ----- ------- ----------
WIN-VTBNMB5VC5I Microsoft Windows x86 64-bit 4 4 1 11.99
Snap Id Snap Time Sessions Curs/Sess
--------- ------------------- -------- ---------
Begin Snap: 908 17-Oct-12 15:45:42 37 5.0
End Snap: 909 17-Oct-12 16:00:45 36 5.3
Elapsed: 15.06 (mins)
DB Time: 4.95 (mins)
Cache Sizes Begin End
~~~~~~~~~~~ ---------- ----------
Buffer Cache: 2,288M 2,288M Std Block Size: 8K
Shared Pool Size: 592M 592M Log Buffer: 8,168K
Load Profile Per Second Per Transaction Per Exec Per Call
~~~~~~~~~~~~ --------------- --------------- ---------- ----------
DB Time(s): 0.3 0.1 0.01 0.01
DB CPU(s): 0.2 0.1 0.01 0.01
Redo size: 6,474,344.5 2,280,490.7
Logical reads: 47,986.5 16,902.5
Block changes: 32,665.2 11,505.8
Physical reads: 3.6 1.3
Physical writes: 696.2 245.2
User calls: 40.3 14.2
Parses: 6.0 2.1
Hard parses: 1.0 0.4
W/A MB processed: 0.1 0.0
Logons: 0.1 0.0
Executes: 43.9 15.5
Rollbacks: 0.0 0.0
Transactions: 2.8
Instance Efficiency Percentages (Target 100%)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Buffer Nowait %: 100.00 Redo NoWait %: 100.00
Buffer Hit %: 99.99 In-memory Sort %: 100.00
Library Hit %: 99.90 Soft Parse %: 83.03
Execute to Parse %: 86.27 Latch Hit %: 100.00
Parse CPU to Parse Elapsd %: 100.00 % Non-Parse CPU: 99.43
Shared Pool Statistics Begin End
------ ------
Memory Usage %: 81.06 80.85
% SQL with executions>1: 83.36 82.86
% Memory for SQL w/exec>1: 83.73 82.79
Top 5 Timed Foreground Events
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Avg
wait % DB
Event Waits Time(s) (ms) time Wait Class
------------------------------ ------------ ----------- ------ ------ ----------
DB CPU 206 69.4
db file sequential read 3,166 4 1 1.3 User I/O
log file sync 2,274 4 2 1.3 Commit
SQL*Net more data from client 130,612 2 0 .7 Network
control file sequential read 183 0 0 .0 System I/O
Host CPU (CPUs: 4 Cores: 4 Sockets: 1)
~~~~~~~~ Load Average
Begin End %User %System %WIO %Idle
--------- --------- --------- --------- --------- ---------
8.3 1.9 89.8
Instance CPU
~~~~~~~~~~~~
% of total CPU for Instance: 5.9
% of busy CPU for Instance: 58.2
%DB time waiting for CPU - Resource Mgr: 0.0
Memory Statistics
~~~~~~~~~~~~~~~~~ Begin End
Host Mem (MB): 12,275.1 12,275.1
SGA use (MB): 2,944.0 2,944.0
PGA use (MB): 142.9 141.9
% Host Mem used for SGA+PGA: 25.15 25.14
Time Model Statistics DB/Inst: GLDB/gldb Snaps: 908-909
-> Total time in database user-calls (DB Time): 296.8s
-> 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 289.3 97.5
DB CPU 205.9 69.4
parse time elapsed 1.7 .6
hard parse elapsed time 1.4 .5
PL/SQL execution elapsed time 0.6 .2
connection management call elapsed time 0.1 .0
hard parse (sharing criteria) elapsed time 0.1 .0
sequence load elapsed time 0.0 .0
PL/SQL compilation elapsed time 0.0 .0
failed parse elapsed time 0.0 .0
repeated bind elapsed time 0.0 .0
DB time 296.8
background elapsed time 76.6
background cpu time 8.0
-------------------------------------------------------------
Operating System Statistics DB/Inst: GLDB/gldb Snaps: 908-909
-> *TIME statistic values are diffed.
All others display actual values. End Value is displayed if different
-> ordered by statistic type (CPU Use, Virtual Memory, Hardware Config), Name
Statistic Value End Value
------------------------- ---------------------- ----------------
AVG_BUSY_TIME 9,171
AVG_IDLE_TIME 81,169
AVG_SYS_TIME 1,652
AVG_USER_TIME 7,489
BUSY_TIME 36,760
IDLE_TIME 324,768
SYS_TIME 6,710
USER_TIME 30,050
RSRC_MGR_CPU_WAIT_TIME 0
VM_IN_BYTES -1.092801967843192E+19
VM_OUT_BYTES 2.9713202226630656E+16
PHYSICAL_MEMORY_BYTES 12,871,364,608
NUM_CPUS 4
NUM_CPU_CORES 4
NUM_CPU_SOCKETS 1
-------------------------------------------------------------
Operating System Statistics - Detail DB/Inst: GLDB/gldb Snaps: 908-909
Snap Time Load %busy %user %sys %idle %iowait
--------------- -------- -------- -------- -------- -------- --------
17-Oct 15:45:42 0.0 N/A N/A N/A N/A N/A
17-Oct 16:00:45 0.0 10.2 8.3 1.9 89.8 0.0
-------------------------------------------------------------
Foreground Wait Class DB/Inst: GLDB/gldb Snaps: 908-909
-> s - second, ms - millisecond - 1000th of a second
-> ordered by wait time desc, waits desc
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
-> Captured Time accounts for 72.6% of Total DB time 296.76 (s)
-> Total FG Wait Time: 9.66 (s) DB CPU time: 205.91 (s)
Avg
%Time Total Wait wait
Wait Class Waits -outs Time (s) (ms) %DB time
-------------------- ---------------- ----- ---------------- -------- ---------
DB CPU 206 69.4
User I/O 3,217 0 4 1 1.3
Commit 2,274 0 4 2 1.3
Network 166,459 0 2 0 0.7
System I/O 183 0 0 0 0.0
Configuration 1 0 0 15 0.0
Application 60 0 0 0 0.0
Other 209 97 0 0 0.0
Concurrency 0 0 0.0
-------------------------------------------------------------
Foreground Wait Events DB/Inst: GLDB/gldb Snaps: 908-909
-> s - second, ms - millisecond - 1000th of a second
-> Only events with Total Wait Time (s) >= .001 are shown
-> ordered by wait time desc, waits desc (idle events last)
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % DB
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
db file sequential read 3,166 0 4 1 1.2 1.3
log file sync 2,274 0 4 2 0.9 1.3
SQL*Net more data from cli 130,612 0 2 0 50.9 .7
control file sequential re 183 0 0 0 0.1 .0
SQL*Net message to client 35,833 0 0 0 14.0 .0
Disk file operations I/O 50 0 0 0 0.0 .0
log file switch (private s 1 0 0 15 0.0 .0
SQL*Net break/reset to cli 60 0 0 0 0.0 .0
ADR block file read 6 0 0 0 0.0 .0
SQL*Net message from clien 35,833 0 6,097 170 14.0
jobq slave wait 1,848 100 950 514 0.7
Streams AQ: waiting for me 181 100 906 5007 0.1
wait for unread message on 910 98 904 993 0.4
-------------------------------------------------------------
Background Wait Events DB/Inst: GLDB/gldb Snaps: 908-909
-> ordered by wait time desc, waits desc (idle events last)
-> Only events with Total Wait Time (s) >= .001 are shown
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % bg
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
log file parallel write 8,590 0 35 4 3.3 45.7
db file parallel write 37,712 0 29 1 14.7 37.8
control file sequential re 1,221 0 2 1 0.5 2.1
control file parallel writ 460 0 0 1 0.2 .6
os thread startup 35 0 0 5 0.0 .2
db file sequential read 84 0 0 1 0.0 .1
LGWR wait for redo copy 820 0 0 0 0.3 .0
direct path read 6 0 0 1 0.0 .0
log file sequential read 2 0 0 2 0.0 .0
log file sync 1 0 0 3 0.0 .0
Disk file operations I/O 20 0 0 0 0.0 .0
direct path write 4 0 0 0 0.0 .0
rdbms ipc message 13,266 28 9,867 744 5.2
DIAG idle wait 1,782 100 1,807 1014 0.7
Streams AQ: qmn slave idle 34 0 925 27193 0.0
Streams AQ: qmn coordinato 66 50 925 14008 0.0
Space Manager: slave idle 181 99 905 4998 0.1
pmon timer 323 93 903 2796 0.1
shared server idle wait 30 100 900 30014 0.0
dispatcher timer 15 100 900 60012 0.0
smon timer 3 100 900 300012 0.0
SQL*Net message from clien 57 0 0 1 0.0
-------------------------------------------------------------
Wait Event Histogram DB/Inst: GLDB/gldb Snaps: 908-909
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> % of Waits: value of .0 indicates value was <.05%; value of null is truly 0
-> % of Waits: column heading of <=1s is truly <1024ms, >1s is truly >=1024ms
-> Ordered by Event (idle events last)
% of Waits
-----------------------------------------------
Total
Event Waits <1ms <2ms <4ms <8ms <16ms <32ms <=1s >1s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
ADR block file read 6 100.0
Disk file operations I/O 70 92.9 4.3 1.4 1.4
LGWR wait for redo copy 819 100.0
SQL*Net break/reset to cli 60 100.0
SQL*Net message to client 35.9K 100.0
SQL*Net more data from cli 130.6 100.0
SQL*Net more data to clien 16 100.0
asynch descriptor resize 255 100.0
buffer busy waits 1 100.0
control file parallel writ 460 98.9 .4 .2 .2 .2
control file sequential re 1404 84.2 7.8 7.0 .9 .1 .1
db file parallel write 37.7K 87.7 5.7 3.2 3.2 .1 .1 .1
db file sequential read 3269 92.3 1.1 2.5 2.4 1.1 .5 .1
direct path read 6 83.3 16.7
direct path write 4 100.0
direct path write temp 1 100.0
latch free 1 100.0
latch: messages 1 100.0
latch: object queue header 2 100.0
log file parallel write 8588 30.3 3.2 5.1 58.7 1.1 1.1 .6
log file sequential read 2 100.0
log file single write 2 100.0
log file switch (private s 1 100.0
log file sync 2272 75.4 10.2 11.9 1.1 .6 .5 .4
os thread startup 35 100.0
DIAG idle wait 1782 100.0
SQL*Net message from clien 35.9K 19.9 33.8 4.5 .8 .9 1.8 37.8 .5
Space Manager: slave idle 181 100.0
Streams AQ: qmn coordinato 66 50.0 50.0
Streams AQ: qmn slave idle 34 2.9 97.1
Streams AQ: waiting for me 180 100.0
class slave wait 5 100.0
dispatcher timer 15 100.0
jobq slave wait 1846 100.0
pmon timer 325 7.4 92.6
rdbms ipc message 13.3K 12.6 .3 7.0 1.0 .8 1.4 56.8 20.1
shared server idle wait 30 100.0
smon timer 3 100.0
wait for unread message on 910 1.1 .7 .2 98.0
-------------------------------------------------------------
Wait Event Histogram Detail (64 msec to 2 sec)DB/Inst: GLDB/gldb Snaps: 908-
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> Units for % of Total Waits:
ms is milliseconds
s is 1024 milliseconds (approximately 1 second)
-> % of Total Waits: total waits for all wait classes, including Idle
-> % of Total Waits: value of .0 indicates value was <.05%;
value of null is truly 0
-> Ordered by Event (only non-idle events are displayed)
% of Total Waits
-----------------------------------------------
Waits
64ms
Event to 2s <32ms <64ms <1/8s <1/4s <1/2s <1s <2s >=2s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
control file parallel writ 1 99.8 .2
control file sequential re 1 99.9 .1
db file parallel write 21 99.9 .0 .0 .0
db file sequential read 4 99.9 .0 .0 .1
log file parallel write 49 99.4 .2 .3 .0 .0
log file sync 8 99.6 .2 .1 .0
-------------------------------------------------------------
Wait Event Histogram Detail (4 sec to 2 min)DB/Inst: GLDB/gldb Snaps: 908-90
No data exists for this section of the report.
-------------------------------------------------------------
Wait Event Histogram Detail (4 min to 1 hr)DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Service Statistics DB/Inst: GLDB/gldb Snaps: 908-909
-> ordered by DB Time
Physical Logical
Service Name DB Time (s) DB CPU (s) Reads (K) Reads (K)
---------------------------- ------------ ------------ ------------ ------------
gldb 295 205 3 43,338
SYS$USERS 1 1 0 26
SYS$BACKGROUND 0 0 0 6
gldbXDB 0 0 0 0
-------------------------------------------------------------
Service Wait Class Stats DB/Inst: GLDB/gldb Snaps: 908-909
-> Wait Class info for services in the Service Statistics section.
-> Total Waits and Time Waited displayed for the following wait
classes: User I/O, Concurrency, Administrative, Network
-> Time Waited (Wt Time) in seconds
Service Name
----------------------------------------------------------------
User I/O User I/O Concurcy Concurcy Admin Admin Network Network
Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time
--------- --------- --------- --------- --------- --------- --------- ---------
gldb
3033 4 0 0 0 0 165792 2
SYS$USERS
184 0 0 0 0 0 665 0
SYS$BACKGROUND
112 0 36 0 0 0 0 0
-------------------------------------------------------------
SQL ordered by Elapsed Time DB/Inst: GLDB/gldb Snaps: 908-909
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> % Total DB Time is the Elapsed Time of the SQL statement divided
into the Total Database Time multiplied by 100
-> %Total - Elapsed Time as a percentage of Total DB time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 97.1% of Total DB Time (s): 297
-> Captured PL/SQL account for 0.4% of Total DB Time (s): 297
Elapsed Elapsed Time
Time (s) Executions per Exec (s) %Total %CPU %IO SQL Id
---------------- -------------- ------------- ------ ------ ------ -------------
286.0 27,666 0.01 96.4 70.8 1.3 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
0.4 15 0.03 .1 3.5 10.3 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
0.4 1 0.38 .1 99.6 .0 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.4 1 0.37 .1 95.8 .8 dayq182sk41ks
insert into wrh$_memory_target_advice (snap_id, dbid, instance_number, memo
ry_size, memory_size_factor, estd_db_time, estd_db_time_factor, version) sel
ect :snap_id, :dbid, :instance_number, memory_size, memory_size_factor,
estd_db_time, estd_db_time_factor, version from v$memory_target_advice
0.4 1 0.37 .1 96.7 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.2 356 0.00 .1 .0 .0 6v7n0y2bq89n8
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
0.2 30 0.01 .1 .0 .0 2b064ybzkwf1y
Module: OEM.SystemPool
BEGIN EMD_NOTIFICATION.QUEUE_READY(:1, :2, :3); END;
0.1 891 0.00 .0 .0 .0 1umfsnn451yuu
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
0.1 1 0.09 .0 69.7 4.1 05q4hp8hzdv27
Module: emagent_SQL_oracle_database
/* OracleOEM */ DECLARE rep
t varchar2(4000); rref varchar2(400
0); key_enable varchar2(20);
autoimpl_enable varchar2(20); key_count
0.1 1 0.07 .0 93.1 .0 a8j39qb13tqkr
Module: emagent_SQL_oracle_database
SELECT :B1 TASK_ID, F.FINDING_ID FINDING_ID,DECODE(RECINFO.TYPE,NULL, 'Uncategor
ized',RECINFO.TYPE) REC_TYPE, RECINFO.RECCOUNT REC_COUNT, F.PERC_ACTIVE_SESS IMP
ACT_PCT, F.MESSAGE MESSAGE, TO_DATE(:B3 ,'MM-DD-YYYY HH24:MI:SS') START_TIME, TO
_DATE(:B2 ,'MM-DD-YYYY HH24:MI:SS') END_TIME, HISTORY.FINDING_COUNT FINDING_COUN
-------------------------------------------------------------
SQL ordered by CPU Time DB/Inst: GLDB/gldb Snaps: 908-909
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - CPU Time as a percentage of Total DB CPU
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 99.2% of Total CPU Time (s): 206
-> Captured PL/SQL account for 0.1% of Total CPU Time (s): 206
CPU CPU per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
202.5 27,666 0.01 98.4 286.0 70.8 1.3 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
0.4 1 0.37 0.2 0.4 99.6 .0 bunssq950snhf
insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZ
E, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbi
d, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_R
EADS from v$sga_target_advice
0.4 1 0.36 0.2 0.4 96.7 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.4 1 0.36 0.2 0.4 95.8 .8 dayq182sk41ks
insert into wrh$_memory_target_advice (snap_id, dbid, instance_number, memo
ry_size, memory_size_factor, estd_db_time, estd_db_time_factor, version) sel
ect :snap_id, :dbid, :instance_number, memory_size, memory_size_factor,
estd_db_time, estd_db_time_factor, version from v$memory_target_advice
0.1 539 0.00 0.0 0.1 138.3 .0 df9md17q736da
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
0.1 1 0.06 0.0 0.1 69.7 4.1 05q4hp8hzdv27
Module: emagent_SQL_oracle_database
/* OracleOEM */ DECLARE rep
t varchar2(4000); rref varchar2(400
0); key_enable varchar2(20);
autoimpl_enable varchar2(20); key_count
0.1 1 0.06 0.0 0.1 93.1 .0 a8j39qb13tqkr
Module: emagent_SQL_oracle_database
SELECT :B1 TASK_ID, F.FINDING_ID FINDING_ID,DECODE(RECINFO.TYPE,NULL, 'Uncategor
ized',RECINFO.TYPE) REC_TYPE, RECINFO.RECCOUNT REC_COUNT, F.PERC_ACTIVE_SESS IMP
ACT_PCT, F.MESSAGE MESSAGE, TO_DATE(:B3 ,'MM-DD-YYYY HH24:MI:SS') START_TIME, TO
_DATE(:B2 ,'MM-DD-YYYY HH24:MI:SS') END_TIME, HISTORY.FINDING_COUNT FINDING_COUN
0.0 3 0.02 0.0 0.0 129.7 3.0 f7avyaak96kdg
Module: OEM.DefaultPool
SELECT count(*) FROM dba_users WHERE expiry_date-sysdate<=14 AND LOCK_DATE IS
NULL AND UPPER(username)=:1
0.0 5 0.01 0.0 0.0 299.6 .0 00prz3j9n4gyj
Module: Oracle Enterprise Manager.rollup
SELECT METRIC_GUID, TRUNC(COLLECTION_TIMESTAMP, 'HH24'), KEY_VALUE, COUNT(TARGET
_GUID), AVG(VALUE), MIN(VALUE), MAX(VALUE), STDDEV(VALUE) FROM MGMT_METRICS_RAW
WHERE TARGET_GUID = :B3 AND COLLECTION_TIMESTAMP >= (:B2 +(1/24)) AND COLLECTION
_TIMESTAMP < (:B1 +(1/24)) AND VALUE IS NOT NULL GROUP BY TARGET_GUID, METRIC_GU
0.0 1 0.05 0.0 0.0 102.4 .0 bk92qjq4yww79
Module: emagent_SQL_oracle_database
SELECT /*+ leading(oe f r l) */ /* STN_REPT_TOP_PROF */
xmlelement( "top_profiles", xmlagg(xmleleme
nt("obj_id", object_id))) FROM (SELECT task_id, exec_name, exec_id, ex
SQL ordered by CPU Time DB/Inst: GLDB/gldb Snaps: 908-909
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - CPU Time as a percentage of Total DB CPU
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 99.2% of Total CPU Time (s): 206
-> Captured PL/SQL account for 0.1% of Total CPU Time (s): 206
CPU CPU per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
ec_start, object_id, sql_id, parsing_schema, phv, obj_attr8
-------------------------------------------------------------
SQL ordered by User I/O Wait Time DB/Inst: GLDB/gldb Snaps: 908-909
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - User I/O Time as a percentage of Total User I/O Wait time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 97.7% of Total User I/O Wait Time (s):
-> Captured PL/SQL account for 2.6% of Total User I/O Wait Time (s):
User I/O UIO per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
3.6 27,666 0.00 95.3 286.0 70.8 1.3 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
0.0 15 0.00 1.2 0.4 3.5 10.3 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
0.0 5 0.01 1.1 0.1 30.9 83.5 6d9gv6u9vn1mf
Module: Oracle Enterprise Manager.rollup
INSERT INTO MGMT_METRICS_1HOUR ( TARGET_GUID, METRIC_GUID, ROLLUP_TIMESTAMP, KEY
_VALUE, SAMPLE_COUNT, VALUE_AVERAGE, VALUE_MINIMUM, VALUE_MAXIMUM, VALUE_SDEV )
VALUES ( :B9 , :B1 , :B2 , :B3 , :B4 , :B5 , :B6 , :B7 , :B8 )
0.0 10 0.00 0.7 0.0 .0 94.8 cvn54b7yz0s8u
select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#,length,piece from idl_ub1$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
0.0 1 0.02 0.7 0.0 .0 73.6 fvm2hgcu27qqr
Module: OEM.DefaultPool
begin em_license.get_target_packs(:1); end;
0.0 1 0.01 0.3 0.0 83.8 35.3 aqm4v6p0t9snb
Module: OEM.DefaultPool
BEGIN :1 := MGMT_CREDENTIAL.get_target_creds_default(:2,:3,:4,:5); END;
0.0 3 0.00 0.3 0.0 36.7 24.5 7j23tu2qk35zj
Module: emagent_SQL_oracle_database
/* OracleOEM */ BEGIN IF (:1 = 'READ WRITE' AND (:2 = '2' OR :2 = '3')) THEN
---- -- For a read-write database appropriately configured, try to evalu
ate. ---- dbsnmp.mgmt_response.get_metric_curs(:3); ELSE ----
-- For a read-only database, do not evaluate, but rather return an empty --
0.0 26 0.00 0.2 0.0 .0 78.1 db78fxqxwxt7r
select /*+ rule */ bucket, endpoint, col#, epvalue from histgrm$ where obj#=:1 a
nd intcol#=:2 and row#=:3 order by bucket
0.0 1 0.00 0.1 0.1 69.7 4.1 05q4hp8hzdv27
Module: emagent_SQL_oracle_database
/* OracleOEM */ DECLARE rep
t varchar2(4000); rref varchar2(400
0); key_enable varchar2(20);
autoimpl_enable varchar2(20); key_count
0.0 1 0.00 0.1 0.0 57.2 13.4 cxt1cbqk1jrkp
Module: emagent_SQL_oracle_database
SELECT DECODE(COUNT(*), 0, 'DISABLED', 'ENABLED') STATUS FROM DBA_AUTOTASK_WINDO
W_CLIENTS WHERE SQL_TUNE_ADVISOR = 'ENABLED' AND AUTOTASK_STATUS = 'ENABLED'
-------------------------------------------------------------
SQL ordered by Gets DB/Inst: GLDB/gldb Snaps: 908-909
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - Buffer Gets as a percentage of Total Buffer Gets
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Buffer Gets: 43,371,883
-> Captured SQL account for 99.9% of Total
Buffer Gets Elapsed
Gets Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ------------ ------ ---------- ------ ------ -----------
43,303,874 27,666 1,565.2 99.8 286.0 70.8 1.3 7k1usds2tau
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
11,152 15 743.5 0.0 0.4 3.5 10.3 6gvch1xu9ca
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
6,237 1 6,237.0 0.0 0.1 69.7 4.1 05q4hp8hzdv
Module: emagent_SQL_oracle_database
/* OracleOEM */ DECLARE rep
t varchar2(4000); rref varchar2(400
0); key_enable varchar2(20);
autoimpl_enable varchar2(20); key_count
5,052 1 5,052.0 0.0 0.0 102.4 .0 bk92qjq4yww
Module: emagent_SQL_oracle_database
SELECT /*+ leading(oe f r l) */ /* STN_REPT_TOP_PROF */
xmlelement( "top_profiles", xmlagg(xmleleme
nt("obj_id", object_id))) FROM (SELECT task_id, exec_name, exec_id, ex
ec_start, object_id, sql_id, parsing_schema, phv, obj_attr8
2,808 796 3.5 0.0 0.0 .0 .0 cm5vu20fhtn
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
2,635 891 3.0 0.0 0.1 .0 .0 1umfsnn451y
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
2,347 248 9.5 0.0 0.0 123.0 2.4 8vwv6hx92ym
UPDATE MGMT_CURRENT_METRICS SET COLLECTION_TIMESTAMP = :B1 , VALUE = :B6 , STRIN
G_VALUE = :B5 WHERE TARGET_GUID = :B4 AND METRIC_GUID = :B3 AND KEY_VALUE = :B2
AND COLLECTION_TIMESTAMP < :B1
2,153 539 4.0 0.0 0.1 138.3 .0 df9md17q736
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
2,100 30 70.0 0.0 0.2 .0 .0 2b064ybzkwf
Module: OEM.SystemPool
BEGIN EMD_NOTIFICATION.QUEUE_READY(:1, :2, :3); END;
1,958 356 5.5 0.0 0.2 .0 .0 6v7n0y2bq89
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
-------------------------------------------------------------
SQL ordered by Reads DB/Inst: GLDB/gldb Snaps: 908-909
-> %Total - Physical Reads as a percentage of Total Disk Reads
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Disk Reads: 3,267
-> Captured SQL account for 95.8% of Total
Physical Reads Elapsed
Reads Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ---------- ------ ---------- ------ ------ -------------
2,942 27,666 0.1 90.1 286.0 70.8 1.3 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
125 15 8.3 3.8 0.4 3.5 10.3 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
119 5 23.8 3.6 0.1 30.9 83.5 6d9gv6u9vn1mf
Module: Oracle Enterprise Manager.rollup
INSERT INTO MGMT_METRICS_1HOUR ( TARGET_GUID, METRIC_GUID, ROLLUP_TIMESTAMP, KEY
_VALUE, SAMPLE_COUNT, VALUE_AVERAGE, VALUE_MINIMUM, VALUE_MAXIMUM, VALUE_SDEV )
VALUES ( :B9 , :B1 , :B2 , :B3 , :B4 , :B5 , :B6 , :B7 , :B8 )
37 10 3.7 1.1 0.0 .0 94.8 cvn54b7yz0s8u
select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#,length,piece from idl_ub1$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
35 1 35.0 1.1 0.0 83.8 35.3 aqm4v6p0t9snb
Module: OEM.DefaultPool
BEGIN :1 := MGMT_CREDENTIAL.get_target_creds_default(:2,:3,:4,:5); END;
21 1 21.0 0.6 0.0 .0 73.6 fvm2hgcu27qqr
Module: OEM.DefaultPool
begin em_license.get_target_packs(:1); end;
13 26 0.5 0.4 0.0 .0 78.1 db78fxqxwxt7r
select /*+ rule */ bucket, endpoint, col#, epvalue from histgrm$ where obj#=:1 a
nd intcol#=:2 and row#=:3 order by bucket
6 3 2.0 0.2 0.0 36.7 24.5 7j23tu2qk35zj
Module: emagent_SQL_oracle_database
/* OracleOEM */ BEGIN IF (:1 = 'READ WRITE' AND (:2 = '2' OR :2 = '3')) THEN
---- -- For a read-write database appropriately configured, try to evalu
ate. ---- dbsnmp.mgmt_response.get_metric_curs(:3); ELSE ----
-- For a read-only database, do not evaluate, but rather return an empty --
5 2 2.5 0.2 0.0 112.7 6.2 5wgq3hv02cdss
Module: Admin Connection
select sn.snap_id, sn.instance_number, sn.end_interval_time, sn.snap_level, (sel
ect unique 1 from dba_hist_baseline b where (sn.snap_id >= b.start_snap_id) and
b.dbid = :1 and (sn.snap_id <= b.end_snap_id) and b.baseline_name != 'SYSTEM_MOV
ING_WINDOW') within_baseline_range, startup_time from dba_hist_snapshot sn where
4 3 1.3 0.1 0.0 129.7 3.0 f7avyaak96kdg
Module: OEM.DefaultPool
SELECT count(*) FROM dba_users WHERE expiry_date-sysdate<=14 AND LOCK_DATE IS
NULL AND UPPER(username)=:1
-------------------------------------------------------------
SQL ordered by Physical Reads (UnOptimized)DB/Inst: GLDB/gldb Snaps: 908-909
-> UnOptimized Read Reqs = Physical Read Reqts - Optimized Read Reqs
-> %Opt - Optimized Reads as percentage of SQL Read Requests
-> %Total - UnOptimized Read Reqs as a percentage of Total UnOptimized Read Reqs
-> Total Physical Read Requests: 3,267
-> Captured SQL account for 91.5% of Total
-> Total UnOptimized Read Requests: 3,267
-> Captured SQL account for 91.5% of Total
-> Total Optimized Read Requests: 1
-> Captured SQL account for 0.0% of Total
UnOptimized Physical UnOptimized
Read Reqs Read Reqs Executions Reqs per Exe %Opt %Total SQL Id
----------- ----------- ---------- ------------ ------ ------ -------------
2,942 2,942 27,666 0.1 0.0 90.1 7k1usds2tau95
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
125 125 15 8.3 0.0 3.8 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
86 86 1 86.0 0.0 2.6 1qhza1uh1xcf9
Module: emagent_SQL_oracle_database
/* OracleOEM */ DECLARE l_log_mode VARCHAR2(32); l_flashback_on VARCHAR2(32
); l_flash_recovery_area VARCHAR2(512); l_flash_recovery_size NUMBER; l_us
able_area NUMBER; l_space_used NUMBER; l_reclaimable_area NUMBER; l_nonrec
laimable_area NUMBER; l_oldest_flashback_time VARCHAR2(512); TYPE data_curs
37 37 10 3.7 0.0 1.1 cvn54b7yz0s8u
select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#,length,piece from idl_ub1$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
35 35 1 35.0 0.0 1.1 aqm4v6p0t9snb
Module: OEM.DefaultPool
BEGIN :1 := MGMT_CREDENTIAL.get_target_creds_default(:2,:3,:4,:5); END;
21 21 1 21.0 0.0 0.6 fvm2hgcu27qqr
Module: OEM.DefaultPool
begin em_license.get_target_packs(:1); end;
10 10 22 0.5 0.0 0.3 49s332uhbnsma
declare vsn varchar2(20); begin vsn :=
dbms_rcvman.getPackageVersion; :pkg_vsn:pkg_vsn_i := vsn;
if vsn is not null then :pkg_vsnub4 :=
to_number(substr(vsn,1,2) || substr(vsn,4,2) || s
6 6 3 2.0 0.0 0.2 7j23tu2qk35zj
Module: emagent_SQL_oracle_database
/* OracleOEM */ BEGIN IF (:1 = 'READ WRITE' AND (:2 = '2' OR :2 = '3')) THEN
---- -- For a read-write database appropriately configured, try to evalu
ate. ---- dbsnmp.mgmt_response.get_metric_curs(:3); ELSE ----
-- For a read-only database, do not evaluate, but rather return an empty --
4 4 3 1.3 0.0 0.1 f7avyaak96kdg
Module: OEM.DefaultPool
SELECT count(*) FROM dba_users WHERE expiry_date-sysdate<=14 AND LOCK_DATE IS
NULL AND UPPER(username)=:1
2 2 8 0.3 0.0 0.1 1gu8t96d0bdmu
select t.ts#,t.file#,t.block#,nvl(t.bobj#,0),nvl(t.tab#,0),t.intcols,nvl(t.cluco
ls,0),t.audit$,t.flags,t.pctfree$,t.pctused$,t.initrans,t.maxtrans,t.rowcnt,t.bl
kcnt,t.empcnt,t.avgspc,t.chncnt,t.avgrln,t.analyzetime,t.samplesize,t.cols,t.pro
perty,nvl(t.degree,1),nvl(t.instances,1),t.avgspc_flb,t.flbcnt,t.kernelcols,nvl(
-------------------------------------------------------------
SQL ordered by Executions DB/Inst: GLDB/gldb Snaps: 908-909
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Executions: 39,705
-> Captured SQL account for 84.3% of Total
Elapsed
Executions Rows Processed Rows per Exec Time (s) %CPU %IO SQL Id
------------ --------------- -------------- ---------- ------ ------ -----------
27,666 2,766,000 100.0 286.0 70.8 1.3 7k1usds2tau
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
891 569 0.6 0.1 .0 .0 1umfsnn451y
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
796 1,176 1.5 0.0 .0 .0 cm5vu20fhtn
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
757 757 1.0 0.0 .0 .0 8t43xdhf4d9
Module: OEM.BoundedPool
SELECT CONTEXT_TYPE_ID,CONTEXT_TYPE,TRACE_LEVEL,NULL,NULL FROM EMDW_TRACE_CONFIG
WHERE CONTEXT_TYPE = UPPER(:B1 )
568 568 1.0 0.0 .0 .0 0ysq85ju8aj
Module: OdbcDbTrace64.exe
INSERT INTO DbLoaderStatus ( LoaderName, ProbeName, IpAddrPort, Status,OkFrameCo
unt, ErrorFrameCount) VALUES ( :1, :2, :3, :4, :5, :6 )
539 539 1.0 0.1 138.3 .0 df9md17q736
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
466 466 1.0 0.0 .0 .0 089dbukv1aa
Module: EM_PING
SELECT SYS_EXTRACT_UTC(SYSTIMESTAMP) FROM DUAL
356 356 1.0 0.2 .0 .0 6v7n0y2bq89
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
304 304 1.0 0.0 121.0 .0 bsa0wjtftg3
select file# from file$ where ts#=:1
248 248 1.0 0.0 123.0 2.4 8vwv6hx92ym
UPDATE MGMT_CURRENT_METRICS SET COLLECTION_TIMESTAMP = :B1 , VALUE = :B6 , STRIN
G_VALUE = :B5 WHERE TARGET_GUID = :B4 AND METRIC_GUID = :B3 AND KEY_VALUE = :B2
AND COLLECTION_TIMESTAMP < :B1
-------------------------------------------------------------
SQL ordered by Parse Calls DB/Inst: GLDB/gldb Snaps: 908-909
-> Total Parse Calls: 5,452
-> Captured SQL account for 48.6% of Total
% Total
Parse Calls Executions Parses SQL Id
------------ ------------ --------- -------------
796 796 14.60 cm5vu20fhtnq1
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
539 539 9.89 df9md17q736da
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
304 304 5.58 bsa0wjtftg3uw
select file# from file$ where ts#=:1
210 210 3.85 3972rvxu3knn3
Module: emagent_AQMetrics
delete from sdo_geor_ddl__table$$
95 95 1.74 g00cj285jmgsw
update sys.mon_mods$ set inserts = inserts + :ins, updates = updates + :upd, del
etes = deletes + :del, flags = (decode(bitand(flags, :flag), :flag, flags, flags
+ :flag)), drop_segments = drop_segments + :dropseg, timestamp = :time where ob
j# = :objn
67 67 1.23 43c5ykm1mcp2a
Module: OMS
begin dbms_application_info.set_module(:1, :2); dbms_application_info.set_client
_info(:3); dbms_session.set_identifier(:4); end;
64 64 1.17 a4ct9tx8f9d4a
Module: OMS
begin execute immediate 'alter session set NLS_NUMERIC_CHARACTERS = ''.,'''; end
;
63 63 1.16 0kkhhb2w93cx0
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,e
xtpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decod
e(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:
17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
63 63 1.16 81ky0n97v4zsg
Module: emagent_SQL_oracle_database
/* OracleOEM */ select s.sid, s.serial# from v$session s where s.sid = (select s
id from v$mystat where rownum=1)
58 58 1.06 1ytruncyx2kdb
Module: OEM.DefaultPool
BEGIN MGMT_HTTP_SESSION.session_expired(:1); END;
-------------------------------------------------------------
SQL ordered by Sharable Memory DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
SQL ordered by Version Count DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 908-909
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
Batched IO (bound) vector count 0 0.0 0.0
Batched IO (full) vector count 0 0.0 0.0
Batched IO block miss count 0 0.0 0.0
Batched IO double miss count 0 0.0 0.0
Batched IO same unit count 0 0.0 0.0
Batched IO single block count 0 0.0 0.0
Batched IO vector block count 0 0.0 0.0
Batched IO vector read count 0 0.0 0.0
Block Cleanout Optim referenced 7,361 8.1 2.9
CCursor + sql area evicted 1 0.0 0.0
CPU used by this session 20,624 22.8 8.0
CPU used when call started 20,581 22.8 8.0
CR blocks created 103 0.1 0.0
Cached Commit SCN referenced 0 0.0 0.0
Commit SCN cached 0 0.0 0.0
DB time 302,891 335.1 118.0
DBWR checkpoint buffers written 214,831 237.7 83.7
DBWR checkpoints 1 0.0 0.0
DBWR object drop buffers written 0 0.0 0.0
DBWR parallel query checkpoint b 0 0.0 0.0
DBWR revisited being-written buf 0 0.0 0.0
DBWR tablespace checkpoint buffe 0 0.0 0.0
DBWR thread checkpoint buffers w 0 0.0 0.0
DBWR transaction table writes 30 0.0 0.0
DBWR undo block writes 243,684 269.6 95.0
DFO trees parallelized 0 0.0 0.0
HSC Heap Segment Block Changes 2,770,498 3,065.3 1,079.7
Heap Segment Array Inserts 85 0.1 0.0
Heap Segment Array Updates 89 0.1 0.0
IMU CR rollbacks 97 0.1 0.0
IMU Flushes 1,162 1.3 0.5
IMU Redo allocation size 52,837,684 58,459.4 20,591.5
IMU commits 1,652 1.8 0.6
IMU contention 15 0.0 0.0
IMU ktichg flush 4 0.0 0.0
IMU pool not allocated 10 0.0 0.0
IMU recursive-transaction flush 89 0.1 0.0
IMU undo allocation size 31,345,592 34,680.7 12,215.7
IMU- failed to get a private str 10 0.0 0.0
LOB table id lookup cache misses 0 0.0 0.0
Number of read IOs issued 0 0.0 0.0
PX local messages recv'd 0 0.0 0.0
PX local messages sent 0 0.0 0.0
Parallel operations not downgrad 0 0.0 0.0
RowCR attempts 13 0.0 0.0
RowCR hits 13 0.0 0.0
SMON posted for undo segment shr 0 0.0 0.0
SQL*Net roundtrips to/from clien 35,834 39.7 14.0
TBS Extension: bytes extended 0 0.0 0.0
TBS Extension: files extended 0 0.0 0.0
TBS Extension: tasks created 0 0.0 0.0
TBS Extension: tasks executed 0 0.0 0.0
active txn count during cleanout 186,476 206.3 72.7
application wait time 1 0.0 0.0
background checkpoints completed 2 0.0 0.0
background checkpoints started 1 0.0 0.0
background timeouts 3,775 4.2 1.5
branch node splits 221 0.2 0.1
buffer is not pinned count 24,271 26.9 9.5
buffer is pinned count 176,544 195.3 68.8
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 908-909
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
bytes received via SQL*Net from 1,141,261,854 1,262,688.3 444,763.0
bytes sent via SQL*Net to client 5,201,207 5,754.6 2,027.0
calls to get snapshot scn: kcmgs 89,187 98.7 34.8
calls to kcmgas 334,139 369.7 130.2
calls to kcmgcs 394,916 436.9 153.9
cell physical IO interconnect by 11,270,482,432 12,469,623.8 4,392,237.9
change write time 4,820 5.3 1.9
cleanout - number of ktugct call 217,760 240.9 84.9
cleanouts and rollbacks - consis 0 0.0 0.0
cleanouts only - consistent read 2 0.0 0.0
cluster key scan block gets 203 0.2 0.1
cluster key scans 184 0.2 0.1
commit batch performed 0 0.0 0.0
commit batch requested 0 0.0 0.0
commit batch/immediate performed 41 0.1 0.0
commit batch/immediate requested 41 0.1 0.0
commit cleanout failures: block 3 0.0 0.0
commit cleanout failures: buffer 0 0.0 0.0
commit cleanout failures: callba 15,790 17.5 6.2
commit cleanouts 1,382,668 1,529.8 538.8
commit cleanouts successfully co 1,366,875 1,512.3 532.7
commit immediate performed 41 0.1 0.0
commit immediate requested 41 0.1 0.0
commit txn count during cleanout 71,925 79.6 28.0
concurrency wait time 18 0.0 0.0
consistent changes 227 0.3 0.1
consistent gets 342,736 379.2 133.6
consistent gets - examination 268,888 297.5 104.8
consistent gets direct 0 0.0 0.0
consistent gets from cache 342,736 379.2 133.6
consistent gets from cache (fast 64,112 70.9 25.0
cursor authentications 9 0.0 0.0
data blocks consistent reads - u 176 0.2 0.1
db block changes 29,523,945 32,665.2 11,505.8
db block gets 43,029,131 47,607.3 16,769.0
db block gets direct 1 0.0 0.0
db block gets from cache 43,029,128 47,607.3 16,769.0
db block gets from cache (fastpa 11,071,493 12,249.5 4,314.7
deferred (CURRENT) block cleanou 1,074,986 1,189.4 418.9
dirty buffers inspected 174,015 192.5 67.8
enqueue conversions 186 0.2 0.1
enqueue releases 104,087 115.2 40.6
enqueue requests 104,088 115.2 40.6
enqueue timeouts 0 0.0 0.0
enqueue waits 0 0.0 0.0
execute count 39,705 43.9 15.5
failed probes on index block rec 0 0.0 0.0
file io wait time 600,752,186 664,670.2 234,120.1
free buffer inspected 455,004 503.4 177.3
free buffer requested 444,332 491.6 173.2
heap block compress 18 0.0 0.0
hot buffers moved to head of LRU 72,242 79.9 28.2
immediate (CR) block cleanout ap 2 0.0 0.0
immediate (CURRENT) block cleano 129,872 143.7 50.6
index crx upgrade (positioned) 1,383 1.5 0.5
index crx upgrade (prefetch) 0 0.0 0.0
index fast full scans (direct re 0 0.0 0.0
index fast full scans (full) 11 0.0 0.0
index fast full scans (rowid ran 0 0.0 0.0
index fetch by key 7,833 8.7 3.1
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 908-909
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
index scans kdiixs1 10,836 12.0 4.2
leaf node 90-10 splits 12,855 14.2 5.0
leaf node splits 46,887 51.9 18.3
lob reads 0 0.0 0.0
lob writes 33 0.0 0.0
lob writes unaligned 33 0.0 0.0
logons cumulative 65 0.1 0.0
max cf enq hold time 1 0.0 0.0
messages received 47,002 52.0 18.3
messages sent 47,002 52.0 18.3
min active SCN optimization appl 11 0.0 0.0
no work - consistent read gets 19,461 21.5 7.6
non-idle wait count 224,541 248.4 87.5
non-idle wait time 7,592 8.4 3.0
opened cursors cumulative 7,629 8.4 3.0
parse count (describe) 0 0.0 0.0
parse count (failures) 12 0.0 0.0
parse count (hard) 925 1.0 0.4
parse count (total) 5,452 6.0 2.1
parse time cpu 117 0.1 0.1
parse time elapsed 117 0.1 0.1
physical read IO requests 3,267 3.6 1.3
physical read bytes 26,763,264 29,610.8 10,430.0
physical read total IO requests 4,683 5.2 1.8
physical read total bytes 49,900,544 55,209.8 19,446.8
physical read total multi block 0 0.0 0.0
physical reads 3,267 3.6 1.3
physical reads cache 3,255 3.6 1.3
physical reads cache prefetch 0 0.0 0.0
physical reads direct 12 0.0 0.0
physical reads direct (lob) 0 0.0 0.0
physical reads direct temporary 0 0.0 0.0
physical reads prefetch warmup 0 0.0 0.0
physical write IO requests 72,482 80.2 28.3
physical write bytes 5,154,652,160 5,703,089.8 2,008,827.8
physical write total IO requests 87,329 96.6 34.0
physical write total bytes 11,220,581,888 12,414,414.0 4,372,791.1
physical write total multi block 39,333 43.5 15.3
physical writes 629,230 696.2 245.2
physical writes direct 13 0.0 0.0
physical writes direct (lob) 0 0.0 0.0
physical writes direct temporary 1 0.0 0.0
physical writes from cache 629,217 696.2 245.2
physical writes non checkpoint 442,820 489.9 172.6
pinned buffers inspected 1 0.0 0.0
prefetch warmup blocks aged out 0 0.0 0.0
prefetched blocks aged out befor 0 0.0 0.0
process last non-idle time 0 0.0 0.0
queries parallelized 0 0.0 0.0
recursive calls 40,281 44.6 15.7
recursive cpu usage 298 0.3 0.1
redo blocks checksummed by FG (e 3,291,453 3,641.7 1,282.7
redo blocks written 11,818,077 13,075.5 4,605.6
redo buffer allocation retries 1 0.0 0.0
redo entries 14,857,313 16,438.1 5,790.1
redo log space requests 2 0.0 0.0
redo log space wait time 2 0.0 0.0
redo ordering marks 283,123 313.3 110.3
redo size 5,851,739,168 6,474,344.5 2,280,490.7
redo size for direct writes 0 0.0 0.0
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 908-909
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
redo subscn max counts 443,428 490.6 172.8
redo synch time 278 0.3 0.1
redo synch writes 2,485 2.8 1.0
redo wastage 2,358,072 2,609.0 919.0
redo write time 3,595 4.0 1.4
redo writes 8,590 9.5 3.4
rollback changes - undo records 85 0.1 0.0
rollbacks only - consistent read 103 0.1 0.0
root node splits 0 0.0 0.0
rows fetched via callback 2,455 2.7 1.0
scheduler wait time 0 0.0 0.0
session connect time 0 0.0 0.0
session cursor cache hits 6,615 7.3 2.6
session logical reads 43,371,883 47,986.5 16,902.5
shared hash latch upgrades - no 4,593 5.1 1.8
shared hash latch upgrades - wai 0 0.0 0.0
sorts (disk) 0 0.0 0.0
sorts (memory) 4,798 5.3 1.9
sorts (rows) 15,267 16.9 6.0
sql area evicted 956 1.1 0.4
sql area purged 12 0.0 0.0
summed dirty queue length 1,708,529 1,890.3 665.8
switch current to new buffer 1,035 1.2 0.4
table fetch by rowid 92,836 102.7 36.2
table fetch continued row 53 0.1 0.0
table scan blocks gotten 4,014 4.4 1.6
table scan rows gotten 221,822 245.4 86.5
table scans (direct read) 0 0.0 0.0
table scans (long tables) 0 0.0 0.0
table scans (short tables) 1,141 1.3 0.4
temp space allocated (bytes) 0 0.0 0.0
total cf enq hold time 63 0.1 0.0
total number of cf enq holders 50 0.1 0.0
total number of slots 0 0.0 0.0
total number of times SMON poste 0 0.0 0.0
transaction rollbacks 41 0.1 0.0
undo change vector size 1,592,616,932 1,762,066.0 620,661.3
user I/O wait time 383 0.4 0.2
user calls 36,414 40.3 14.2
user commits 2,566 2.8 1.0
user rollbacks 0 0.0 0.0
workarea executions - onepass 0 0.0 0.0
workarea executions - optimal 1,789 2.0 0.7
write clones created in backgrou 0 0.0 0.0
write clones created in foregrou 3 0.0 0.0
-------------------------------------------------------------
Instance Activity Stats - Absolute Values DB/Inst: GLDB/gldb Snaps: 908-909
-> Statistics with absolute values (should not be diffed)
Statistic Begin Value End Value
-------------------------------- --------------- ---------------
session uga memory max 7,464,481,112 7,522,895,648
session pga memory 4,434,329,456 4,465,091,960
session pga memory max 5,245,944,000 5,282,473,672
session cursor cache count 142,362 143,523
session uga memory 8.826613671E+12 8.895336714E+12
opened cursors current 186 191
logons current 37 36
-------------------------------------------------------------
Instance Activity Stats - Thread Activity DB/Inst: GLDB/gldb Snaps: 908-909
-> Statistics identified by '(derived)' come from sources other than SYSSTAT
Statistic Total per Hour
-------------------------------- ------------------ ---------
log switches (derived) 1 3.98
-------------------------------------------------------------
IOStat by Function summary DB/Inst: GLDB/gldb Snaps: 908-909
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Function Name Data per sec per sec Data per sec per sec Count Tm(ms)
--------------- ------- ------- ------- ------- ------- ------- ------- -------
LGWR 1M 0.0 .001106 5.6G 15.4 6.38280 36 0.9
DBWR 0M 0.0 0M 4.8G 80.0 5.42687 0 N/A
Others 22M 1.5 .024340 14M 1.0 .015489 1842 0.6
Buffer Cache Re 25M 3.6 .027659 0M 0.0 0M 3266 1.0
Direct Reads 0M 0.0 0M 0M 0.0 0M 0 N/A
Direct Writes 0M 0.0 0M 0M 0.0 0M 0 N/A
TOTAL: 48M 5.2 .053107 10.4G 96.5 11.8251 5144 0.8
-------------------------------------------------------------
IOStat by Filetype summary DB/Inst: GLDB/gldb Snaps: 908-909
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Small Read and Large Read are average service times, in milliseconds
-> Ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Small Large
Filetype Name Data per sec per sec Data per sec per sec Read Read
--------------- ------- ------- ------- ------- ------- ------- ------- -------
Log File 0M 0.0 0M 5.6G 15.4 6.38280 8.0 N/A
Data File 25M 3.6 .027659 4.8G 80.0 5.42576 0.9 N/A
Control File 22M 1.6 .024340 14M 1.0 .015489 0.6 N/A
Temp File 0M 0.0 0M 0M 0.0 0M 16.0 N/A
TOTAL: 47M 5.2 .052000 10.4G 96.5 11.8240 0.8 N/A
-------------------------------------------------------------
IOStat by Function/Filetype summary DB/Inst: GLDB/gldb Snaps: 908-909
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Ordered by (Data Read + Write) desc for each function
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Data per sec per sec Data per sec per sec Count Tm(ms)
------- ------- ------- ------- ------- ------- ------- -------
LGWR
1M 0.0 .001106 5.6G 15.4 6.38280 26 0.6
LGWR (Log File)
0M 0.0 0M 5.6G 15.4 6.38280 4 4.0
LGWR (Control File)
1M 0.0 .001106 0M 0.0 0M 22 0.0
DBWR
0M 0.0 0M 4.8G 80.0 5.42687 0 N/A
DBWR (Data File)
0M 0.0 0M 4.8G 80.0 5.42687 0 N/A
Others
22M 1.5 .024340 14M 1.0 .015489 1388 0.6
Others (Control File)
22M 1.5 .024340 14M 1.0 .015489 1382 0.6
Others (Data File)
0M 0.0 0M 0M 0.0 0M 6 0.0
Buffer Cache Reads
25M 3.6 .027659 0M 0.0 0M 3267 1.0
Buffer Cache Reads (Data File)
25M 3.6 .027659 0M 0.0 0M 3267 1.0
Direct Reads
0M 0.0 0M 0M 0.0 0M 0 N/A
Direct Reads (Data File)
0M 0.0 0M 0M 0.0 0M 0 N/A
Direct Writes
0M 0.0 0M 0M 0.0 0M 0 N/A
Direct Writes (Data File)
0M 0.0 0M 0M 0.0 0M 0 N/A
TOTAL:
48M 5.2 .053107 10.4G 96.5 11.8251 4681 0.8
-------------------------------------------------------------
Tablespace IO Stats DB/Inst: GLDB/gldb Snaps: 908-909
-> ordered by IOs (Reads + Writes) desc
Tablespace
------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
GLCOMM
2,944 3 1.2 1.0 41,611 46 0 0.0
UNDOTBS1
2 0 0.0 1.0 30,456 34 1 0.0
SYSAUX
213 0 0.4 1.0 374 0 0 0.0
SYSTEM
89 0 0.6 1.0 35 0 0 0.0
EXAMPLE
2 0 0.0 1.0 2 0 0 0.0
USERS
2 0 0.0 1.0 2 0 0 0.0
TEMP
1 0 10.0 1.0 2 0 0 0.0
-------------------------------------------------------------
File IO Stats DB/Inst: GLDB/gldb Snaps: 908-909
-> ordered by Tablespace, File
Tablespace Filename
------------------------ ----------------------------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
EXAMPLE D:\ORACLE\ORADATA\GLDB\EXAMPLE01.DBF
2 0 0.0 1.0 2 0 0 0.0
GLCOMM D:\ORACLE\ORADATA\GLDB\GLCOMM01.DBF
2,944 3 1.2 1.0 41,611 46 0 0.0
SYSAUX D:\ORACLE\ORADATA\GLDB\SYSAUX01.DBF
213 0 0.4 1.0 374 0 0 0.0
SYSTEM D:\ORACLE\ORADATA\GLDB\SYSTEM01.DBF
89 0 0.6 1.0 35 0 0 0.0
TEMP D:\ORACLE\ORADATA\GLDB\TEMP01.DBF
1 0 10.0 1.0 2 0 0 N/A
UNDOTBS1 D:\ORACLE\ORADATA\GLDB\UNDOTBS01.DBF
2 0 0.0 1.0 30,456 34 1 0.0
USERS D:\ORACLE\ORADATA\GLDB\USERS01.DBF
2 0 0.0 1.0 2 0 0 0.0
-------------------------------------------------------------
Buffer Pool Statistics DB/Inst: GLDB/gldb Snaps: 908-909
-> Standard block size Pools D: default, K: keep, R: recycle
-> Default Pools for other block sizes: 2k, 4k, 8k, 16k, 32k
Free Writ Buffer
Number of Pool Buffer Physical Physical Buff Comp Busy
P Buffers Hit% Gets Reads Writes Wait Wait Waits
--- ---------- ---- ------------ ------------ ----------- ------ ------ --------
D 281,710 100 43,373,394 3,254 629,217 0 0 1
-------------------------------------------------------------
Checkpoint Activity DB/Inst: GLDB/gldb Snaps: 908-909
-> Total Physical Writes: 629,230
Other Autotune Thread
MTTR Log Size Log Ckpt Settings Ckpt Ckpt
Writes Writes Writes Writes Writes Writes
----------- ----------- ----------- ----------- ----------- -----------
0 0 0 0 214,831 0
-------------------------------------------------------------
Instance Recovery Stats DB/Inst: GLDB/gldb Snaps: 908-909
-> B: Begin Snapshot, E: End Snapshot
Estd
Targt Estd Log Ckpt Log Ckpt Opt RAC
MTTR MTTR Recovery Actual Target Log Sz Timeout Interval Log Avail
(s) (s) Estd IOs RedoBlks RedoBlks RedoBlks RedoBlks RedoBlks Sz(M) Time
- ----- ----- -------- -------- -------- -------- -------- -------- ------ -----
B 0 77 118216 4046011 1.37E+07 1.66E+07 1.37E+07 N/A N/A N/A
E 0 86 143783 3976630 1.66E+07 1.66E+07 2.35E+07 N/A N/A N/A
-------------------------------------------------------------
MTTR Advisory DB/Inst: GLDB/gldb Snap: 909
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Pool Advisory DB/Inst: GLDB/gldb Snap: 909
-> Only rows with estimated physical reads >0 are displayed
-> ordered by Block Size, Buffers For Estimate
Est
Phys Estimated Est
Size for Size Buffers Read Phys Reads Est Phys %DBtime
P Est (M) Factor (thousands) Factor (thousands) Read Time for Rds
--- -------- ------ ------------ ------ -------------- ------------ -------
D 224 .1 28 1.5 2,107 1 409.0
D 448 .2 55 1.5 2,059 1 388.0
D 672 .3 83 1.4 1,935 1 335.0
D 896 .4 110 1.3 1,727 1 246.0
D 1,120 .5 138 1.1 1,458 1 130.0
D 1,344 .6 165 1.0 1,419 1 113.0
D 1,568 .7 193 1.0 1,411 1 110.0
D 1,792 .8 221 1.0 1,397 1 104.0
D 2,016 .9 248 1.0 1,386 1 99.0
D 2,240 1.0 276 1.0 1,376 1 95.0
D 2,288 1.0 282 1.0 1,374 1 94.0
D 2,464 1.1 303 1.0 1,370 1 92.0
D 2,688 1.2 331 1.0 1,365 1 91.0
D 2,912 1.3 359 1.0 1,361 1 89.0
D 3,136 1.4 386 1.0 1,356 1 87.0
D 3,360 1.5 414 1.0 1,352 1 85.0
D 3,584 1.6 441 1.0 1,332 1 76.0
D 3,808 1.7 469 1.0 1,314 1 75.0
D 4,032 1.8 496 0.9 1,301 1 75.0
D 4,256 1.9 524 0.9 1,290 1 75.0
D 4,480 2.0 552 0.9 1,283 1 75.0
-------------------------------------------------------------
PGA Aggr Summary DB/Inst: GLDB/gldb Snaps: 908-909
-> PGA cache hit % - percentage of W/A (WorkArea) data processed only in-memory
PGA Cache Hit % W/A MB Processed Extra W/A MB Read/Written
--------------- ------------------ --------------------------
100.0 61 0
-------------------------------------------------------------
PGA Aggr Target Stats DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
PGA Aggr Target Histogram DB/Inst: GLDB/gldb Snaps: 908-909
-> Optimal Executions are purely in-memory operations
Low High
Optimal Optimal Total Execs Optimal Execs 1-Pass Execs M-Pass Execs
------- ------- -------------- -------------- ------------ ------------
2K 4K 1,726 1,726 0 0
64K 128K 2 2 0 0
256K 512K 4 4 0 0
512K 1024K 50 50 0 0
1M 2M 5 5 0 0
4M 8M 2 2 0 0
-------------------------------------------------------------
PGA Memory Advisory DB/Inst: GLDB/gldb Snap: 909
-> When using Auto Memory Mgmt, minimally choose a pga_aggregate_target value
where Estd PGA Overalloc Count is 0
Estd Extra Estd P Estd PGA
PGA Target Size W/A MB W/A MB Read/ Cache Overallo Estd
Est (MB) Factr Processed Written to Disk Hit % Count Time
---------- ------- ---------------- ---------------- ------ -------- -------
246 0.1 7,266.1 447.2 94.0 0 2.3E+05
492 0.3 7,266.1 447.2 94.0 0 2.3E+05
984 0.5 7,266.1 279.5 96.0 0 2.3E+05
1,476 0.8 7,266.1 279.5 96.0 0 2.3E+05
1,968 1.0 7,266.1 279.5 96.0 0 2.3E+05
2,362 1.2 7,266.1 279.5 96.0 0 2.3E+05
2,755 1.4 7,266.1 279.5 96.0 0 2.3E+05
3,149 1.6 7,266.1 279.5 96.0 0 2.3E+05
3,542 1.8 7,266.1 279.5 96.0 0 2.3E+05
3,936 2.0 7,266.1 279.5 96.0 0 2.3E+05
5,904 3.0 7,266.1 279.5 96.0 0 2.3E+05
7,872 4.0 7,266.1 279.5 96.0 0 2.3E+05
11,808 6.0 7,266.1 279.5 96.0 0 2.3E+05
15,744 8.0 7,266.1 279.5 96.0 0 2.3E+05
-------------------------------------------------------------
Shared Pool Advisory DB/Inst: GLDB/gldb Snap: 909
-> SP: Shared Pool Est LC: Estimated Library Cache Factr: Factor
-> Note there is often a 1:Many correlation between a single logical object
in the Library Cache, and the physical number of memory objects associated
with it. Therefore comparing the number of Lib Cache objects (e.g. in
v$librarycache), with the number of Lib Cache Memory Objects is invalid.
Est LC Est LC Est LC Est LC
Shared SP Est LC Time Time Load Load Est LC
Pool Size Size Est LC Saved Saved Time Time Mem Obj
Size(M) Factr (M) Mem Obj (s) Factr (s) Factr Hits (K)
-------- ----- -------- ------------ -------- ------ ------- ------ ------------
336 .6 4 439 15,230 1.0 961 1.1 1,802
400 .7 68 6,306 15,237 1.0 954 1.1 25,163
464 .8 132 8,825 15,329 1.0 862 1.0 25,176
528 .9 196 11,525 15,338 1.0 853 1.0 25,178
592 1.0 260 14,292 15,340 1.0 851 1.0 25,179
656 1.1 324 17,421 15,344 1.0 847 1.0 25,179
720 1.2 390 20,155 15,345 1.0 846 1.0 25,180
784 1.3 454 22,850 15,346 1.0 845 1.0 25,180
848 1.4 518 26,168 15,346 1.0 845 1.0 25,180
912 1.5 583 28,484 15,347 1.0 844 1.0 25,180
976 1.6 648 30,869 15,347 1.0 844 1.0 25,180
1,040 1.8 710 33,326 15,347 1.0 844 1.0 25,180
1,104 1.9 744 34,885 15,347 1.0 844 1.0 25,180
1,168 2.0 744 34,885 15,347 1.0 844 1.0 25,180
1,232 2.1 744 34,885 15,347 1.0 844 1.0 25,180
-------------------------------------------------------------
SGA Target Advisory DB/Inst: GLDB/gldb Snap: 909
SGA Target SGA Size Est DB Est Physical
Size (M) Factor Time (s) Reads
---------- ---------- ------------ ----------------
736 0.3 4,928 2,104,563
1,472 0.5 4,657 1,458,105
2,208 0.8 4,524 1,418,526
2,944 1.0 4,507 1,374,274
3,680 1.3 4,501 1,360,944
4,416 1.5 4,486 1,331,946
5,152 1.8 4,485 1,300,475
5,888 2.0 4,485 1,282,472
-------------------------------------------------------------
Streams Pool Advisory DB/Inst: GLDB/gldb Snap: 909
No data exists for this section of the report.
-------------------------------------------------------------
Java Pool Advisory DB/Inst: GLDB/gldb Snap: 909
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Wait Statistics DB/Inst: GLDB/gldb Snaps: 908-909
-> ordered by wait time desc, waits desc
Class Waits Total Wait Time (s) Avg Time (ms)
------------------ ----------- ------------------- --------------
undo header 1 0 0
-------------------------------------------------------------
Enqueue Activity DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Undo Segment Summary DB/Inst: GLDB/gldb Snaps: 908-909
-> Min/Max TR (mins) - Min and Max Tuned Retention (minutes)
-> STO - Snapshot Too Old count, OOS - Out of Space count
-> Undo segment block stats:
-> uS - unexpired Stolen, your - unexpired Released, uU - unexpired reUsed
-> eS - expired Stolen, eR - expired Released, eU - expired reUsed
Undo Num Undo Number of Max Qry Max Tx Min/Max STO/ uS/uR/uU/
TS# Blocks (K) Transactions Len (s) Concurcy TR (mins) OOS eS/eR/eU
---- ---------- --------------- -------- -------- --------- ----- --------------
2 341.3 75,678 1,067 4 20.7/30.8 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Undo Segment Stats DB/Inst: GLDB/gldb Snaps: 908-909
-> Most recent 35 Undostat rows, ordered by Time desc
Num Undo Number of Max Qry Max Tx Tun Ret STO/ uS/uR/uU/
End Time Blocks Transactions Len (s) Concy (mins) OOS eS/eR/eU
------------ ----------- ------------ ------- ------- ------- ----- ------------
17-Oct 15:58 166,509 33,664 1,067 3 31 0/0 0/0/0/0/0/0
17-Oct 15:48 174,796 42,014 459 4 21 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Latch Activity DB/Inst: GLDB/gldb Snaps: 908-909
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
AQ deq hash table latch 1 0.0 0 0 N/A
AQ dequeue txn counter l 784 0.0 0 0 N/A
ASM db client latch 602 0.0 0 0 N/A
ASM map operation hash t 1 0.0 0 0 N/A
ASM network state latch 15 0.0 0 0 N/A
AWR Alerted Metric Eleme 6,389 0.0 0 0 N/A
Change Notification Hash 301 0.0 0 0 N/A
Consistent RBA 8,594 0.0 0.0 0 0 N/A
DML lock allocation 25,266 0.0 0 0 N/A
Event Group Locks 50 0.0 0 0 N/A
FIB s.o chain latch 8 0.0 0 0 N/A
FOB s.o list latch 121 0.0 0 0 N/A
File State Object Pool P 1 0.0 0 0 N/A
IPC stats buffer allocat 1 0.0 0 0 N/A
In memory undo latch 74,552 0.0 0 3,251 0.0
JS Sh mem access 3 0.0 0 0 N/A
JS broadcast autostart l 16 0.0 0 0 N/A
JS queue access latch 1 0.0 0 0 N/A
JS queue state obj latch 6,552 0.0 0 0 N/A
KFC FX Hash Latch 1 0.0 0 0 N/A
KFC Hash Latch 1 0.0 0 0 N/A
KFCL LE Freelist 1 0.0 0 0 N/A
KGNFS-NFS:SHM structure 1 0.0 0 0 N/A
KGNFS-NFS:SVR LIST 1 0.0 0 0 N/A
KJC message pool free li 1 0.0 0 0 N/A
KJCT flow control latch 1 0.0 0 0 N/A
KMG MMAN ready and start 300 0.0 0 0 N/A
KTF sga latch 5 0.0 0 301 0.0
KWQS pqueue ctx latch 80 0.0 0 0 N/A
Locator state objects po 1 0.0 0 0 N/A
Lsod array latch 1 0.0 0 0 N/A
MQL Tracking Latch 0 N/A 0 18 0.0
Memory Management Latch 1 0.0 0 300 0.0
Memory Queue 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Subscriber 1 0.0 0 0 N/A
MinActiveScn Latch 5 0.0 0 0 N/A
Mutex 1 0.0 0 0 N/A
Mutex Stats 1 0.0 0 0 N/A
OS process 361 0.0 0 0 N/A
OS process allocation 540 0.0 0 0 N/A
OS process: request allo 99 0.0 0 0 N/A
PL/SQL warning settings 597 0.0 0 0 N/A
PX hash array latch 1 0.0 0 0 N/A
QMT 1 0.0 0 0 N/A
Real-time plan statistic 495 0.0 0 0 N/A
SGA IO buffer pool latch 4,300 0.0 0 4,766 0.0
SGA blob parent 1 0.0 0 0 N/A
SGA bucket locks 1 0.0 0 0 N/A
SGA heap locks 1 0.0 0 0 N/A
SGA pool locks 1 0.0 0 0 N/A
SQL memory manager latch 31 0.0 0 300 0.0
SQL memory manager worka 21,116 0.0 0 0 N/A
Shared B-Tree 187 0.0 0 0 N/A
Streams Generic 1 0.0 0 0 N/A
Testing 1 0.0 0 0 N/A
Token Manager 1 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 908-909
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
WCR: sync 1 0.0 0 0 N/A
Write State Object Pool 1 0.0 0 0 N/A
X$KSFQP 1 0.0 0 0 N/A
XDB NFS Security Latch 1 0.0 0 0 N/A
XDB unused session pool 1 0.0 0 0 N/A
XDB used session pool 1 0.0 0 0 N/A
active checkpoint queue 38,644 0.0 0 0 N/A
active service list 2,136 0.0 0 1,038 0.0
buffer pool 1 0.0 0 0 N/A
business card 1 0.0 0 0 N/A
cache buffer handles 96 0.0 0 0 N/A
cache buffers chains 162,567,761 0.0 0.0 0 445,386 0.0
cache buffers lru chain 668,841 0.0 0.0 0 1,073,251 0.1
call allocation 335 0.0 0 0 N/A
cas latch 1 0.0 0 0 N/A
change notification clie 1 0.0 0 0 N/A
channel handle pool latc 104 0.0 0 0 N/A
channel operations paren 5,692 0.0 0 0 N/A
checkpoint queue latch 1,095,813 0.0 0.0 0 653,111 0.0
client/application info 1,448 0.0 0 0 N/A
compile environment latc 65 0.0 0 0 N/A
corrupted undo seg latch 296 0.0 0 0 N/A
cp cmon/server latch 1 0.0 0 0 N/A
cp pool latch 1 0.0 0 0 N/A
cp server hash latch 1 0.0 0 0 N/A
cp sga latch 15 0.0 0 0 N/A
cvmap freelist lock 1 0.0 0 0 N/A
deferred cleanup latch 15 0.0 0 0 N/A
dml lock allocation 15 0.0 0 0 N/A
done queue latch 1 0.0 0 0 N/A
dummy allocation 132 0.0 0 0 N/A
enqueue hash chains 208,368 0.0 0.0 0 0 N/A
enqueues 96,719 0.0 0.0 0 0 N/A
fifth spare latch 1 0.0 0 0 N/A
file cache latch 332 0.0 0 0 N/A
flashback copy 1 0.0 0 0 N/A
gc element 1 0.0 0 0 N/A
gcs commit scn state 1 0.0 0 0 N/A
gcs partitioned table ha 1 0.0 0 0 N/A
gcs pcm hashed value buc 1 0.0 0 0 N/A
gcs resource freelist 1 0.0 0 0 N/A
gcs resource hash 1 0.0 0 0 N/A
gcs resource scan list 1 0.0 0 0 N/A
gcs shadows freelist 1 0.0 0 0 N/A
ges domain table 1 0.0 0 0 N/A
ges enqueue table freeli 1 0.0 0 0 N/A
ges group table 1 0.0 0 0 N/A
ges process hash list 1 0.0 0 0 N/A
ges process parent latch 1 0.0 0 0 N/A
ges resource hash list 1 0.0 0 0 N/A
ges resource scan list 1 0.0 0 0 N/A
ges resource table freel 1 0.0 0 0 N/A
ges value block free lis 1 0.0 0 0 N/A
global KZLD latch for me 12 0.0 0 0 N/A
global tx hash mapping 1 0.0 0 0 N/A
granule operation 1 0.0 0 0 N/A
hash table column usage 22 0.0 0 6,805 0.0
hash table modification 2 0.0 0 0 N/A
heartbeat check 1 0.0 0 0 N/A
intra txn parallel recov 1 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 908-909
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
io pool granule metadata 1 0.0 0 0 N/A
job workq parent latch 17 0.0 0 16 0.0
job_queue_processes free 32 0.0 0 0 N/A
job_queue_processes para 213 0.0 0 0 N/A
k2q lock allocation 1 0.0 0 0 N/A
kcbtsemkid latch 1 0.0 0 0 N/A
kdlx hb parent latch 1 0.0 0 0 N/A
kgb parent 1 0.0 0 0 N/A
kks stats 6,100 0.0 0 0 N/A
kokc descriptor allocati 306 0.0 0 0 N/A
ksfv messages 1 0.0 0 0 N/A
kss move lock 11 0.0 0 0 N/A
ksuosstats global area 63 0.0 0 0 N/A
ksv allocation latch 35 0.0 0 0 N/A
ksv class latch 21 0.0 0 0 N/A
ksv msg queue latch 1 0.0 0 0 N/A
ksz_so allocation latch 99 0.0 0 0 N/A
ktm global data 5 0.0 0 0 N/A
kwqbsn:qsga 66 0.0 0 0 N/A
lgwr LWN SCN 8,627 0.4 0.0 0 0 N/A
list of block allocation 123,943 0.0 0 0 N/A
loader state object free 26 0.0 0 0 N/A
lob segment dispenser la 1 0.0 0 0 N/A
lob segment hash table l 5 0.0 0 0 N/A
lob segment query latch 1 0.0 0 0 N/A
lock DBA buffer during m 1 0.0 0 0 N/A
logical standby cache 1 0.0 0 0 N/A
logminer context allocat 1 0.0 0 0 N/A
logminer work area 1 0.0 0 0 N/A
longop free list parent 1 0.0 0 0 N/A
mapped buffers lru chain 1 0.0 0 0 N/A
message pool operations 73 0.0 0 0 N/A
messages 112,055 0.1 0.0 0 0 N/A
mostly latch-free SCN 8,749 1.2 0.0 0 0 N/A
msg queue latch 1 0.0 0 0 N/A
multiblock read objects 18 0.0 0 0 N/A
name-service namespace b 1 0.0 0 0 N/A
ncodef allocation latch 15 0.0 0 0 N/A
object queue header heap 154,688 0.0 0 22 0.0
object queue header oper 2,955,446 0.0 0.0 0 0 N/A
object stats modificatio 3 0.0 0 0 N/A
parallel query alloc buf 121 0.0 0 0 N/A
parallel query stats 1 0.0 0 0 N/A
parameter list 53 0.0 0 0 N/A
parameter table manageme 134 0.0 0 0 N/A
peshm 1 0.0 0 0 N/A
pesom_free_list 1 0.0 0 0 N/A
pesom_hash_node 1 0.0 0 0 N/A
post/wait queue 3,490 0.0 0.0 0 2,290 0.0
process allocation 134 0.0 0 49 0.0
process group creation 99 0.0 0 0 N/A
process queue 1 0.0 0 0 N/A
process queue reference 1 0.0 0 0 N/A
qmn task queue latch 136 0.7 0.0 0 0 N/A
query server freelists 1 0.0 0 0 N/A
queued dump request 3 0.0 0 0 N/A
queuing load statistics 1 0.0 0 0 N/A
recovery domain hash lis 1 0.0 0 0 N/A
redo allocation 33,110 0.5 0.0 0 14,857,507 0.0
redo copy 1 0.0 0 14,857,780 0.0
Latch Activity DB/Inst: GLDB/gldb Snaps: 908-909
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
redo writing 65,549 0.0 0 0 N/A
resmgr group change latc 314 0.0 0 0 N/A
resmgr:active threads 137 0.0 0 0 N/A
resmgr:actses change gro 46 0.0 0 0 N/A
resmgr:actses change sta 6 0.0 0 0 N/A
resmgr:free threads list 131 0.0 0 0 N/A
resmgr:plan CPU method 1 0.0 0 0 N/A
resmgr:resource group CP 1 0.0 0 0 N/A
resmgr:schema config 11 0.0 0 0 N/A
resmgr:session queuing 1 0.0 0 0 N/A
rm cas latch 1 0.0 0 0 N/A
row cache objects 115,161 0.0 0.0 0 12 0.0
second spare latch 1 0.0 0 0 N/A
sequence cache 8,300,693 0.0 0 0 N/A
session allocation 11,148 0.0 0 3,715 0.0
session idle bit 76,484 0.0 0.0 0 0 N/A
session queue latch 1 0.0 0 0 N/A
session state list latch 118 0.0 0 0 N/A
session switching 266 0.0 0 0 N/A
session timer 323 0.0 0 0 N/A
shared pool 92,950 0.0 0.0 0 0 N/A
shared pool sim alloc 62 0.0 0 0 N/A
shared pool simulator 10,017 0.0 0 0 N/A
sim partition latch 1 0.0 0 0 N/A
simulator hash latch 2,226,714 0.0 0.0 0 0 N/A
simulator lru latch 251,143 0.1 0.0 0 1,920,401 0.0
sort extent pool 51 0.0 0 0 N/A
space background state o 2 0.0 0 0 N/A
space background task la 668 0.0 0 600 0.0
state object free list 2 0.0 0 0 N/A
statistics aggregation 560 0.0 0 0 N/A
tablespace key chain 1 0.0 0 0 N/A
temp lob duration state 2 0.0 0 0 N/A
test excl. parent l0 1 0.0 0 0 N/A
test excl. parent2 l0 1 0.0 0 0 N/A
third spare latch 1 0.0 0 0 N/A
threshold alerts latch 30 0.0 0 0 N/A
transaction allocation 4,530 0.0 0 0 N/A
undo global data 658,171 0.0 0 0 N/A
virtual circuit buffers 1 0.0 0 0 N/A
virtual circuit holder 1 0.0 0 0 N/A
virtual circuit queues 1 0.0 0 0 N/A
-------------------------------------------------------------
Latch Sleep Breakdown DB/Inst: GLDB/gldb Snaps: 908-909
-> ordered by misses desc
Get Spin
Latch Name Requests Misses Sleeps Gets
-------------------------- --------------- ------------ ----------- -----------
object queue header operat 2,955,446 526 2 524
simulator lru latch 251,143 140 1 139
messages 112,055 80 1 79
-------------------------------------------------------------
Latch Miss Sources DB/Inst: GLDB/gldb Snaps: 908-909
-> only latches with sleeps are shown
-> ordered by name, sleeps desc
NoWait Waiter
Latch Name Where Misses Sleeps Sleeps
------------------------ -------------------------- ------- ---------- --------
messages ksarcv 0 1 1
object queue header oper kcbo_switch_mq_bg 0 2 1
object queue header oper kcbo_link_q 0 1 1
simulator lru latch kcbs_simulate: simulate se 0 1 0
-------------------------------------------------------------
Mutex Sleep Summary DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Parent Latch Statistics DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Child Latch Statistics DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Logical Reads DB/Inst: GLDB/gldb Snaps: 908-909
-> Total Logical Reads: 43,371,883
-> Captured Segments account for 98.0% of Total
Tablespace Subobject Obj. Logical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 11,265,728 25.97
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 11,189,312 25.80
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 8,362,880 19.28
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 8,347,728 19.25
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 3,304,624 7.62
-------------------------------------------------------------
Segments by Physical Reads DB/Inst: GLDB/gldb Snaps: 908-909
-> Total Physical Reads: 3,267
-> Captured Segments account for 95.2% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,939 89.96
SYSMAN SYSAUX MGMT_METRICS_1HOUR_P INDEX 120 3.67
SYS SYSAUX WRH$_SQL_PLAN TABLE 6 .18
SYS SYSAUX WRH$_SEG_STAT 699466_842 TABLE 4 .12
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 3 .09
-------------------------------------------------------------
Segments by Physical Read Requests DB/Inst: GLDB/gldb Snaps: 908-909
-> Total Physical Read Requests: 3,267
-> Captured Segments account for 95.2% of Total
Tablespace Subobject Obj. Phys Read
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,939 89.96
SYSMAN SYSAUX MGMT_METRICS_1HOUR_P INDEX 120 3.67
SYS SYSAUX WRH$_SQL_PLAN TABLE 6 .18
SYS SYSAUX WRH$_SEG_STAT 699466_842 TABLE 4 .12
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 3 .09
-------------------------------------------------------------
Segments by UnOptimized Reads DB/Inst: GLDB/gldb Snaps: 908-909
-> Total UnOptimized Read Requests: 3,267
-> Captured Segments account for 95.2% of Total
Tablespace Subobject Obj. UnOptimized
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,939 89.96
SYSMAN SYSAUX MGMT_METRICS_1HOUR_P INDEX 120 3.67
SYS SYSAUX WRH$_SQL_PLAN TABLE 6 .18
SYS SYSAUX WRH$_SEG_STAT 699466_842 TABLE 4 .12
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 3 .09
-------------------------------------------------------------
Segments by Optimized Reads DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Direct Physical Reads DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Physical Writes DB/Inst: GLDB/gldb Snaps: 908-909
-> Total Physical Writes: 629,230
-> Captured Segments account for 61.2% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Writes %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 205,633 32.68
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 143,909 22.87
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 22,950 3.65
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 7,067 1.12
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 5,354 .85
-------------------------------------------------------------
Segments by Physical Write Requests DB/Inst: GLDB/gldb Snaps: 908-909
-> Total Physical Write Requestss: 72,482
-> Captured Segments account for 57.7% of Total
Tablespace Subobject Obj. Phys Write
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 20,217 27.89
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 17,474 24.11
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,784 3.84
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 639 .88
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 489 .67
-------------------------------------------------------------
Segments by Direct Physical Writes DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Table Scans DB/Inst: GLDB/gldb Snaps: 908-909
-> Total Table Scans: 11
-> Captured Segments account for 27.3% of Total
Tablespace Subobject Obj. Table
Owner Name Object Name Name Type Scans %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSTEM I_OBJ2 INDEX 2 18.18
SYSMAN SYSAUX MGMT_CURRENT_METRICS INDEX 1 9.09
-------------------------------------------------------------
Segments by DB Blocks Changes DB/Inst: GLDB/gldb Snaps: 908-909
-> % of Capture shows % of DB Block Changes for each top segment compared
-> with total DB Block Changes for all segments captured by the Snapshot
Tablespace Subobject Obj. DB Block % of
Owner Name Object Name Name Type Changes Capture
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 3,406,448 22.64
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 3,031,376 20.14
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,948,096 19.59
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,838,576 18.86
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 2,817,680 18.72
-------------------------------------------------------------
Segments by Row Lock Waits DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Segments by ITL Waits DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Buffer Busy Waits DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Dictionary Cache Stats DB/Inst: GLDB/gldb Snaps: 908-909
-> "Pct Misses" should be very low (< 2% in most cases)
-> "Final Usage" is the number of cache entries being used
Get Pct Scan Pct Mod Final
Cache Requests Miss Reqs Miss Reqs Usage
------------------------- ------------ ------ ------- ----- -------- ----------
dc_awr_control 18 0.0 0 N/A 2 1
dc_global_oids 1,092 0.4 0 N/A 0 90
dc_histogram_data 121 21.5 0 N/A 0 2,963
dc_histogram_defs 17,184 0.2 0 N/A 0 4,117
dc_object_grants 156 0.0 0 N/A 0 143
dc_objects 7,154 0.8 0 N/A 0 2,810
dc_profiles 40 0.0 0 N/A 0 2
dc_rollback_segments 201 0.0 0 N/A 0 22
dc_segments 4,098 0.2 0 N/A 63 1,079
dc_sequences 28 0.0 0 N/A 28 9
dc_tablespaces 1,549 0.0 0 N/A 0 8
dc_users 6,529 0.0 0 N/A 0 155
global database name 651 0.0 0 N/A 0 1
outstanding_alerts 5 0.0 0 N/A 0 5
-------------------------------------------------------------
Library Cache Activity DB/Inst: GLDB/gldb Snaps: 908-909
-> "Pct Misses" should be very low
Get Pct Pin Pct Invali-
Namespace Requests Miss Requests Miss Reloads dations
--------------- ------------ ------ -------------- ------ ---------- --------
APP CONTEXT 28 0.0 28 0.0 0 0
BODY 281 0.0 2,037 0.1 2 0
CLUSTER 10 0.0 4 0.0 0 0
DBLINK 28 0.0 0 N/A 0 0
EDITION 34 0.0 62 0.0 0 0
QUEUE 2,256 0.0 2,696 0.0 0 0
SCHEMA 40 0.0 0 N/A 0 0
SQL AREA 3,832 70.5 44,599 6.2 20 12
SUBSCRIPTION 2 0.0 2 0.0 0 0
TABLE/PROCEDURE 3,379 0.0 2,776,093 0.0 45 0
TRIGGER 214 0.0 236 0.0 0 0
-------------------------------------------------------------
Memory Dynamic Components DB/Inst: GLDB/gldb Snaps: 908-909
-> Min/Max sizes since instance startup
-> Oper Types/Modes: INItializing,GROw,SHRink,STAtic/IMMediate,DEFerred
-> ordered by Component
Begin Snap Current Min Max Oper Last Op
Component Size (Mb) Size (Mb) Size (Mb) Size (Mb) Count Typ/Mod
--------------- ----------- ----------- ----------- ----------- ------ -------
ASM Buffer Cach .00 .00 .00 .00 0 STA/
DEFAULT 16K buf .00 .00 .00 .00 0 STA/
DEFAULT 2K buff .00 .00 .00 .00 0 STA/
DEFAULT 32K buf .00 .00 .00 .00 0 STA/
DEFAULT 4K buff .00 .00 .00 .00 0 STA/
DEFAULT 8K buff .00 .00 .00 .00 0 STA/
DEFAULT buffer 2,288.00 2,288.00 2,288.00 2,304.00 0 SHR/IMM
KEEP buffer cac .00 .00 .00 .00 0 STA/
PGA Target 1,968.00 1,968.00 1,968.00 1,968.00 0 STA/
RECYCLE buffer .00 .00 .00 .00 0 STA/
SGA Target 2,944.00 2,944.00 2,944.00 2,944.00 0 STA/
Shared IO Pool .00 .00 .00 .00 0 STA/
java pool 16.00 16.00 16.00 16.00 0 STA/
large pool 16.00 16.00 .00 16.00 0 GRO/IMM
shared pool 592.00 592.00 576.00 592.00 0 GRO/IMM
streams pool .00 .00 .00 .00 0 STA/
-------------------------------------------------------------
Memory Resize Operations Summary DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Memory Resize Ops DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Process Memory Summary DB/Inst: GLDB/gldb Snaps: 908-909
-> B: Begin Snap E: End Snap
-> All rows below contain absolute values (i.e. not diffed over the interval)
-> Max Alloc is Maximum PGA Allocation size at snapshot time
-> Hist Max Alloc is the Historical Max Allocation for still-connected processes
-> ordered by Begin/End snapshot, Alloc (MB) desc
Hist
Avg Std Dev Max Max
Alloc Used Alloc Alloc Alloc Alloc Num Num
Category (MB) (MB) (MB) (MB) (MB) (MB) Proc Alloc
- -------- --------- --------- -------- -------- ------- ------- ------ ------
B Other 83.5 N/A 2.1 2.2 9 47 39 39
Freeable 42.6 .0 1.9 4.2 20 N/A 22 22
PL/SQL 13.5 7.0 .4 .7 3 3 37 37
SQL 3.2 1.5 .1 .5 2 93 25 19
E Other 80.2 N/A 2.1 2.1 9 47 38 38
Freeable 44.8 .0 1.9 4.3 21 N/A 23 23
PL/SQL 13.5 7.0 .4 .7 3 3 36 36
SQL 3.4 1.6 .1 .5 2 93 25 20
-------------------------------------------------------------
SGA Memory Summary DB/Inst: GLDB/gldb Snaps: 908-909
End Size (Bytes)
SGA regions Begin Size (Bytes) (if different)
------------------------------ ------------------- -------------------
Database Buffers 2,399,141,888
Fixed Size 2,184,632
Redo Buffers 8,364,032
Variable Size 2,717,911,624
-------------------
sum 5,127,602,176
-------------------------------------------------------------
SGA breakdown difference DB/Inst: GLDB/gldb Snaps: 908-909
-> ordered by Pool, Name
-> N/A value for Begin MB or End MB indicates the size of that Pool/Name was
insignificant, or zero in that snapshot
Pool Name Begin MB End MB % Diff
------ ------------------------------ -------------- -------------- -------
java free memory 16.0 16.0 0.00
large PX msg pool 7.5 7.5 0.00
large free memory 8.5 8.5 0.00
shared ASH buffers 8.0 8.0 0.00
shared CCUR 42.1 42.0 -0.18
shared FileOpenBlock 10.5 10.5 0.00
shared KGLH0 6.4 6.5 0.54
shared KGLHD 17.4 17.4 0.12
shared PCUR 37.1 37.3 0.51
shared PLMCD 10.5 10.7 1.82
shared SQLA 227.7 226.6 -0.47
shared db_block_hash_buckets 22.3 22.3 0.00
shared free memory 112.1 113.3 1.10
shared row cache 7.2 7.2 0.00
buffer_cache 2,288.0 2,288.0 0.00
fixed_sga 2.1 2.1 0.00
log_buffer 8.0 8.0 0.00
-------------------------------------------------------------
Streams CPU/IO Usage DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture Rate DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply Rate DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queues DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queue Subscribers DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Rule Set DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues Rate DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queue Subscribers DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Resource Limit Stats DB/Inst: GLDB/gldb Snap: 909
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Activity DB/Inst: GLDB/gldb Snaps: 908-909
-> Values represent averages for all samples
Avg Total Avg Active Avg Total Avg Active Avg Total Avg Active
Connections Connections Shared Srvrs Shared Srvrs Dispatchers Dispatchers
------------ ------------ ------------ ------------ ------------ ------------
0 0 1 0 1 0
-------------------------------------------------------------
Shared Servers Rates DB/Inst: GLDB/gldb Snaps: 908-909
Common Disp Common Disp Server
Queue Queue Server Server Queue Queue Total Server
Per Sec Per Sec Msgs/Sec KB/Sec Total Total Msgs Total(KB)
-------- -------- -------- --------- ---------- ---------- ---------- ----------
0 0 0 0.0 0 0 0 0
-------------------------------------------------------------
Shared Servers Utilization DB/Inst: GLDB/gldb Snaps: 908-909
-> Statistics are combined for all servers
-> Incoming and Outgoing Net % are included in %Busy
Total Server Incoming Outgoing
Time (s) %Busy %Idle Net % Net %
-------------- -------- -------- --------- ---------
904 0.0 100.0 0.0 0.0
-------------------------------------------------------------
Shared Servers Common Queue DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Dispatchers DB/Inst: GLDB/gldb Snaps: 908-909
-> Ordered by %Busy, descending
-> Total Queued, Total Queue Wait and Avg Queue Wait are for dispatcher queue
-> Name suffixes:
"(N)" - dispatcher started between begin and end snapshots
"(R)" - dispatcher re-started between begin and end snapshots
Avg Total Disp Total Total Queue Avg Queue
Name Conns Time (s) %Busy %Idle Queued Wait (s) Wait (ms)
------- --------- ---------- -------- -------- ---------- ----------- ----------
D000 0.0 904 0.0 100.0 0 0
-------------------------------------------------------------
init.ora Parameters DB/Inst: GLDB/gldb Snaps: 908-909
-> if IP/Public/Source at End snap is different a '*' is displayed
End value
Parameter Name Begin value (if different)
----------------------------- --------------------------------- --------------
audit_file_dest D:\ORACLE\ADMIN\GLDB\ADUMP
audit_trail DB
compatible 11.2.0.0.0
control_files D:\ORACLE\FLASH_RECOVERY_AREA\GLD
db_block_size 8192
db_domain
db_name gldb
db_recovery_file_dest D:\Oracle\flash_recovery_area
db_recovery_file_dest_size 4102029312
diagnostic_dest D:\ORACLE
dispatchers (PROTOCOL=TCP) (SERVICE=gldbXDB)
memory_target 5150605312
open_cursors 300
processes 150
remote_login_passwordfile EXCLUSIVE
undo_tablespace UNDOTBS1
-------------------------------------------------------------
Dynamic Remastering Stats DB/Inst: GLDB/gldb Snaps: 908-909
No data exists for this section of the report.
-------------------------------------------------------------
End of Report
AWRSQLRPT 908-909 (unsustainable call volume)
Toggle Spoiler
WORKLOAD REPOSITORY SQL Report
Snapshot Period Summary
DB Name DB Id Instance Inst Num Startup Time Release RAC
------------ ----------- ------------ -------- --------------- ----------- ---
GLDB 2907699466 gldb 1 16-Oct-12 10:08 11.2.0.1.0 NO
Snap Id Snap Time Sessions Curs/Sess
--------- ------------------- -------- ---------
Begin Snap: 908 17-Oct-12 15:45:42 37 5.0
End Snap: 909 17-Oct-12 16:00:45 36 5.3
Elapsed: 15.06 (mins)
DB Time: 4.95 (mins)
SQL Summary DB/Inst: GLDB/gldb Snaps: 908-909
Elapsed
SQL Id Time (ms)
------------- ----------
7k1usds2tau95 285,993
Module: OdbcDbTrace64.exe
INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probeN
ame, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fail
ureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpdes
tinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
-------------------------------------------------------------
SQL ID: 7k1usds2tau95 DB/Inst: GLDB/gldb Snaps: 908-909
-> 1st Capture and Last Capture Snap IDs
refer to Snapshot IDs witin the snapshot range
-> INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSum...
Plan Hash Total Elapsed 1st Capture Last Capture
# Value Time(ms) Executions Snap ID Snap ID
--- ---------------- ---------------- ------------- ------------- --------------
1 1207092900 285,993 2,7666 909 909
-------------------------------------------------------------
Plan 1(PHV: 1207092900)
-----------------------
Plan Statistics DB/Inst: GLDB/gldb Snaps: 908-909
-> % Total DB Time is the Elapsed Time of the SQL statement divided
into the Total Database Time multiplied by 100
Stat Name Statement Per Execution % Snap
---------------------------------------- ---------- -------------- -------
Elapsed Time (ms) 285,993 10.3 96.4
CPU Time (ms) 202,536 7.3 98.4
Executions 27,666 N/A N/A
Buffer Gets 4.3304E+07 1,565.2 99.8
Disk Reads 2,942 0.1 90.1
Parse Calls 0 0.0 0.0
Rows 2,766,000 100.0 N/A
User I/O Wait Time (ms) 3,644 N/A N/A
Cluster Wait Time (ms) 0 N/A N/A
Application Wait Time (ms) 0 N/A N/A
Concurrency Wait Time (ms) 0 N/A N/A
Invalidations 0 N/A N/A
Version Count 1 N/A N/A
Sharable Mem(KB) 95 N/A N/A
-------------------------------------------------------------
Execution Plan
----------------------------------------------------------------------
| Id | Operation | Name | Cost |
----------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 |
| 1 | LOAD TABLE CONVENTIONAL | | |
| 2 | SEQUENCE | GLS_PROT_TRAFFIC_SUM_VOIP | |
----------------------------------------------------------------------
Note
-----
- cpu costing is off (consider enabling it)
Full SQL Text
SQL ID SQL Text
------------ -----------------------------------------------------------------
7k1usds2tau9 INSERT INTO /*+ APPEND_VALUES */GLT_PROT_TRAFFIC_SUM_VOIP ( traff
ficSumID, probeName, callingNumber, calledNumber, callID, startTi
me, duration, callSuccess, failureCause, postDialDelay, sessionDi
sconnectDelay, rtporiginationIPAddress, rtpdestinationIPAddress,
siporiginationIPAddress, sipdestinationIPAddress, ErrorCode, Prot
ocolTYpe, packetCount1, payload1, totalPacketCount1, missingPacke
tCount1, missingPacketPercentage1, DuplicatePacketCount1, Duplica
tePacketPercentage1, reorderedPacketCount1, reorderedPacketPercen
tage1, conversationalMos1, conversationalR1, listeningMos1, liste
ningR1, packetsDiscarded1, packetsDiscardedPercentage1, averageGa
p1, averageDelay1, averageJitter1, averageInterArrivalJitter1, Cu
mulativePacketLoss1, minGap1, maxGap1, minDelay1, maxDelay1, minJ
itter1, maxJitter1, minRtd1, maxRtd1, averageRtd1, packetCount2,
payload2, totalPacketCount2, missingPacketCount2, missingPacketPe
rcentage2, DuplicatePacketCount2, DuplicatePacketPercentage2, reo
rderedPacketCount2, reorderedPacketPercentage2, conversationalMos
2, conversationalR2, listeningMos2, listeningR2, packetsDiscarded
2, packetsDiscardedPercentage2, averageGap2, averageDelay2, avera
geJitter2, averageInterArrivalJitter2, CumulativePacketLoss2, min
Gap2, maxGap2, minDelay2, maxDelay2, minJitter2, maxJitter2, minR
td2, maxRtd2, averageRtd2, filename ) VALUES (GLS_PROT_TRAFFIC_SU
M_VOIP.NEXTVAL, :1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :12
, :13, :14, :15, :16, :17, :18, :19, :20, :21, :22, :23, :24, :25
, :26, :27, :28, :29, :30, :31, :32, :33, :34, :35, :36, :37, :38
, :39, :40, :41, :42, :43, :44, :45, :46, :47, :48, :49, :50, :51
, :52, :53, :54, :55, :56, :57, :58, :59, :60, :61, :62, :63, :64
, :65, :66, :67, :68, :69, :70, :71, :72, :73, :74, :75 )
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568943 is a reply to message #568925] |
Wed, 17 October 2012 16:58 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
Here is reports for DIRECT PATH insert. My observations:
*REDO size reduced by two orders of magnitude, not surprising
*Essentially everything in the Load Profile is reduced by an order of magnitude or more on a per transaction
*On a per second basis much of the Load Profile is actually increased however.
*My CPU is spending less time waiting overall
*In the AWRSQLREPORT, by time per execution is cut by 3.9ms, Buffer gets are cut by a third and Disk Reads disappear entirely
So at first glance the numbers look good to me. But the end result is the same bottleneck as before. Further confirming the idea that Oracle is now essentially OK and I need to examine my loader and perhaps ditch ODBC entirely in favor of something else.
AWRRPT 913-914 (DIRECT PATH INSERT)
Toggle Spoiler
WORKLOAD REPOSITORY report for
DB Name DB Id Instance Inst Num Startup Time Release RAC
------------ ----------- ------------ -------- --------------- ----------- ---
GLDB 2907699466 gldb 1 16-Oct-12 10:08 11.2.0.1.0 NO
Host Name Platform CPUs Cores Sockets Memory(GB)
---------------- -------------------------------- ---- ----- ------- ----------
WIN-VTBNMB5VC5I Microsoft Windows x86 64-bit 4 4 1 11.99
Snap Id Snap Time Sessions Curs/Sess
--------- ------------------- -------- ---------
Begin Snap: 913 17-Oct-12 17:00:58 36 5.4
End Snap: 914 17-Oct-12 17:15:01 36 5.3
Elapsed: 14.05 (mins)
DB Time: 3.02 (mins)
Cache Sizes Begin End
~~~~~~~~~~~ ---------- ----------
Buffer Cache: 2,288M 2,288M Std Block Size: 8K
Shared Pool Size: 592M 592M Log Buffer: 8,168K
Load Profile Per Second Per Transaction Per Exec Per Call
~~~~~~~~~~~~ --------------- --------------- ---------- ----------
DB Time(s): 0.2 0.0 0.00 0.00
DB CPU(s): 0.2 0.0 0.00 0.00
Redo size: 2,536,068.1 78,809.0
Logical reads: 17,072.7 530.5
Block changes: 9,263.1 287.9
Physical reads: 2.9 0.1
Physical writes: 675.9 21.0
User calls: 68.6 2.1
Parses: 8.6 0.3
Hard parses: 1.6 0.1
W/A MB processed: 17.7 0.6
Logons: 0.1 0.0
Executes: 48.2 1.5
Rollbacks: 0.0 0.0
Transactions: 32.2
Instance Efficiency Percentages (Target 100%)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Buffer Nowait %: 100.00 Redo NoWait %: 100.00
Buffer Hit %: 99.98 In-memory Sort %: 100.00
Library Hit %: 99.82 Soft Parse %: 81.07
Execute to Parse %: 82.19 Latch Hit %: 100.00
Parse CPU to Parse Elapsd %: 99.27 % Non-Parse CPU: 97.40
Shared Pool Statistics Begin End
------ ------
Memory Usage %: 81.35 82.43
% SQL with executions>1: 86.41 76.59
% Memory for SQL w/exec>1: 83.71 78.50
Top 5 Timed Foreground Events
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Avg
wait % DB
Event Waits Time(s) (ms) time Wait Class
------------------------------ ------------ ----------- ------ ------ ----------
DB CPU 156 86.2
log file sync 27,110 16 1 9.0 Commit
direct path write 24,479 11 0 6.2 User I/O
SQL*Net more data from client 116,561 2 0 1.1 Network
control file sequential read 165 0 1 .1 System I/O
Host CPU (CPUs: 4 Cores: 4 Sockets: 1)
~~~~~~~~ Load Average
Begin End %User %System %WIO %Idle
--------- --------- --------- --------- --------- ---------
5.8 1.4 92.8
Instance CPU
~~~~~~~~~~~~
% of total CPU for Instance: 5.1
% of busy CPU for Instance: 71.4
%DB time waiting for CPU - Resource Mgr: 0.0
Memory Statistics
~~~~~~~~~~~~~~~~~ Begin End
Host Mem (MB): 12,275.1 12,275.1
SGA use (MB): 2,944.0 2,944.0
PGA use (MB): 149.0 149.2
% Host Mem used for SGA+PGA: 25.20 25.20
Time Model Statistics DB/Inst: GLDB/gldb Snaps: 913-914
-> Total time in database user-calls (DB Time): 181s
-> 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 157.8 87.2
DB CPU 156.0 86.2
parse time elapsed 2.0 1.1
hard parse elapsed time 1.7 1.0
PL/SQL execution elapsed time 0.6 .3
PL/SQL compilation elapsed time 0.3 .2
connection management call elapsed time 0.1 .0
hard parse (sharing criteria) elapsed time 0.0 .0
repeated bind elapsed time 0.0 .0
sequence load elapsed time 0.0 .0
hard parse (bind mismatch) elapsed time 0.0 .0
DB time 181.0
background elapsed time 53.2
background cpu time 17.6
-------------------------------------------------------------
Operating System Statistics DB/Inst: GLDB/gldb Snaps: 913-914
-> *TIME statistic values are diffed.
All others display actual values. End Value is displayed if different
-> ordered by statistic type (CPU Use, Virtual Memory, Hardware Config), Name
Statistic Value End Value
------------------------- ---------------------- ----------------
AVG_BUSY_TIME 6,057
AVG_IDLE_TIME 78,199
AVG_SYS_TIME 1,189
AVG_USER_TIME 4,850
BUSY_TIME 24,324
IDLE_TIME 312,875
SYS_TIME 4,841
USER_TIME 19,483
RSRC_MGR_CPU_WAIT_TIME 0
VM_IN_BYTES 5.2287847217113375E+18
VM_OUT_BYTES -1,899,956,093,865,984
PHYSICAL_MEMORY_BYTES 12,871,364,608
NUM_CPUS 4
NUM_CPU_CORES 4
NUM_CPU_SOCKETS 1
-------------------------------------------------------------
Operating System Statistics - Detail DB/Inst: GLDB/gldb Snaps: 913-914
Snap Time Load %busy %user %sys %idle %iowait
--------------- -------- -------- -------- -------- -------- --------
17-Oct 17:00:58 0.0 N/A N/A N/A N/A N/A
17-Oct 17:15:01 0.0 7.2 5.8 1.4 92.8 0.0
-------------------------------------------------------------
Foreground Wait Class DB/Inst: GLDB/gldb Snaps: 913-914
-> s - second, ms - millisecond - 1000th of a second
-> ordered by wait time desc, waits desc
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
-> Captured Time accounts for 102.7% of Total DB time 181.02 (s)
-> Total FG Wait Time: 29.90 (s) DB CPU time: 156.05 (s)
Avg
%Time Total Wait wait
Wait Class Waits -outs Time (s) (ms) %DB time
-------------------- ---------------- ----- ---------------- -------- ---------
DB CPU 156 86.2
Commit 27,110 0 16 1 9.0
User I/O 24,638 0 11 0 6.3
Network 173,888 0 2 0 1.2
System I/O 165 0 0 1 0.1
Other 24,608 100 0 0 0.0
Application 56 0 0 0 0.0
Concurrency 0 0 0.0
-------------------------------------------------------------
Foreground Wait Events DB/Inst: GLDB/gldb Snaps: 913-914
-> s - second, ms - millisecond - 1000th of a second
-> Only events with Total Wait Time (s) >= .001 are shown
-> ordered by wait time desc, waits desc (idle events last)
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % DB
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
log file sync 27,110 0 16 1 1.0 9.0
direct path write 24,479 0 11 0 0.9 6.2
SQL*Net more data from cli 116,561 0 2 0 4.3 1.1
control file sequential re 165 0 0 1 0.0 .1
SQL*Net message to client 57,327 0 0 0 2.1 .0
db file sequential read 114 0 0 0 0.0 .0
asynch descriptor resize 24,604 100 0 0 0.9 .0
SQL*Net break/reset to cli 56 0 0 0 0.0 .0
Disk file operations I/O 44 0 0 0 0.0 .0
db file parallel read 1 0 0 4 0.0 .0
ADR block file read 4 0 0 0 0.0 .0
SQL*Net message from clien 57,327 0 6,262 109 2.1
jobq slave wait 1,858 100 953 513 0.1
Streams AQ: waiting for me 169 100 846 5007 0.0
wait for unread message on 841 99 843 1002 0.0
-------------------------------------------------------------
Background Wait Events DB/Inst: GLDB/gldb Snaps: 913-914
-> ordered by wait time desc, waits desc (idle events last)
-> Only events with Total Wait Time (s) >= .001 are shown
-> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
Avg
%Time Total Wait wait Waits % bg
Event Waits -outs Time (s) (ms) /txn time
-------------------------- ------------ ----- ---------- ------- -------- ------
db file parallel write 28,235 0 20 1 1.0 36.9
log file parallel write 27,323 0 14 1 1.0 25.9
control file sequential re 1,558 0 1 1 0.1 1.9
control file parallel writ 427 0 1 2 0.0 1.6
db file sequential read 690 0 0 0 0.0 .4
os thread startup 38 0 0 5 0.0 .4
db file scattered read 124 0 0 1 0.0 .2
ADR block file read 14 0 0 0 0.0 .0
Disk file operations I/O 39 0 0 0 0.0 .0
direct path read 3 0 0 0 0.0 .0
rdbms ipc message 31,133 11 11,034 354 1.1
DIAG idle wait 1,662 100 1,685 1014 0.1
pmon timer 297 94 843 2838 0.0
Space Manager: slave idle 168 100 841 5007 0.0
Streams AQ: qmn slave idle 30 0 841 28017 0.0
Streams AQ: qmn coordinato 60 50 841 14008 0.0
shared server idle wait 28 100 840 30014 0.0
dispatcher timer 14 100 840 60012 0.0
smon timer 2 100 600 300011 0.0
SQL*Net message from clien 69 0 0 1 0.0
-------------------------------------------------------------
Wait Event Histogram DB/Inst: GLDB/gldb Snaps: 913-914
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> % of Waits: value of .0 indicates value was <.05%; value of null is truly 0
-> % of Waits: column heading of <=1s is truly <1024ms, >1s is truly >=1024ms
-> Ordered by Event (idle events last)
% of Waits
-----------------------------------------------
Total
Event Waits <1ms <2ms <4ms <8ms <16ms <32ms <=1s >1s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
ADR block file read 20 100.0
ADR block file write 5 100.0
ADR file lock 6 100.0
Disk file operations I/O 83 100.0
LGWR wait for redo copy 3 100.0
SQL*Net break/reset to cli 56 100.0
SQL*Net message to client 57.4K 100.0
SQL*Net more data from cli 116.6 100.0
SQL*Net more data to clien 1 100.0
asynch descriptor resize 24.8K 100.0
control file parallel writ 426 98.6 .2 .2 .7 .2
control file sequential re 1718 88.1 6.5 5.1 .2 .1 .1
db file parallel read 1 100.0
db file parallel write 28.2K 87.1 9.4 3.0 .3 .0 .1 .0
db file scattered read 124 80.6 9.7 5.6 3.2 .8
db file sequential read 815 98.2 1.2 .4 .1 .1
direct path read 3 100.0
direct path write 24.5K 99.0 .2 .1 .1 .3 .3 .1
direct path write temp 4 100.0
latch: checkpoint queue la 1 100.0
latch: messages 1 100.0
log file parallel write 27.3K 97.4 1.9 .3 .0 .1 .2 .0
log file sequential read 2 100.0
log file single write 2 100.0
log file sync 27.1K 96.4 2.8 .4 .0 .1 .2 .0
os thread startup 38 100.0
DIAG idle wait 1662 100.0
SQL*Net message from clien 57.4K 55.8 17.4 2.2 .4 .6 1.0 22.5 .3
Space Manager: slave idle 168 100.0
Streams AQ: qmn coordinato 60 50.0 50.0
Streams AQ: qmn slave idle 30 100.0
Streams AQ: waiting for me 169 100.0
class slave wait 10 100.0
dispatcher timer 14 100.0
jobq slave wait 1858 .1 .1 99.9
pmon timer 297 5.7 94.3
rdbms ipc message 31.1K 3.4 .7 3.3 14.7 22.1 2.5 45.3 8.0
shared server idle wait 28 100.0
smon timer 2 100.0
wait for unread message on 841 .4 .6 .1 98.9
-------------------------------------------------------------
Wait Event Histogram Detail (64 msec to 2 sec)DB/Inst: GLDB/gldb Snaps: 913-
-> Units for Total Waits column: K is 1000, M is 1000000, G is 1000000000
-> Units for % of Total Waits:
ms is milliseconds
s is 1024 milliseconds (approximately 1 second)
-> % of Total Waits: total waits for all wait classes, including Idle
-> % of Total Waits: value of .0 indicates value was <.05%;
value of null is truly 0
-> Ordered by Event (only non-idle events are displayed)
% of Total Waits
-----------------------------------------------
Waits
64ms
Event to 2s <32ms <64ms <1/8s <1/4s <1/2s <1s <2s >=2s
-------------------------- ----- ----- ----- ----- ----- ----- ----- ----- -----
control file parallel writ 1 99.8 .2
control file sequential re 1 99.9 .1
db file parallel write 14 100.0 .0 .0
direct path write 13 99.9 .0 .0 .0
log file parallel write 9 100.0 .0 .0
log file sync 9 100.0 .0 .0
-------------------------------------------------------------
Wait Event Histogram Detail (4 sec to 2 min)DB/Inst: GLDB/gldb Snaps: 913-91
No data exists for this section of the report.
-------------------------------------------------------------
Wait Event Histogram Detail (4 min to 1 hr)DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Service Statistics DB/Inst: GLDB/gldb Snaps: 913-914
-> ordered by DB Time
Physical Logical
Service Name DB Time (s) DB CPU (s) Reads (K) Reads (K)
---------------------------- ------------ ------------ ------------ ------------
gldb 179 155 0 14,160
SYS$USERS 2 1 0 22
SYS$BACKGROUND 0 0 2 210
gldbXDB 0 0 0 0
-------------------------------------------------------------
Service Wait Class Stats DB/Inst: GLDB/gldb Snaps: 913-914
-> Wait Class info for services in the Service Statistics section.
-> Total Waits and Time Waited displayed for the following wait
classes: User I/O, Concurrency, Administrative, Network
-> Time Waited (Wt Time) in seconds
Service Name
----------------------------------------------------------------
User I/O User I/O Concurcy Concurcy Admin Admin Network Network
Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time Total Wts Wt Time
--------- --------- --------- --------- --------- --------- --------- ---------
gldb
24515 11 0 0 0 0 173332 2
SYS$USERS
123 0 0 0 0 0 556 0
SYS$BACKGROUND
863 0 38 0 0 0 0 0
-------------------------------------------------------------
SQL ordered by Elapsed Time DB/Inst: GLDB/gldb Snaps: 913-914
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> % Total DB Time is the Elapsed Time of the SQL statement divided
into the Total Database Time multiplied by 100
-> %Total - Elapsed Time as a percentage of Total DB time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 89.1% of Total DB Time (s): 181
-> Captured PL/SQL account for 7.8% of Total DB Time (s): 181
Elapsed Elapsed Time
Time (s) Executions per Exec (s) %Total %CPU %IO SQL Id
---------------- -------------- ------------- ------ ------ ------ -------------
154.3 24,461 0.01 85.2 94.8 7.3 8g3cvd61s46p5
Module: OdbcDbTrace64.exe
INSERT /*+ APPEND_VALUES */ INTO GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probe
Name, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fai
lureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpde
stinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
8.2 1 8.19 4.5 95.0 4.1 05s9358mm6vrr
begin dbms_feature_usage_internal.exec_db_usage_sampling(:bind1); end;
1.0 1 0.96 .5 100.3 2.1 3h1rjtcff3wy1
BEGIN ordsys.CARTRIDGE.dbms_feature_multimedia(:feature_boolean, :aux_cnt, :feat
ure_info); END;
0.9 1 0.95 .5 100.3 1.5 54wkgprhc32fh
SELECT COUNT(*), DATA_TYPE FROM SYS.DBA_TAB_COLS WHERE DATA_TYPE IN ('ORDIMAGE',
'ORDAUDIO', 'ORDDOC', 'ORDVIDEO', 'SI_COLOR', 'SI_STILLIMAGE', 'SI_AVERAGECOLOR
', 'SI_COLORHISTOGRAM', 'SI_POSITIONALCOLOR', 'SI_TEXTURE', 'SI_FEATURELIST') AN
D OWNER != 'PM' GROUP BY DATA_TYPE
0.9 1 0.86 .5 99.2 .0 92mb1kvurwn8h
BEGIN ordsys.CARTRIDGE.dbms_feature_dicom(:feature_boolean, :aux_cnt, :feature_i
nfo); END;
0.9 1 0.86 .5 99.6 .0 bgaf73qzarpgb
SELECT COUNT(*) FROM SYS.DBA_TAB_COLS WHERE DATA_TYPE = 'ORDDICOM' AND OWNER !=
'PM'
0.8 1 0.76 .4 95.9 1.6 f4r4y82fnaqgy
BEGIN ctxsys.drifeat.dr$feature_track(:feature_boolean, :aux_cnt, :feature_info)
; END;
0.7 2 0.37 .4 99.0 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.7 14 0.05 .4 2.3 5.0 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
0.6 1 0.61 .3 99.9 .0 dpc2x330a3z5y
BEGIN sys.dbms_java.dbms_feature_system_ojvm(:feature_boolean, :aux_cnt, :featur
e_info); END;
-------------------------------------------------------------
SQL ordered by CPU Time DB/Inst: GLDB/gldb Snaps: 913-914
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - CPU Time as a percentage of Total DB CPU
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 97.9% of Total CPU Time (s): 156
-> Captured PL/SQL account for 8.1% of Total CPU Time (s): 156
CPU CPU per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
146.3 24,461 0.01 93.7 154.3 94.8 7.3 8g3cvd61s46p5
Module: OdbcDbTrace64.exe
INSERT /*+ APPEND_VALUES */ INTO GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probe
Name, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fai
lureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpde
stinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
7.8 1 7.78 5.0 8.2 95.0 4.1 05s9358mm6vrr
begin dbms_feature_usage_internal.exec_db_usage_sampling(:bind1); end;
1.0 1 0.97 0.6 1.0 100.3 2.1 3h1rjtcff3wy1
BEGIN ordsys.CARTRIDGE.dbms_feature_multimedia(:feature_boolean, :aux_cnt, :feat
ure_info); END;
1.0 1 0.95 0.6 0.9 100.3 1.5 54wkgprhc32fh
SELECT COUNT(*), DATA_TYPE FROM SYS.DBA_TAB_COLS WHERE DATA_TYPE IN ('ORDIMAGE',
'ORDAUDIO', 'ORDDOC', 'ORDVIDEO', 'SI_COLOR', 'SI_STILLIMAGE', 'SI_AVERAGECOLOR
', 'SI_COLORHISTOGRAM', 'SI_POSITIONALCOLOR', 'SI_TEXTURE', 'SI_FEATURELIST') AN
D OWNER != 'PM' GROUP BY DATA_TYPE
0.9 1 0.86 0.5 0.9 99.2 .0 92mb1kvurwn8h
BEGIN ordsys.CARTRIDGE.dbms_feature_dicom(:feature_boolean, :aux_cnt, :feature_i
nfo); END;
0.9 1 0.86 0.5 0.9 99.6 .0 bgaf73qzarpgb
SELECT COUNT(*) FROM SYS.DBA_TAB_COLS WHERE DATA_TYPE = 'ORDDICOM' AND OWNER !=
'PM'
0.7 2 0.37 0.5 0.7 99.0 .0 bm2pwrpcr8ru6
select sga_size s, sga_size_factor * 100 f, estd_db_time t,
estd_physical_reads p from v$sga_target_advice order by sga_size
0.7 1 0.73 0.5 0.8 95.9 1.6 f4r4y82fnaqgy
BEGIN ctxsys.drifeat.dr$feature_track(:feature_boolean, :aux_cnt, :feature_info)
; END;
0.6 1 0.61 0.4 0.6 99.9 .0 dpc2x330a3z5y
BEGIN sys.dbms_java.dbms_feature_system_ojvm(:feature_boolean, :aux_cnt, :featur
e_info); END;
0.5 1 0.55 0.3 0.6 97.0 1.4 0axfcmd9xqxk6
BEGIN DBMS_FEATURE_JOB_SCHEDULER(:feature_boolean, :aux_cnt, :feature_info); EN
D;
-------------------------------------------------------------
SQL ordered by User I/O Wait Time DB/Inst: GLDB/gldb Snaps: 913-914
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - User I/O Time as a percentage of Total User I/O Wait time
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Captured SQL account for 98.6% of Total User I/O Wait Time (s):
-> Captured PL/SQL account for 4.2% of Total User I/O Wait Time (s):
User I/O UIO per Elapsed
Time (s) Executions Exec (s) %Total Time (s) %CPU %IO SQL Id
---------- ------------ ---------- ------ ---------- ------ ------ -------------
11.3 24,461 0.00 96.7 154.3 94.8 7.3 8g3cvd61s46p5
Module: OdbcDbTrace64.exe
INSERT /*+ APPEND_VALUES */ INTO GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probe
Name, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fai
lureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpde
stinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
0.3 1 0.33 2.9 8.2 95.0 4.1 05s9358mm6vrr
begin dbms_feature_usage_internal.exec_db_usage_sampling(:bind1); end;
0.1 1 0.07 0.6 0.3 81.0 26.5 685jucmq3q7nd
BEGIN DBMS_FEATURE_XDB(:feature_boolean, :aux_cnt, :feature_info); END;
0.1 1 0.06 0.5 0.2 61.1 31.2 9kmn77f4q8ww7
select count(*) from xdb.xdb$resource e, sys.user$ u where to_number(utl
_raw.cast_to_binary_integer(e.xmldata.ownerid)) = u.user# and u.name not
in ('XDB', 'SYS', 'MDSYS', 'EXFSYS', 'ORDSYS', 'ORDDATA', 'OE', 'SH', '
HR', 'SCOTT') and u.name not like 'APEX_%'
0.0 14 0.00 0.3 0.7 2.3 5.0 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
0.0 138 0.00 0.2 0.0 .0 74.6 cvn54b7yz0s8u
select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#,length,piece from idl_ub1$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
0.0 1 0.02 0.2 1.0 100.3 2.1 3h1rjtcff3wy1
BEGIN ordsys.CARTRIDGE.dbms_feature_multimedia(:feature_boolean, :aux_cnt, :feat
ure_info); END;
0.0 1 0.02 0.2 0.1 82.9 14.5 9wa06dzuu5g37
select count(*), count(*), NULL from DBA_OLAP2_CUBES where invalid != 'Y' and OW
NER = 'SYS' and CUBE_NAME = 'STKPRICE_TBL'
0.0 141 0.00 0.2 0.0 .0 66.2 8swypbbr0m372
select order#,columns,types from access$ where d_obj#=:1
0.0 138 0.00 0.1 0.0 .0 70.2 39m4sx9k63ba2
select /*+ index(idl_ub2$ i_idl_ub21) +*/ piece#,length,piece from idl_ub2$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
-------------------------------------------------------------
SQL ordered by Gets DB/Inst: GLDB/gldb Snaps: 913-914
-> Resources reported for PL/SQL code includes the resources used by all SQL
statements called by the code.
-> %Total - Buffer Gets as a percentage of Total Buffer Gets
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Buffer Gets: 14,391,415
-> Captured SQL account for 98.6% of Total
Buffer Gets Elapsed
Gets Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ------------ ------ ---------- ------ ------ -----------
14,061,854 24,461 574.9 97.7 154.3 94.8 7.3 8g3cvd61s46
Module: OdbcDbTrace64.exe
INSERT /*+ APPEND_VALUES */ INTO GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probe
Name, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fai
lureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpde
stinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
204,463 1 204,463.0 1.4 8.2 95.0 4.1 05s9358mm6v
begin dbms_feature_usage_internal.exec_db_usage_sampling(:bind1); end;
24,800 1 24,800.0 0.2 0.6 99.9 .0 dpc2x330a3z
BEGIN sys.dbms_java.dbms_feature_system_ojvm(:feature_boolean, :aux_cnt, :featur
e_info); END;
24,793 1 24,793.0 0.2 0.3 96.3 .0 c4z9k6tyavu
SELECT OWNER, OBJECT_TYPE FROM DBA_OBJECTS WHERE (OBJECT_TYPE='JAVA CLASS' OR OB
JECT_TYPE='JAVA RESOURCE' OR OBJECT_TYPE='JAVA SOURCE') AND (OWNER = 'SYS' OR OW
NER = 'SYSTEM' OR OWNER = 'EXFSYS' OR OWNER = 'MDSYS' OR OWNER = 'ORDSYS')
21,319 1 21,319.0 0.1 0.3 94.3 2.6 43w0r9122v7
select max(bytes) from dba_segments
14,089 14 1,006.4 0.1 0.7 2.3 5.0 6gvch1xu9ca
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
11,654 1 11,654.0 0.1 0.1 103.1 .6 3zq6c13d2rb
select nvl(ats, 0) * nvl(cls, 0) enabled, NVL((select SUM(jobs_created) from dba
_autotask_client_history where client_name = 'auto optimizer stats collection' a
nd window_start_time > (SYSDATE - INTERVAL '168' HOUR) ), 0) jobs, NULL from (s
elect DECODE(MAX(autotask_status),'ENABLED',1,0) ats, DECODE(MAX(OPTIMIZER_STATS
11,543 1 11,543.0 0.1 1.0 100.3 2.1 3h1rjtcff3w
BEGIN ordsys.CARTRIDGE.dbms_feature_multimedia(:feature_boolean, :aux_cnt, :feat
ure_info); END;
11,318 1 11,318.0 0.1 0.9 100.3 1.5 54wkgprhc32
SELECT COUNT(*), DATA_TYPE FROM SYS.DBA_TAB_COLS WHERE DATA_TYPE IN ('ORDIMAGE',
'ORDAUDIO', 'ORDDOC', 'ORDVIDEO', 'SI_COLOR', 'SI_STILLIMAGE', 'SI_AVERAGECOLOR
', 'SI_COLORHISTOGRAM', 'SI_POSITIONALCOLOR', 'SI_TEXTURE', 'SI_FEATURELIST') AN
D OWNER != 'PM' GROUP BY DATA_TYPE
11,221 1 11,221.0 0.1 0.9 99.2 .0 92mb1kvurwn
BEGIN ordsys.CARTRIDGE.dbms_feature_dicom(:feature_boolean, :aux_cnt, :feature_i
nfo); END;
-------------------------------------------------------------
SQL ordered by Reads DB/Inst: GLDB/gldb Snaps: 913-914
-> %Total - Physical Reads as a percentage of Total Disk Reads
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Disk Reads: 2,428
-> Captured SQL account for 55.6% of Total
Physical Reads Elapsed
Reads Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ---------- ------ ---------- ------ ------ -------------
2,247 1 2,247.0 92.5 8.2 95.0 4.1 05s9358mm6vrr
begin dbms_feature_usage_internal.exec_db_usage_sampling(:bind1); end;
820 1 820.0 33.8 0.3 81.0 26.5 685jucmq3q7nd
BEGIN DBMS_FEATURE_XDB(:feature_boolean, :aux_cnt, :feature_info); END;
751 1 751.0 30.9 0.2 61.1 31.2 9kmn77f4q8ww7
select count(*) from xdb.xdb$resource e, sys.user$ u where to_number(utl
_raw.cast_to_binary_integer(e.xmldata.ownerid)) = u.user# and u.name not
in ('XDB', 'SYS', 'MDSYS', 'EXFSYS', 'ORDSYS', 'ORDDATA', 'OE', 'SH', '
HR', 'SCOTT') and u.name not like 'APEX_%'
105 1 105.0 4.3 1.0 100.3 2.1 3h1rjtcff3wy1
BEGIN ordsys.CARTRIDGE.dbms_feature_multimedia(:feature_boolean, :aux_cnt, :feat
ure_info); END;
92 14 6.6 3.8 0.7 2.3 5.0 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
91 138 0.7 3.7 0.0 .0 74.6 cvn54b7yz0s8u
select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#,length,piece from idl_ub1$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
79 1 79.0 3.3 0.9 100.3 1.5 54wkgprhc32fh
SELECT COUNT(*), DATA_TYPE FROM SYS.DBA_TAB_COLS WHERE DATA_TYPE IN ('ORDIMAGE',
'ORDAUDIO', 'ORDDOC', 'ORDVIDEO', 'SI_COLOR', 'SI_STILLIMAGE', 'SI_AVERAGECOLOR
', 'SI_COLORHISTOGRAM', 'SI_POSITIONALCOLOR', 'SI_TEXTURE', 'SI_FEATURELIST') AN
D OWNER != 'PM' GROUP BY DATA_TYPE
63 138 0.5 2.6 0.0 .0 70.2 39m4sx9k63ba2
select /*+ index(idl_ub2$ i_idl_ub21) +*/ piece#,length,piece from idl_ub2$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
55 141 0.4 2.3 0.0 95.7 46.7 3ktacv9r56b51
select owner#,name,namespace,remoteowner,linkname,p_timestamp,p_obj#, nvl(proper
ty,0),subname,type#,d_attrs from dependency$ d, obj$ o where d_obj#=:1 and p_obj
#=obj#(+) order by order#
55 141 0.4 2.3 0.0 .0 66.2 8swypbbr0m372
select order#,columns,types from access$ where d_obj#=:1
55 1 55.0 2.3 0.1 82.9 14.5 9wa06dzuu5g37
select count(*), count(*), NULL from DBA_OLAP2_CUBES where invalid != 'Y' and OW
NER = 'SYS' and CUBE_NAME = 'STKPRICE_TBL'
45 1 45.0 1.9 0.8 95.9 1.6 f4r4y82fnaqgy
BEGIN ctxsys.drifeat.dr$feature_track(:feature_boolean, :aux_cnt, :feature_info)
; END;
32 1 32.0 1.3 0.3 94.3 2.6 43w0r9122v7jm
select max(bytes) from dba_segments
30 1 30.0 1.2 0.1 94.7 5.6 8q94r462h7hv8
BEGIN sys.dbms_java.dbms_feature_ojvm(:feature_boolean, :aux_cnt, :feature_info)
; END;
26 138 0.2 1.1 0.0 185.9 48.5 ga9j9xk5cy9s0
select /*+ index(idl_sb4$ i_idl_sb41) +*/ piece#,length,piece from idl_sb4$ wher
SQL ordered by Reads DB/Inst: GLDB/gldb Snaps: 913-914
-> %Total - Physical Reads as a percentage of Total Disk Reads
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Disk Reads: 2,428
-> Captured SQL account for 55.6% of Total
Physical Reads Elapsed
Reads Executions per Exec %Total Time (s) %CPU %IO SQL Id
----------- ----------- ---------- ------ ---------- ------ ------ -------------
e obj#=:1 and part=:2 and version=:3 order by piece#
25 1 25.0 1.0 0.6 97.0 1.4 0axfcmd9xqxk6
BEGIN DBMS_FEATURE_JOB_SCHEDULER(:feature_boolean, :aux_cnt, :feature_info); EN
D;
25 138 0.2 1.0 0.0 .0 52.1 c6awqs517jpj0
select /*+ index(idl_char$ i_idl_char1) +*/ piece#,length,piece from idl_char$ w
here obj#=:1 and part=:2 and version=:3 order by piece#
-------------------------------------------------------------
SQL ordered by Physical Reads (UnOptimized)DB/Inst: GLDB/gldb Snaps: 913-914
-> UnOptimized Read Reqs = Physical Read Reqts - Optimized Read Reqs
-> %Opt - Optimized Reads as percentage of SQL Read Requests
-> %Total - UnOptimized Read Reqs as a percentage of Total UnOptimized Read Reqs
-> Total Physical Read Requests: 949
-> Captured SQL account for 63.6% of Total
-> Total UnOptimized Read Requests: 949
-> Captured SQL account for 63.6% of Total
-> Total Optimized Read Requests: 1
-> Captured SQL account for 0.0% of Total
UnOptimized Physical UnOptimized
Read Reqs Read Reqs Executions Reqs per Exe %Opt %Total SQL Id
----------- ----------- ---------- ------------ ------ ------ -------------
1,170 1,170 1 1,170.0 0.0 123.3 05s9358mm6vrr
begin dbms_feature_usage_internal.exec_db_usage_sampling(:bind1); end;
109 109 1 109.0 0.0 11.5 685jucmq3q7nd
BEGIN DBMS_FEATURE_XDB(:feature_boolean, :aux_cnt, :feature_info); END;
92 92 14 6.6 0.0 9.7 6gvch1xu9ca3g
DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN :
= FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date
; IF broken THEN :b := 1; ELSE :b := 0; END IF; END;
91 91 138 0.7 0.0 9.6 cvn54b7yz0s8u
select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#,length,piece from idl_ub1$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
63 63 138 0.5 0.0 6.6 39m4sx9k63ba2
select /*+ index(idl_ub2$ i_idl_ub21) +*/ piece#,length,piece from idl_ub2$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
60 60 1 60.0 0.0 6.3 3h1rjtcff3wy1
BEGIN ordsys.CARTRIDGE.dbms_feature_multimedia(:feature_boolean, :aux_cnt, :feat
ure_info); END;
57 57 1 57.0 0.0 6.0 9kmn77f4q8ww7
select count(*) from xdb.xdb$resource e, sys.user$ u where to_number(utl
_raw.cast_to_binary_integer(e.xmldata.ownerid)) = u.user# and u.name not
in ('XDB', 'SYS', 'MDSYS', 'EXFSYS', 'ORDSYS', 'ORDDATA', 'OE', 'SH', '
HR', 'SCOTT') and u.name not like 'APEX_%'
55 55 141 0.4 0.0 5.8 3ktacv9r56b51
select owner#,name,namespace,remoteowner,linkname,p_timestamp,p_obj#, nvl(proper
ty,0),subname,type#,d_attrs from dependency$ d, obj$ o where d_obj#=:1 and p_obj
#=obj#(+) order by order#
55 55 141 0.4 0.0 5.8 8swypbbr0m372
select order#,columns,types from access$ where d_obj#=:1
55 55 1 55.0 0.0 5.8 9wa06dzuu5g37
select count(*), count(*), NULL from DBA_OLAP2_CUBES where invalid != 'Y' and OW
NER = 'SYS' and CUBE_NAME = 'STKPRICE_TBL'
51 51 1 51.0 0.0 5.4 0axfcmd9xqxk6
BEGIN DBMS_FEATURE_JOB_SCHEDULER(:feature_boolean, :aux_cnt, :feature_info); EN
D;
41 41 1 41.0 0.0 4.3 f4r4y82fnaqgy
BEGIN ctxsys.drifeat.dr$feature_track(:feature_boolean, :aux_cnt, :feature_info)
; END;
38 38 1 38.0 0.0 4.0 54wkgprhc32fh
SELECT COUNT(*), DATA_TYPE FROM SYS.DBA_TAB_COLS WHERE DATA_TYPE IN ('ORDIMAGE',
'ORDAUDIO', 'ORDDOC', 'ORDVIDEO', 'SI_COLOR', 'SI_STILLIMAGE', 'SI_AVERAGECOLOR
', 'SI_COLORHISTOGRAM', 'SI_POSITIONALCOLOR', 'SI_TEXTURE', 'SI_FEATURELIST') AN
D OWNER != 'PM' GROUP BY DATA_TYPE
30 30 1 30.0 0.0 3.2 8q94r462h7hv8
BEGIN sys.dbms_java.dbms_feature_ojvm(:feature_boolean, :aux_cnt, :feature_info)
; END;
29 29 1 29.0 0.0 3.1 43w0r9122v7jm
SQL ordered by Physical Reads (UnOptimized)DB/Inst: GLDB/gldb Snaps: 913-914
-> UnOptimized Read Reqs = Physical Read Reqts - Optimized Read Reqs
-> %Opt - Optimized Reads as percentage of SQL Read Requests
-> %Total - UnOptimized Read Reqs as a percentage of Total UnOptimized Read Reqs
-> Total Physical Read Requests: 949
-> Captured SQL account for 63.6% of Total
-> Total UnOptimized Read Requests: 949
-> Captured SQL account for 63.6% of Total
-> Total Optimized Read Requests: 1
-> Captured SQL account for 0.0% of Total
UnOptimized Physical UnOptimized
Read Reqs Read Reqs Executions Reqs per Exe %Opt %Total SQL Id
----------- ----------- ---------- ------------ ------ ------ -------------
select max(bytes) from dba_segments
26 26 138 0.2 0.0 2.7 ga9j9xk5cy9s0
select /*+ index(idl_sb4$ i_idl_sb41) +*/ piece#,length,piece from idl_sb4$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
25 25 138 0.2 0.0 2.6 c6awqs517jpj0
select /*+ index(idl_char$ i_idl_char1) +*/ piece#,length,piece from idl_char$ w
here obj#=:1 and part=:2 and version=:3 order by piece#
23 23 1 23.0 0.0 2.4 36pawz22dqm0g
SELECT COUNT(*) FROM DBA_SCHEDULER_JOBS WHERE OWNER NOT IN ('SYS', 'ORACLE_OCM',
'EXFSYS' ) AND JOB_NAME NOT LIKE 'AQ$%' AND JOB_NAME NOT LIKE 'MV_RF$J_%'
19 19 1 19.0 0.0 2.0 d4m6zb07fqkt6
SELECT JOB_TYPE, JOB_STYLE, SCHEDULE_TYPE, CRED, DEST, COUNT(*) NR_JOBS FROM ( S
ELECT JOB_TYPE, JOB_STYLE, SCHEDULE_TYPE, DECODE(CREDENTIAL_NAME,NULL, 'NO_CREDE
NTIAL', 'CREDENTIAL') CRED, DECODE(DESTINATION,NULL, 'NO_DESTINATION', 'DESTINAT
ION') DEST FROM DBA_SCHEDULER_JOBS WHERE OWNER NOT IN ('SYS', 'ORACLE_OCM', 'EXF
16 16 1 16.0 0.0 1.7 aqpjmw58ssz7u
select nvl(ats, 0) * nvl(cls, 0) enabled, NVL((select SUM(jobs_created) from dba
_autotask_client_history where client_name = 'auto space advisor' and window_sta
rt_time > (SYSDATE - INTERVAL '168' HOUR) ), 0) jobs, NULL from (select DECODE(
MAX(autotask_status),'ENABLED',1,0) ats, DECODE(MAX(SEGMENT_ADVISOR),'ENABLED',1
13 13 1 13.0 0.0 1.4 6qzhgg2434fp7
BEGIN DBMS_FEATURE_AUTOSTA(:feature_boolean, :aux_cnt, :feature_info); END;
12 12 1 12.0 0.0 1.3 3kxq6btprh1ax
SELECT SUBSTR(PAC.NAME,0,15), MAX(NVL(DBC.LOADS,0)) LD, MAX(NVL(FU.FEATURE_USED,
-1)) USED FROM SYS.GV_$DB_OBJECT_CACHE DBC, CTXSYS.DR$FEATURE_USED FU, ( SELECT
UO.OBJECT_NAME NAME FROM ALL_OBJECTS UO, CTXSYS.DR$DBO DBO WHERE UO.OWNER = 'CTX
SYS' AND DBO_NAME = OBJECT_NAME AND DBO_TYPE = 'PACKAGE' AND OBJECT_TYPE = 'PACK
-------------------------------------------------------------
SQL ordered by Executions DB/Inst: GLDB/gldb Snaps: 913-914
-> %CPU - CPU Time as a percentage of Elapsed Time
-> %IO - User I/O Time as a percentage of Elapsed Time
-> Total Executions: 40,665
-> Captured SQL account for 77.3% of Total
Elapsed
Executions Rows Processed Rows per Exec Time (s) %CPU %IO SQL Id
------------ --------------- -------------- ---------- ------ ------ -----------
24,461 2,441,000 99.8 154.3 94.8 7.3 8g3cvd61s46
Module: OdbcDbTrace64.exe
INSERT /*+ APPEND_VALUES */ INTO GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probe
Name, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fai
lureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpde
stinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
831 831 1.0 0.1 .0 .0 1umfsnn451y
Module: OdbcDbTrace64.exe
delete from DbLoaderStatus where LoaderName = 'WIN-VTBNMB5VC5I'
803 1,185 1.5 0.0 .0 .0 cm5vu20fhtn
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
770 770 1.0 0.1 19.9 .0 df9md17q736
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
441 441 1.0 0.0 169.8 .0 089dbukv1aa
Module: EM_PING
SELECT SYS_EXTRACT_UTC(SYSTIMESTAMP) FROM DUAL
345 329 1.0 0.0 129.9 .0 3nkd3g3ju5p
select obj#,type#,ctime,mtime,stime, status, dataobj#, flags, oid$, spare1, spar
e2 from obj$ where owner#=:1 and name=:2 and namespace=:3 and remoteowner is nul
l and linkname is null and subname is null
336 336 1.0 0.2 .0 .0 6v7n0y2bq89
Module: OEM.SystemPool
BEGIN EMDW_LOG.set_context(MGMT_JOB_ENGINE.MODULE_NAME, :1); MGMT_JOB_ENGINE.get
_scheduled_steps(:2, :3, :4, :5); EMDW_LOG.set_context; END;
316 361 1.1 0.0 150.8 13.2 53saa2zkr6w
select intcol#,nvl(pos#,0),col#,nvl(spare1,0) from ccol$ where con#=:1
295 295 1.0 0.0 188.8 .4 bsa0wjtftg3
select file# from file$ where ts#=:1
233 233 1.0 0.0 154.3 7.2 grwydz59pu6
select text from view$ where rowid=:1
-------------------------------------------------------------
SQL ordered by Parse Calls DB/Inst: GLDB/gldb Snaps: 913-914
-> Total Parse Calls: 7,244
-> Captured SQL account for 55.6% of Total
% Total
Parse Calls Executions Parses SQL Id
------------ ------------ --------- -------------
803 803 11.09 cm5vu20fhtnq1
select /*+ connect_by_filtering */ privilege#,level from sysauth$ connect by gra
ntee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0
770 770 10.63 df9md17q736da
Module: OdbcDbTrace64.exe
Update GLT_PROBE_STATUS SET CONN_CURR_TIMESTAMP=CURRENT_DATE,CONN_DATA_TIMESTAMP
=CURRENT_DATE where PROBE_NAME='CDRGen' AND PROBE_IP_ADDR='192.168.30.20' AND CO
NN_TYPE=2
295 295 4.07 bsa0wjtftg3uw
select file# from file$ where ts#=:1
233 233 3.22 grwydz59pu6mc
select text from view$ where rowid=:1
196 196 2.71 3972rvxu3knn3
Module: emagent_AQMetrics
delete from sdo_geor_ddl__table$$
157 157 2.17 9tgj4g8y4rwy8
select type#,blocks,extents,minexts,maxexts,extsize,extpct,user#,iniexts,NVL(lis
ts,65535),NVL(groups,65535),cachehint,hwmincr, NVL(spare1,0),NVL(scanhint,0),NVL
(bitmapranges,0) from seg$ where ts#=:1 and file#=:2 and block#=:3
141 141 1.95 3ktacv9r56b51
select owner#,name,namespace,remoteowner,linkname,p_timestamp,p_obj#, nvl(proper
ty,0),subname,type#,d_attrs from dependency$ d, obj$ o where d_obj#=:1 and p_obj
#=obj#(+) order by order#
141 141 1.95 8swypbbr0m372
select order#,columns,types from access$ where d_obj#=:1
138 138 1.91 39m4sx9k63ba2
select /*+ index(idl_ub2$ i_idl_ub21) +*/ piece#,length,piece from idl_ub2$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
138 138 1.91 c6awqs517jpj0
select /*+ index(idl_char$ i_idl_char1) +*/ piece#,length,piece from idl_char$ w
here obj#=:1 and part=:2 and version=:3 order by piece#
138 138 1.91 cvn54b7yz0s8u
select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#,length,piece from idl_ub1$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
138 138 1.91 ga9j9xk5cy9s0
select /*+ index(idl_sb4$ i_idl_sb41) +*/ piece#,length,piece from idl_sb4$ wher
e obj#=:1 and part=:2 and version=:3 order by piece#
101 101 1.39 asvzxj61dc5vs
select timestamp, flags from fixed_obj$ where obj#=:1
-------------------------------------------------------------
SQL ordered by Sharable Memory DB/Inst: GLDB/gldb Snaps: 913-914
-> Only Statements with Sharable Memory greater than 1048576 are displayed
Sharable Mem (b) Executions % Total SQL Id
---------------- ------------ -------- -------------
1,237,594 1 0.20 d4m6zb07fqkt6
SELECT JOB_TYPE, JOB_STYLE, SCHEDULE_TYPE, CRED, DEST, COUNT(*) NR_JOBS FROM ( S
ELECT JOB_TYPE, JOB_STYLE, SCHEDULE_TYPE, DECODE(CREDENTIAL_NAME,NULL, 'NO_CREDE
NTIAL', 'CREDENTIAL') CRED, DECODE(DESTINATION,NULL, 'NO_DESTINATION', 'DESTINAT
ION') DEST FROM DBA_SCHEDULER_JOBS WHERE OWNER NOT IN ('SYS', 'ORACLE_OCM', 'EXF
-------------------------------------------------------------
SQL ordered by Version Count DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 913-914
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
Batched IO (bound) vector count 0 0.0 0.0
Batched IO (full) vector count 0 0.0 0.0
Batched IO block miss count 17 0.0 0.0
Batched IO double miss count 1 0.0 0.0
Batched IO same unit count 2 0.0 0.0
Batched IO single block count 0 0.0 0.0
Batched IO vector block count 15 0.0 0.0
Batched IO vector read count 1 0.0 0.0
Block Cleanout Optim referenced 5,297 6.3 0.2
CCursor + sql area evicted 1 0.0 0.0
CPU used by this session 16,275 19.3 0.6
CPU used when call started 16,205 19.2 0.6
CR blocks created 90 0.1 0.0
Cached Commit SCN referenced 0 0.0 0.0
Commit SCN cached 0 0.0 0.0
DB time 281,317 333.7 10.4
DBWR checkpoint buffers written 269,408 319.6 9.9
DBWR checkpoints 1 0.0 0.0
DBWR object drop buffers written 0 0.0 0.0
DBWR parallel query checkpoint b 0 0.0 0.0
DBWR revisited being-written buf 0 0.0 0.0
DBWR tablespace checkpoint buffe 0 0.0 0.0
DBWR thread checkpoint buffers w 0 0.0 0.0
DBWR transaction table writes 29 0.0 0.0
DBWR undo block writes 155,253 184.2 5.7
DFO trees parallelized 0 0.0 0.0
HSC Heap Segment Block Changes 4,239 5.0 0.2
Heap Segment Array Inserts 92 0.1 0.0
Heap Segment Array Updates 158 0.2 0.0
IMU CR rollbacks 77 0.1 0.0
IMU Flushes 24,626 29.2 0.9
IMU Redo allocation size 144,256 171.1 5.3
IMU commits 2,639 3.1 0.1
IMU contention 2 0.0 0.0
IMU ktichg flush 3 0.0 0.0
IMU pool not allocated 100 0.1 0.0
IMU recursive-transaction flush 0 0.0 0.0
IMU undo allocation size 7,637,720 9,060.7 281.6
IMU- failed to get a private str 100 0.1 0.0
LOB table id lookup cache misses 0 0.0 0.0
Number of read IOs issued 0 0.0 0.0
PX local messages recv'd 0 0.0 0.0
PX local messages sent 0 0.0 0.0
Parallel operations not downgrad 0 0.0 0.0
RowCR attempts 3 0.0 0.0
RowCR hits 3 0.0 0.0
SMON posted for undo segment shr 0 0.0 0.0
SQL*Net roundtrips to/from clien 57,330 68.0 2.1
TBS Extension: bytes extended 0 0.0 0.0
TBS Extension: files extended 0 0.0 0.0
TBS Extension: tasks created 0 0.0 0.0
TBS Extension: tasks executed 0 0.0 0.0
active txn count during cleanout 22,574 26.8 0.8
application wait time 1 0.0 0.0
background checkpoints completed 1 0.0 0.0
background checkpoints started 1 0.0 0.0
background timeouts 3,523 4.2 0.1
branch node splits 287 0.3 0.0
buffer is not pinned count 110,355 130.9 4.1
buffer is pinned count 286,258 339.6 10.6
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 913-914
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
bytes received via SQL*Net from 1,015,746,616 1,204,993.2 37,445.5
bytes sent via SQL*Net to client 4,477,372 5,311.6 165.1
calls to get snapshot scn: kcmgs 122,802 145.7 4.5
calls to kcmgas 249,793 296.3 9.2
calls to kcmgcs 94,308 111.9 3.5
cell physical IO interconnect by 6,946,737,664 8,241,003.8 256,091.5
change write time 3,921 4.7 0.1
cleanout - number of ktugct call 45,935 54.5 1.7
cleanouts and rollbacks - consis 0 0.0 0.0
cleanouts only - consistent read 1 0.0 0.0
cluster key scan block gets 64,141 76.1 2.4
cluster key scans 59,686 70.8 2.2
commit batch performed 0 0.0 0.0
commit batch requested 0 0.0 0.0
commit batch/immediate performed 68 0.1 0.0
commit batch/immediate requested 68 0.1 0.0
commit cleanout failures: block 3 0.0 0.0
commit cleanout failures: buffer 0 0.0 0.0
commit cleanout failures: callba 3,724 4.4 0.1
commit cleanouts 3,353,456 3,978.3 123.6
commit cleanouts successfully co 3,349,729 3,973.8 123.5
commit immediate performed 68 0.1 0.0
commit immediate requested 68 0.1 0.0
commit txn count during cleanout 46,439 55.1 1.7
concurrency wait time 20 0.0 0.0
consistent changes 6,362 7.6 0.2
consistent gets 312,368 370.6 11.5
consistent gets - examination 75,458 89.5 2.8
consistent gets direct 2 0.0 0.0
consistent gets from cache 312,366 370.6 11.5
consistent gets from cache (fast 195,142 231.5 7.2
cursor authentications 18 0.0 0.0
data blocks consistent reads - u 149 0.2 0.0
db block changes 7,808,334 9,263.1 287.9
db block gets 14,079,047 16,702.2 519.0
db block gets direct 135,681 161.0 5.0
db block gets from cache 13,943,366 16,541.2 514.0
db block gets from cache (fastpa 3,262,907 3,870.8 120.3
deferred (CURRENT) block cleanou 3,178,575 3,770.8 117.2
dirty buffers inspected 71,958 85.4 2.7
enqueue conversions 175 0.2 0.0
enqueue releases 196,424 233.0 7.2
enqueue requests 196,424 233.0 7.2
enqueue timeouts 0 0.0 0.0
enqueue waits 0 0.0 0.0
execute count 40,665 48.2 1.5
failed probes on index block rec 0 0.0 0.0
file io wait time 99,689,161 118,262.5 3,675.0
free buffer inspected 193,205 229.2 7.1
free buffer requested 192,868 228.8 7.1
heap block compress 35 0.0 0.0
hot buffers moved to head of LRU 74,448 88.3 2.7
immediate (CR) block cleanout ap 1 0.0 0.0
immediate (CURRENT) block cleano 123,528 146.5 4.6
index crx upgrade (positioned) 1,296 1.5 0.1
index crx upgrade (prefetch) 0 0.0 0.0
index fast full scans (direct re 0 0.0 0.0
index fast full scans (full) 24 0.0 0.0
index fast full scans (rowid ran 0 0.0 0.0
index fetch by key 337,088 399.9 12.4
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 913-914
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
index scans kdiixs1 30,012 35.6 1.1
leaf node 90-10 splits 11,338 13.5 0.4
leaf node splits 44,386 52.7 1.6
lob reads 1,049 1.2 0.0
lob writes 2,086 2.5 0.1
lob writes unaligned 2,086 2.5 0.1
logons cumulative 73 0.1 0.0
max cf enq hold time 0 0.0 0.0
messages received 55,857 66.3 2.1
messages sent 55,857 66.3 2.1
min active SCN optimization appl 9 0.0 0.0
no work - consistent read gets 180,005 213.5 6.6
non-idle wait count 336,290 399.0 12.4
non-idle wait time 6,576 7.8 0.2
opened cursors cumulative 10,980 13.0 0.4
parse count (describe) 0 0.0 0.0
parse count (failures) 0 0.0 0.0
parse count (hard) 1,371 1.6 0.1
parse count (total) 7,244 8.6 0.3
parse time cpu 406 0.5 0.0
parse time elapsed 409 0.5 0.0
physical read IO requests 949 1.1 0.0
physical read bytes 19,890,176 23,596.0 733.3
physical read total IO requests 2,680 3.2 0.1
physical read total bytes 48,251,904 57,241.9 1,778.8
physical read total multi block 18 0.0 0.0
physical reads 2,428 2.9 0.1
physical reads cache 2,420 2.9 0.1
physical reads cache prefetch 1,493 1.8 0.1
physical reads direct 8 0.0 0.0
physical reads direct (lob) 0 0.0 0.0
physical reads direct temporary 0 0.0 0.0
physical reads prefetch warmup 0 0.0 0.0
physical write IO requests 63,984 75.9 2.4
physical write bytes 4,667,301,888 5,536,880.0 172,060.1
physical write total IO requests 92,866 110.2 3.4
physical write total bytes 6,898,485,760 8,183,761.9 254,312.7
physical write total multi block 26,408 31.3 1.0
physical writes 569,739 675.9 21.0
physical writes direct 135,687 161.0 5.0
physical writes direct (lob) 4 0.0 0.0
physical writes direct temporary 4 0.0 0.0
physical writes from cache 434,052 514.9 16.0
physical writes non checkpoint 329,343 390.7 12.1
pinned buffers inspected 0 0.0 0.0
pinned cursors current 1 0.0 0.0
prefetch warmup blocks aged out 0 0.0 0.0
prefetched blocks aged out befor 0 0.0 0.0
process last non-idle time 0 0.0 0.0
queries parallelized 0 0.0 0.0
recursive calls 143,617 170.4 5.3
recursive cpu usage 1,411 1.7 0.1
redo blocks checksummed by FG (e 1,746,452 2,071.8 64.4
redo blocks written 4,330,451 5,137.3 159.6
redo buffer allocation retries 0 0.0 0.0
redo entries 4,011,729 4,759.2 147.9
redo log space requests 0 0.0 0.0
redo log space wait time 0 0.0 0.0
redo ordering marks 152,257 180.6 5.6
redo size 2,137,773,520 2,536,068.1 78,809.0
Instance Activity Stats DB/Inst: GLDB/gldb Snaps: 913-914
-> Ordered by statistic name
Statistic Total per Second per Trans
-------------------------------- ------------------ -------------- -------------
redo size for direct writes 1,454,056 1,725.0 53.6
redo subscn max counts 192,054 227.8 7.1
redo synch time 1,010 1.2 0.0
redo synch writes 27,133 32.2 1.0
redo wastage 6,398,168 7,590.2 235.9
redo write time 1,566 1.9 0.1
redo writes 27,322 32.4 1.0
rollback changes - undo records 143 0.2 0.0
rollbacks only - consistent read 90 0.1 0.0
root node splits 0 0.0 0.0
rows fetched via callback 6,773 8.0 0.3
scheduler wait time 0 0.0 0.0
session connect time 0 0.0 0.0
session cursor cache hits 10,441 12.4 0.4
session logical reads 14,391,415 17,072.7 530.5
shared hash latch upgrades - no 5,071 6.0 0.2
shared hash latch upgrades - wai 0 0.0 0.0
sorts (disk) 0 0.0 0.0
sorts (memory) 102,541 121.7 3.8
sorts (rows) 9,793,625 11,618.3 361.0
sql area evicted 1,238 1.5 0.1
sql area purged 4 0.0 0.0
summed dirty queue length 578,403 686.2 21.3
switch current to new buffer 979 1.2 0.0
table fetch by rowid 34,720 41.2 1.3
table fetch continued row 152 0.2 0.0
table scan blocks gotten 81,446 96.6 3.0
table scan rows gotten 4,061,936 4,818.7 149.7
table scans (direct read) 0 0.0 0.0
table scans (long tables) 0 0.0 0.0
table scans (short tables) 1,532 1.8 0.1
temp space allocated (bytes) 0 0.0 0.0
total cf enq hold time 15 0.0 0.0
total number of cf enq holders 47 0.1 0.0
total number of slots 0 0.0 0.0
total number of times SMON poste 0 0.0 0.0
transaction rollbacks 68 0.1 0.0
undo change vector size 882,363,380 1,046,759.0 32,528.3
user I/O wait time 1,170 1.4 0.0
user calls 57,854 68.6 2.1
user commits 27,126 32.2 1.0
user rollbacks 0 0.0 0.0
workarea executions - onepass 0 0.0 0.0
workarea executions - optimal 247,514 293.6 9.1
write clones created in backgrou 0 0.0 0.0
write clones created in foregrou 0 0.0 0.0
-------------------------------------------------------------
Instance Activity Stats - Absolute Values DB/Inst: GLDB/gldb Snaps: 913-914
-> Statistics with absolute values (should not be diffed)
Statistic Begin Value End Value
-------------------------------- --------------- ---------------
session uga memory max 7,787,991,672 7,873,531,288
session pga memory 4,615,092,944 4,654,249,280
session pga memory max 5,484,706,848 5,523,469,968
session cursor cache count 148,564 149,942
session uga memory 9.191709782E+12 9.269022881E+12
opened cursors current 194 192
logons current 36 36
-------------------------------------------------------------
Instance Activity Stats - Thread Activity DB/Inst: GLDB/gldb Snaps: 913-914
-> Statistics identified by '(derived)' come from sources other than SYSSTAT
Statistic Total per Hour
-------------------------------- ------------------ ---------
log switches (derived) 1 4.27
-------------------------------------------------------------
IOStat by Function summary DB/Inst: GLDB/gldb Snaps: 913-914
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Function Name Data per sec per sec Data per sec per sec Count Tm(ms)
--------------- ------- ------- ------- ------- ------- ------- ------- -------
DBWR 0M 0.0 0M 3.3G 42.7 4.02278 0 N/A
LGWR 0M 0.0 0M 2.1G 33.3 2.50786 36 0.0
Others 26M 2.0 .030844 996M 30.0 1.18156 2120 0.5
Direct Writes 0M 0.0 0M 77M 4.1 .091346 0 N/A
Buffer Cache Re 20M 1.1 .023726 0M 0.0 0M 936 0.5
Direct Reads 0M 0.0 0M 0M 0.0 0M 0 N/A
TOTAL: 46M 3.2 .054570 6.4G 110.2 7.80356 3092 0.5
-------------------------------------------------------------
IOStat by Filetype summary DB/Inst: GLDB/gldb Snaps: 913-914
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Small Read and Large Read are average service times, in milliseconds
-> Ordered by (Data Read + Write) desc
Reads: Reqs Data Writes: Reqs Data Small Large
Filetype Name Data per sec per sec Data per sec per sec Read Read
--------------- ------- ------- ------- ------- ------- ------- ------- -------
Data File 17M 1.1 .020167 4.3G 75.9 5.27909 0.4 3.4
Log File 0M 0.0 0M 2.1G 33.2 2.50786 0.0 N/A
Control File 27M 2.0 .032030 13M 1.0 .015422 0.2 N/A
Temp File 0M 0.0 0M 0M 0.0 0M 0.0 N/A
TOTAL: 44M 3.2 .052197 6.4G 110.2 7.80237 0.3 3.4
-------------------------------------------------------------
IOStat by Function/Filetype summary DB/Inst: GLDB/gldb Snaps: 913-914
-> 'Data' columns suffixed with M,G,T,P are in multiples of 1024
other columns suffixed with K,M,G,T,P are in multiples of 1000
-> Ordered by (Data Read + Write) desc for each function
Reads: Reqs Data Writes: Reqs Data Waits: Avg
Data per sec per sec Data per sec per sec Count Tm(ms)
------- ------- ------- ------- ------- ------- ------- -------
DBWR
0M 0.0 0M 3.3G 42.7 4.02278 0 N/A
DBWR (Data File)
0M 0.0 0M 3.3G 42.7 4.02278 0 N/A
LGWR
0M 0.0 0M 2.1G 33.3 2.50786 26 0.0
LGWR (Log File)
0M 0.0 0M 2.1G 33.3 2.50786 4 0.0
LGWR (Control File)
0M 0.0 0M 0M 0.0 0M 22 0.0
Others
27M 2.0 .032030 996M 30.0 1.18156 1704 0.2
Others (Data File)
0M 0.0 0M 983M 29.1 1.16614 8 0.0
Others (Control File)
27M 2.0 .032030 13M 1.0 .015422 1696 0.2
Direct Writes
0M 0.0 0M 77M 4.1 .091346 0 N/A
Direct Writes (Data File)
0M 0.0 0M 77M 4.1 .091346 0 N/A
Buffer Cache Reads
20M 1.1 .023726 0M 0.0 0M 935 0.5
Buffer Cache Reads (Data File)
20M 1.1 .023726 0M 0.0 0M 935 0.5
Direct Reads
0M 0.0 0M 0M 0.0 0M 0 N/A
Direct Reads (Data File)
0M 0.0 0M 0M 0.0 0M 0 N/A
TOTAL:
47M 3.2 .055756 6.4G 110.2 7.80356 2665 0.3
-------------------------------------------------------------
Tablespace IO Stats DB/Inst: GLDB/gldb Snaps: 913-914
-> ordered by IOs (Reads + Writes) desc
Tablespace
------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
GLCOMM
1 0 0.0 1.0 50,350 60 0 0.0
UNDOTBS1
1 0 0.0 1.0 13,038 15 0 0.0
SYSTEM
713 1 0.4 2.0 38 0 0 0.0
SYSAUX
220 0 0.5 4.4 522 1 0 0.0
TEMP
4 0 2.5 1.0 4 0 0 0.0
EXAMPLE
1 0 0.0 1.0 1 0 0 0.0
USERS
1 0 0.0 1.0 1 0 0 0.0
-------------------------------------------------------------
File IO Stats DB/Inst: GLDB/gldb Snaps: 913-914
-> ordered by Tablespace, File
Tablespace Filename
------------------------ ----------------------------------------------------
Av Av Av Av Buffer Av Buf
Reads Reads/s Rd(ms) Blks/Rd Writes Writes/s Waits Wt(ms)
-------------- ------- ------- ------- ------------ -------- ---------- -------
EXAMPLE D:\ORACLE\ORADATA\GLDB\EXAMPLE01.DBF
1 0 0.0 1.0 1 0 0 0.0
GLCOMM D:\ORACLE\ORADATA\GLDB\GLCOMM01.DBF
1 0 0.0 1.0 50,350 60 0 0.0
SYSAUX D:\ORACLE\ORADATA\GLDB\SYSAUX01.DBF
220 0 0.5 4.4 522 1 0 0.0
SYSTEM D:\ORACLE\ORADATA\GLDB\SYSTEM01.DBF
713 1 0.4 2.0 38 0 0 0.0
TEMP D:\ORACLE\ORADATA\GLDB\TEMP01.DBF
4 0 2.5 1.0 4 0 0 N/A
UNDOTBS1 D:\ORACLE\ORADATA\GLDB\UNDOTBS01.DBF
1 0 0.0 1.0 13,038 15 0 0.0
USERS D:\ORACLE\ORADATA\GLDB\USERS01.DBF
1 0 0.0 1.0 1 0 0 0.0
-------------------------------------------------------------
Buffer Pool Statistics DB/Inst: GLDB/gldb Snaps: 913-914
-> Standard block size Pools D: default, K: keep, R: recycle
-> Default Pools for other block sizes: 2k, 4k, 8k, 16k, 32k
Free Writ Buffer
Number of Pool Buffer Physical Physical Buff Comp Busy
P Buffers Hit% Gets Reads Writes Wait Wait Waits
--- ---------- ---- ------------ ------------ ----------- ------ ------ --------
D 281,710 100 14,256,417 2,421 434,052 0 0 0
-------------------------------------------------------------
Checkpoint Activity DB/Inst: GLDB/gldb Snaps: 913-914
-> Total Physical Writes: 569,739
Other Autotune Thread
MTTR Log Size Log Ckpt Settings Ckpt Ckpt
Writes Writes Writes Writes Writes Writes
----------- ----------- ----------- ----------- ----------- -----------
0 0 0 0 269,408 0
-------------------------------------------------------------
Instance Recovery Stats DB/Inst: GLDB/gldb Snaps: 913-914
-> B: Begin Snapshot, E: End Snapshot
Estd
Targt Estd Log Ckpt Log Ckpt Opt RAC
MTTR MTTR Recovery Actual Target Log Sz Timeout Interval Log Avail
(s) (s) Estd IOs RedoBlks RedoBlks RedoBlks RedoBlks RedoBlks Sz(M) Time
- ----- ----- -------- -------- -------- -------- -------- -------- ------ -----
B 0 46 123789 1464318 1856733 1.66E+07 1856733 N/A N/A N/A
E 0 44 144036 1635354 6188855 1.66E+07 6188855 N/A N/A N/A
-------------------------------------------------------------
MTTR Advisory DB/Inst: GLDB/gldb Snap: 914
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Pool Advisory DB/Inst: GLDB/gldb Snap: 914
-> Only rows with estimated physical reads >0 are displayed
-> ordered by Block Size, Buffers For Estimate
Est
Phys Estimated Est
Size for Size Buffers Read Phys Reads Est Phys %DBtime
P Est (M) Factor (thousands) Factor (thousands) Read Time for Rds
--- -------- ------ ------------ ------ -------------- ------------ -------
D 224 .1 28 1.7 2,377 1 510.0
D 448 .2 55 1.7 2,327 1 489.0
D 672 .3 83 1.6 2,209 1 440.0
D 896 .4 110 1.4 1,995 1 350.0
D 1,120 .5 138 1.1 1,492 1 140.0
D 1,344 .6 165 1.0 1,434 1 116.0
D 1,568 .7 193 1.0 1,425 1 112.0
D 1,792 .8 221 1.0 1,411 1 106.0
D 2,016 .9 248 1.0 1,400 1 102.0
D 2,240 1.0 276 1.0 1,389 1 97.0
D 2,288 1.0 282 1.0 1,387 1 96.0
D 2,464 1.1 303 1.0 1,383 1 94.0
D 2,688 1.2 331 1.0 1,378 1 93.0
D 2,912 1.3 359 1.0 1,374 1 91.0
D 3,136 1.4 386 1.0 1,370 1 89.0
D 3,360 1.5 414 1.0 1,366 1 87.0
D 3,584 1.6 441 1.0 1,347 1 79.0
D 3,808 1.7 469 1.0 1,329 1 75.0
D 4,032 1.8 496 0.9 1,316 1 75.0
D 4,256 1.9 524 0.9 1,305 1 75.0
D 4,480 2.0 552 0.9 1,298 1 75.0
-------------------------------------------------------------
PGA Aggr Summary DB/Inst: GLDB/gldb Snaps: 913-914
-> PGA cache hit % - percentage of W/A (WorkArea) data processed only in-memory
PGA Cache Hit % W/A MB Processed Extra W/A MB Read/Written
--------------- ------------------ --------------------------
100.0 14,950 0
-------------------------------------------------------------
PGA Aggr Target Stats DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
PGA Aggr Target Histogram DB/Inst: GLDB/gldb Snaps: 913-914
-> Optimal Executions are purely in-memory operations
Low High
Optimal Optimal Total Execs Optimal Execs 1-Pass Execs M-Pass Execs
------- ------- -------------- -------------- ------------ ------------
2K 4K 198,502 198,502 0 0
64K 128K 2 2 0 0
256K 512K 41,938 41,938 0 0
512K 1024K 7,031 7,031 0 0
1M 2M 35 35 0 0
2M 4M 4 4 0 0
4M 8M 2 2 0 0
-------------------------------------------------------------
PGA Memory Advisory DB/Inst: GLDB/gldb Snap: 914
-> When using Auto Memory Mgmt, minimally choose a pga_aggregate_target value
where Estd PGA Overalloc Count is 0
Estd Extra Estd P Estd PGA
PGA Target Size W/A MB W/A MB Read/ Cache Overallo Estd
Est (MB) Factr Processed Written to Disk Hit % Count Time
---------- ------- ---------------- ---------------- ------ -------- -------
246 0.1 30,079.0 447.2 99.0 0 9.3E+05
492 0.3 30,079.0 447.2 99.0 0 9.3E+05
984 0.5 30,079.0 279.5 99.0 0 9.2E+05
1,476 0.8 30,079.0 279.5 99.0 0 9.2E+05
1,968 1.0 30,079.0 279.5 99.0 0 9.2E+05
2,362 1.2 30,079.0 279.5 99.0 0 9.2E+05
2,755 1.4 30,079.0 279.5 99.0 0 9.2E+05
3,149 1.6 30,079.0 279.5 99.0 0 9.2E+05
3,542 1.8 30,079.0 279.5 99.0 0 9.2E+05
3,936 2.0 30,079.0 279.5 99.0 0 9.2E+05
5,904 3.0 30,079.0 279.5 99.0 0 9.2E+05
7,872 4.0 30,079.0 279.5 99.0 0 9.2E+05
11,808 6.0 30,079.0 279.5 99.0 0 9.2E+05
15,744 8.0 30,079.0 279.5 99.0 0 9.2E+05
-------------------------------------------------------------
Shared Pool Advisory DB/Inst: GLDB/gldb Snap: 914
-> SP: Shared Pool Est LC: Estimated Library Cache Factr: Factor
-> Note there is often a 1:Many correlation between a single logical object
in the Library Cache, and the physical number of memory objects associated
with it. Therefore comparing the number of Lib Cache objects (e.g. in
v$librarycache), with the number of Lib Cache Memory Objects is invalid.
Est LC Est LC Est LC Est LC
Shared SP Est LC Time Time Load Load Est LC
Pool Size Size Est LC Saved Saved Time Time Mem Obj
Size(M) Factr (M) Mem Obj (s) Factr (s) Factr Hits (K)
-------- ----- -------- ------------ -------- ------ ------- ------ ------------
336 .6 15 1,442 15,745 1.0 1,002 1.2 6,867
400 .7 80 6,487 15,774 1.0 973 1.1 28,864
464 .8 141 8,592 15,867 1.0 880 1.0 28,878
528 .9 205 11,642 15,877 1.0 870 1.0 28,880
592 1.0 269 14,599 15,881 1.0 866 1.0 28,881
656 1.1 332 17,311 15,884 1.0 863 1.0 28,882
720 1.2 394 20,139 15,886 1.0 861 1.0 28,882
784 1.3 458 22,867 15,887 1.0 860 1.0 28,883
848 1.4 522 25,481 15,889 1.0 858 1.0 28,883
912 1.5 586 28,190 15,890 1.0 857 1.0 28,883
976 1.6 650 31,443 15,890 1.0 857 1.0 28,883
1,040 1.8 714 33,854 15,890 1.0 857 1.0 28,883
1,104 1.9 778 36,216 15,890 1.0 857 1.0 28,883
1,168 2.0 838 38,559 15,890 1.0 857 1.0 28,883
1,232 2.1 873 40,115 15,890 1.0 857 1.0 28,883
-------------------------------------------------------------
SGA Target Advisory DB/Inst: GLDB/gldb Snap: 914
SGA Target SGA Size Est DB Est Physical
Size (M) Factor Time (s) Reads
---------- ---------- ------------ ----------------
736 0.3 5,331 2,373,953
1,472 0.5 4,993 1,491,941
2,208 0.8 4,826 1,434,223
2,944 1.0 4,810 1,387,465
3,680 1.3 4,801 1,378,308
4,416 1.5 4,788 1,328,914
5,152 1.8 4,783 1,315,594
5,888 2.0 4,785 1,297,696
-------------------------------------------------------------
Streams Pool Advisory DB/Inst: GLDB/gldb Snap: 914
No data exists for this section of the report.
-------------------------------------------------------------
Java Pool Advisory DB/Inst: GLDB/gldb Snap: 914
No data exists for this section of the report.
-------------------------------------------------------------
Buffer Wait Statistics DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Enqueue Activity DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Undo Segment Summary DB/Inst: GLDB/gldb Snaps: 913-914
-> Min/Max TR (mins) - Min and Max Tuned Retention (minutes)
-> STO - Snapshot Too Old count, OOS - Out of Space count
-> Undo segment block stats:
-> uS - unexpired Stolen, your - unexpired Released, uU - unexpired reUsed
-> eS - expired Stolen, eR - expired Released, eU - expired reUsed
Undo Num Undo Number of Max Qry Max Tx Min/Max STO/ uS/uR/uU/
TS# Blocks (K) Transactions Len (s) Concurcy TR (mins) OOS eS/eR/eU
---- ---------- --------------- -------- -------- --------- ----- --------------
2 98.5 49,502 506 4 20.5/20.5 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Undo Segment Stats DB/Inst: GLDB/gldb Snaps: 913-914
-> Most recent 35 Undostat rows, ordered by Time desc
Num Undo Number of Max Qry Max Tx Tun Ret STO/ uS/uR/uU/
End Time Blocks Transactions Len (s) Concy (mins) OOS eS/eR/eU
------------ ----------- ------------ ------- ------- ------- ----- ------------
17-Oct 17:08 98,483 49,502 506 4 20 0/0 0/0/0/0/0/0
-------------------------------------------------------------
Latch Activity DB/Inst: GLDB/gldb Snaps: 913-914
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
AQ deq hash table latch 1 0.0 0 0 N/A
AQ dequeue txn counter l 732 0.0 0 0 N/A
ASM db client latch 561 0.0 0 0 N/A
ASM map operation hash t 1 0.0 0 0 N/A
ASM network state latch 14 0.0 0 0 N/A
AWR Alerted Metric Eleme 6,021 0.0 0 0 N/A
Change Notification Hash 24,743 0.0 0 0 N/A
Consistent RBA 27,325 0.0 0 0 N/A
DML lock allocation 72,205 0.0 0 0 N/A
Event Group Locks 56 0.0 0 0 N/A
FOB s.o list latch 167 0.0 0 0 N/A
File State Object Pool P 1 0.0 0 0 N/A
IPC stats buffer allocat 1 0.0 0 0 N/A
In memory undo latch 113,428 0.0 0 27,756 0.0
JS Sh mem access 1 0.0 0 0 N/A
JS broadcast autostart l 16 0.0 0 0 N/A
JS mem alloc latch 2 0.0 0 0 N/A
JS queue access latch 3 0.0 0 0 N/A
JS queue state obj latch 6,190 0.0 0 0 N/A
JS slv state obj latch 57 0.0 0 0 N/A
KFC FX Hash Latch 1 0.0 0 0 N/A
KFC Hash Latch 1 0.0 0 0 N/A
KFCL LE Freelist 1 0.0 0 0 N/A
KGNFS-NFS:SHM structure 1 0.0 0 0 N/A
KGNFS-NFS:SVR LIST 1 0.0 0 0 N/A
KJC message pool free li 1 0.0 0 0 N/A
KJCT flow control latch 1 0.0 0 0 N/A
KMG MMAN ready and start 280 0.0 0 0 N/A
KTF sga latch 4 0.0 0 281 0.0
KWQS pqueue ctx latch 12 0.0 0 0 N/A
Locator state objects po 1 0.0 0 0 N/A
Lsod array latch 1 0.0 0 0 N/A
MQL Tracking Latch 0 N/A 0 16 0.0
Managed Standby Recovery 1 0.0 0 0 N/A
Memory Management Latch 1 0.0 0 280 0.0
Memory Queue 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Message Sub 1 0.0 0 0 N/A
Memory Queue Subscriber 1 0.0 0 0 N/A
MinActiveScn Latch 5 0.0 0 0 N/A
Mutex 1 0.0 0 0 N/A
Mutex Stats 1 0.0 0 0 N/A
OS process 394 0.0 0 0 N/A
OS process allocation 542 0.0 0 0 N/A
OS process: request allo 110 0.0 0 0 N/A
PL/SQL warning settings 778 0.0 0 0 N/A
PX hash array latch 1 0.0 0 0 N/A
QMT 1 0.0 0 0 N/A
Real-time plan statistic 490 0.0 0 0 N/A
Result Cache: RC Latch 2 0.0 0 0 N/A
SGA IO buffer pool latch 2,552 0.0 0 3,199 0.0
SGA blob parent 1 0.0 0 0 N/A
SGA bucket locks 1 0.0 0 0 N/A
SGA heap locks 1 0.0 0 0 N/A
SGA pool locks 1 0.0 0 0 N/A
SQL memory manager latch 29 0.0 0 280 0.0
SQL memory manager worka 69,122 0.0 0.0 0 0 N/A
Shared B-Tree 77 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 913-914
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
Streams Generic 1 0.0 0 0 N/A
Testing 1 0.0 0 0 N/A
Token Manager 1 0.0 0 0 N/A
WCR: sync 1 0.0 0 0 N/A
Write State Object Pool 1 0.0 0 0 N/A
X$KSFQP 1 0.0 0 0 N/A
XDB NFS Security Latch 1 0.0 0 0 N/A
XDB unused session pool 1 0.0 0 0 N/A
XDB used session pool 1 0.0 0 0 N/A
active checkpoint queue 28,755 0.0 0 0 N/A
active service list 2,063 0.0 0.0 0 21,716 0.0
archive control 64 0.0 0 0 N/A
begin backup scn array 27,957 0.0 0 0 N/A
buffer pool 1 0.0 0 0 N/A
business card 1 0.0 0 0 N/A
cache buffer handles 406 0.0 0 0 N/A
cache buffers chains 54,943,896 0.0 0.0 0 205,331 0.0
cache buffers lru chain 448,877 0.0 0.0 0 638,830 0.0
cache table scan latch 124 0.0 0 124 0.0
call allocation 1,127 0.1 0.0 0 0 N/A
cas latch 1 0.0 0 0 N/A
change notification clie 1 0.0 0 0 N/A
channel handle pool latc 113 0.0 0 0 N/A
channel operations paren 5,312 0.0 0 0 N/A
checkpoint queue latch 745,435 0.0 0.1 0 453,876 0.0
client/application info 1,312 0.0 0 0 N/A
compile environment latc 73 0.0 0 0 N/A
corrupted undo seg latch 497 0.0 0 0 N/A
cp cmon/server latch 1 0.0 0 0 N/A
cp pool latch 1 0.0 0 0 N/A
cp server hash latch 1 0.0 0 0 N/A
cp sga latch 14 0.0 0 0 N/A
cvmap freelist lock 1 0.0 0 0 N/A
deferred cleanup latch 14 0.0 0 0 N/A
dml lock allocation 14 0.0 0 0 N/A
done queue latch 1 0.0 0 0 N/A
dummy allocation 147 0.0 0 0 N/A
enqueue hash chains 393,073 0.0 0 0 N/A
enqueues 190,077 0.0 0.0 0 0 N/A
fifth spare latch 1 0.0 0 0 N/A
file cache latch 344 0.0 0 0 N/A
flashback copy 1 0.0 0 0 N/A
gc element 1 0.0 0 0 N/A
gcs commit scn state 1 0.0 0 0 N/A
gcs partitioned table ha 1 0.0 0 0 N/A
gcs pcm hashed value buc 1 0.0 0 0 N/A
gcs resource freelist 1 0.0 0 0 N/A
gcs resource hash 1 0.0 0 0 N/A
gcs resource scan list 1 0.0 0 0 N/A
gcs shadows freelist 1 0.0 0 0 N/A
ges domain table 1 0.0 0 0 N/A
ges enqueue table freeli 1 0.0 0 0 N/A
ges group table 1 0.0 0 0 N/A
ges process hash list 1 0.0 0 0 N/A
ges process parent latch 1 0.0 0 0 N/A
ges resource hash list 1 0.0 0 0 N/A
ges resource scan list 1 0.0 0 0 N/A
ges resource table freel 1 0.0 0 0 N/A
ges value block free lis 1 0.0 0 0 N/A
global KZLD latch for me 17 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 913-914
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
global ctx hash table la 3 0.0 0 0 N/A
global tx hash mapping 1 0.0 0 0 N/A
granule operation 1 0.0 0 0 N/A
hash table column usage 0 N/A 0 165,095 0.0
hash table modification 19 0.0 0 0 N/A
heartbeat check 1 0.0 0 0 N/A
internal temp table obje 13 0.0 0 0 N/A
intra txn parallel recov 1 0.0 0 0 N/A
io pool granule metadata 1 0.0 0 0 N/A
job workq parent latch 19 0.0 0 18 0.0
job_queue_processes free 40 0.0 0 0 N/A
job_queue_processes para 201 0.0 0 0 N/A
k2q lock allocation 1 0.0 0 0 N/A
kcbtsemkid latch 1 0.0 0 0 N/A
kdlx hb parent latch 1 0.0 0 0 N/A
kgb parent 1 0.0 0 0 N/A
kks stats 8,260 0.0 0 0 N/A
kokc descriptor allocati 286 0.0 0 0 N/A
ksfv messages 1 0.0 0 0 N/A
kss move lock 21 0.0 0 0 N/A
ksuosstats global area 59 0.0 0 0 N/A
ksv allocation latch 54 0.0 0 0 N/A
ksv class latch 41 0.0 0 0 N/A
ksv msg queue latch 1 0.0 0 0 N/A
ksz_so allocation latch 110 0.0 0 0 N/A
ktm global data 3 0.0 0 0 N/A
kwqbsn:qsga 42 0.0 0 0 N/A
lgwr LWN SCN 27,344 0.0 0.0 0 0 N/A
list of block allocation 256,979 0.0 0 0 N/A
loader state object free 48,954 0.0 0 0 N/A
lob segment dispenser la 1 0.0 0 0 N/A
lob segment hash table l 3 0.0 0 0 N/A
lob segment query latch 1 0.0 0 0 N/A
lock DBA buffer during m 1 0.0 0 0 N/A
logical standby cache 1 0.0 0 0 N/A
logminer context allocat 1 0.0 0 0 N/A
logminer work area 1 0.0 0 0 N/A
longop free list parent 1 0.0 0 0 N/A
mapped buffers lru chain 1 0.0 0 0 N/A
message pool operations 55 0.0 0 0 N/A
messages 146,450 0.0 0.0 0 0 N/A
mostly latch-free SCN 27,339 0.0 0 0 N/A
msg queue latch 1 0.0 0 0 N/A
multiblock read objects 328 0.0 0 0 N/A
name-service namespace b 1 0.0 0 0 N/A
ncodef allocation latch 14 0.0 0 0 N/A
object queue header heap 115,376 0.0 0 595 0.0
object queue header oper 1,803,109 0.0 0.0 0 0 N/A
object stats modificatio 125 0.0 0 0 N/A
parallel query alloc buf 113 0.0 0 0 N/A
parallel query stats 1 0.0 0 0 N/A
parameter list 45 0.0 0 0 N/A
parameter table manageme 148 0.0 0 0 N/A
peshm 1 0.0 0 0 N/A
pesom_free_list 1 0.0 0 0 N/A
pesom_hash_node 1 0.0 0 0 N/A
post/wait queue 40,812 0.0 0 27,113 0.0
process allocation 148 0.0 0 55 0.0
process group creation 110 0.0 0 0 N/A
process queue 1 0.0 0 0 N/A
Latch Activity DB/Inst: GLDB/gldb Snaps: 913-914
-> "Get Requests", "Pct Get Miss" and "Avg Slps/Miss" are statistics for
willing-to-wait latch get requests
-> "NoWait Requests", "Pct NoWait Miss" are for no-wait latch get requests
-> "Pct Misses" for both should be very close to 0.0
Pct Avg Wait Pct
Get Get Slps Time NoWait NoWait
Latch Name Requests Miss /Miss (s) Requests Miss
------------------------ -------------- ------ ------ ------ ------------ ------
process queue reference 1 0.0 0 0 N/A
qmn task queue latch 120 0.0 0 0 N/A
query server freelists 1 0.0 0 0 N/A
queued dump request 3 0.0 0 0 N/A
queuing load statistics 1 0.0 0 0 N/A
recovery domain hash lis 1 0.0 0 0 N/A
redo allocation 137,756 0.0 0.0 0 4,012,119 0.0
redo copy 1 0.0 0 4,012,174 0.0
redo writing 111,477 0.0 0.0 0 0 N/A
resmgr group change latc 278 0.0 0 0 N/A
resmgr:active threads 147 0.0 0 0 N/A
resmgr:actses change gro 46 0.0 0 0 N/A
resmgr:actses change sta 1 0.0 0 0 N/A
resmgr:free threads list 146 0.7 0.0 0 0 N/A
resmgr:plan CPU method 1 0.0 0 0 N/A
resmgr:resource group CP 1 0.0 0 0 N/A
resmgr:schema config 11 0.0 0 0 N/A
resmgr:session queuing 1 0.0 0 0 N/A
rm cas latch 1 0.0 0 0 N/A
row cache objects 499,083 0.0 0.0 0 267 0.0
second spare latch 1 0.0 0 0 N/A
sequence cache 7,322,626 0.0 0 0 N/A
session allocation 84,742 0.0 0 28,247 0.0
session idle bit 143,876 0.0 0 0 N/A
session queue latch 1 0.0 0 0 N/A
session state list latch 150 0.0 0 0 N/A
session switching 290 0.0 0 0 N/A
session timer 297 0.0 0 0 N/A
shared pool 97,028 0.0 0.0 0 0 N/A
shared pool sim alloc 100 0.0 0 0 N/A
shared pool simulator 15,546 0.0 0 0 N/A
sim partition latch 1 0.0 0 0 N/A
simulator hash latch 795,250 0.0 0.0 0 0 N/A
simulator lru latch 157,865 0.0 0.0 0 613,481 0.0
sort extent pool 82 0.0 0 0 N/A
space background state o 2 0.0 0 0 N/A
space background task la 619 0.0 0 560 0.0
state object free list 4 0.0 0 0 N/A
statistics aggregation 560 0.0 0 0 N/A
tablespace key chain 9 0.0 0 0 N/A
temp lob duration state 6 0.0 0 0 N/A
temporary table state ob 2 0.0 0 0 N/A
test excl. parent l0 1 0.0 0 0 N/A
test excl. parent2 l0 1 0.0 0 0 N/A
third spare latch 1 0.0 0 0 N/A
threshold alerts latch 41 0.0 0 0 N/A
transaction allocation 4,421 0.0 0 0 N/A
undo global data 436,402 0.0 0 0 N/A
virtual circuit buffers 1 0.0 0 0 N/A
virtual circuit holder 1 0.0 0 0 N/A
virtual circuit queues 1 0.0 0 0 N/A
-------------------------------------------------------------
Latch Sleep Breakdown DB/Inst: GLDB/gldb Snaps: 913-914
-> ordered by misses desc
Get Spin
Latch Name Requests Misses Sleeps Gets
-------------------------- --------------- ------------ ----------- -----------
messages 146,450 62 1 61
checkpoint queue latch 745,435 19 1 18
-------------------------------------------------------------
Latch Miss Sources DB/Inst: GLDB/gldb Snaps: 913-914
-> only latches with sleeps are shown
-> ordered by name, sleeps desc
NoWait Waiter
Latch Name Where Misses Sleeps Sleeps
------------------------ -------------------------- ------- ---------- --------
checkpoint queue latch kcbklbc_cql 0 1 0
messages ksarcv 0 1 0
-------------------------------------------------------------
Mutex Sleep Summary DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Parent Latch Statistics DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Child Latch Statistics DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Logical Reads DB/Inst: GLDB/gldb Snaps: 913-914
-> Total Logical Reads: 14,391,415
-> Captured Segments account for 95.9% of Total
Tablespace Subobject Obj. Logical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 9,941,248 69.08
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 3,122,208 21.69
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 210,224 1.46
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 167,808 1.17
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 145,136 1.01
-------------------------------------------------------------
Segments by Physical Reads DB/Inst: GLDB/gldb Snaps: 913-914
-> Total Physical Reads: 2,428
-> Captured Segments account for 35.9% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSTEM VIEW$ TABLE 708 29.16
SYS SYSTEM I_HH_OBJ#_INTCOL# INDEX 84 3.46
SYSMAN SYSAUX MGMT_METRICS_RAW_PK INDEX 22 .91
SYS SYSTEM COL$ TABLE 15 .62
SYS SYSTEM KOTTD$ TABLE 7 .29
-------------------------------------------------------------
Segments by Physical Read Requests DB/Inst: GLDB/gldb Snaps: 913-914
-> Total Physical Read Requests: 949
-> Captured Segments account for 22.6% of Total
Tablespace Subobject Obj. Phys Read
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSTEM VIEW$ TABLE 92 9.69
SYS SYSTEM I_HH_OBJ#_INTCOL# INDEX 44 4.64
SYSMAN SYSAUX MGMT_METRICS_RAW_PK INDEX 22 2.32
SYS SYSTEM COL$ TABLE 14 1.48
SYS SYSTEM KOTTD$ TABLE 7 .74
-------------------------------------------------------------
Segments by UnOptimized Reads DB/Inst: GLDB/gldb Snaps: 913-914
-> Total UnOptimized Read Requests: 949
-> Captured Segments account for 22.6% of Total
Tablespace Subobject Obj. UnOptimized
Owner Name Object Name Name Type Reads %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSTEM VIEW$ TABLE 92 9.69
SYS SYSTEM I_HH_OBJ#_INTCOL# INDEX 44 4.64
SYSMAN SYSAUX MGMT_METRICS_RAW_PK INDEX 22 2.32
SYS SYSTEM COL$ TABLE 14 1.48
SYS SYSTEM KOTTD$ TABLE 7 .74
-------------------------------------------------------------
Segments by Optimized Reads DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Direct Physical Reads DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Physical Writes DB/Inst: GLDB/gldb Snaps: 913-914
-> Total Physical Writes: 569,739
-> Captured Segments account for 72.6% of Total
Tablespace Subobject Obj. Physical
Owner Name Object Name Name Type Writes %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 243,885 42.81
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 135,682 23.81
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 21,027 3.69
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 7,318 1.28
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 5,562 .98
-------------------------------------------------------------
Segments by Physical Write Requests DB/Inst: GLDB/gldb Snaps: 913-914
-> Total Physical Write Requestss: 63,984
-> Captured Segments account for 79.0% of Total
Tablespace Subobject Obj. Phys Write
Owner Name Object Name Name Type Requests %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 27,956 43.69
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 18,916 29.56
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,528 3.95
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 541 .85
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 402 .63
-------------------------------------------------------------
Segments by Direct Physical Writes DB/Inst: GLDB/gldb Snaps: 913-914
-> Total Direct Physical Writes: 135,687
-> Captured Segments account for 100.0% of Total
Tablespace Subobject Obj. Direct
Owner Name Object Name Name Type Writes %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 135,679 99.99
SYS SYSAUX SYS_LOB0000006021C00 LOB 2 .00
SYS SYSAUX SYS_LOB0000006207C00 LOB 1 .00
-------------------------------------------------------------
Segments by Table Scans DB/Inst: GLDB/gldb Snaps: 913-914
-> Total Table Scans: 24
-> Captured Segments account for 79.2% of Total
Tablespace Subobject Obj. Table
Owner Name Object Name Name Type Scans %Total
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSTEM I_OBJ1 INDEX 15 62.50
SYS SYSTEM I_HH_OBJ#_INTCOL# INDEX 2 8.33
SYS SYSTEM I_OBJ2 INDEX 2 8.33
-------------------------------------------------------------
Segments by DB Blocks Changes DB/Inst: GLDB/gldb Snaps: 913-914
-> % of Capture shows % of DB Block Changes for each top segment compared
-> with total DB Block Changes for all segments captured by the Snapshot
Tablespace Subobject Obj. DB Block % of
Owner Name Object Name Name Type Changes Capture
---------- ---------- -------------------- ---------- ----- ------------ -------
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 2,706,544 68.72
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 949,088 24.10
SYSTEM GLCOMM GLI_TRAFFIC_SUM_VOIP INDEX 110,720 2.81
SYSTEM GLCOMM PK_GLT_PROT_TRAFFIC_ INDEX 90,416 2.30
SYSTEM GLCOMM GLT_PROT_TRAFFIC_SUM TABLE 72,768 1.85
-------------------------------------------------------------
Segments by Row Lock Waits DB/Inst: GLDB/gldb Snaps: 913-914
-> % of Capture shows % of row lock waits for each top segment compared
-> with total row lock waits for all segments captured by the Snapshot
Row
Tablespace Subobject Obj. Lock % of
Owner Name Object Name Name Type Waits Capture
---------- ---------- -------------------- ---------- ----- ------------ -------
SYS SYSAUX WRH$_SQLSTAT_PK 699466_842 INDEX 2 100.00
-------------------------------------------------------------
Segments by ITL Waits DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Segments by Buffer Busy Waits DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Dictionary Cache Stats DB/Inst: GLDB/gldb Snaps: 913-914
-> "Pct Misses" should be very low (< 2% in most cases)
-> "Final Usage" is the number of cache entries being used
Get Pct Scan Pct Mod Final
Cache Requests Miss Reqs Miss Reqs Usage
------------------------- ------------ ------ ------- ----- -------- ----------
dc_awr_control 18 0.0 0 N/A 2 1
dc_files 30 0.0 0 N/A 0 6
dc_global_oids 1,269 0.0 0 N/A 0 91
dc_histogram_data 5,014 2.6 0 N/A 0 2,814
dc_histogram_defs 23,114 1.7 0 N/A 9 4,827
dc_object_grants 110 5.5 0 N/A 0 51
dc_objects 17,575 2.0 0 N/A 17 3,282
dc_profiles 53 0.0 0 N/A 0 2
dc_rollback_segments 208 0.0 0 N/A 0 22
dc_segments 5,851 2.7 0 N/A 63 1,269
dc_sequences 26 0.0 0 N/A 26 9
dc_tablespaces 79,208 0.0 0 N/A 0 8
dc_users 36,661 0.0 0 N/A 0 164
global database name 622 0.0 0 N/A 0 1
outstanding_alerts 10 0.0 0 N/A 0 5
sch_lj_oids 2 0.0 0 N/A 0 14
-------------------------------------------------------------
Library Cache Activity DB/Inst: GLDB/gldb Snaps: 913-914
-> "Pct Misses" should be very low
Get Pct Pin Pct Invali-
Namespace Requests Miss Requests Miss Reloads dations
--------------- ------------ ------ -------------- ------ ---------- --------
APP CONTEXT 490 0.0 490 0.0 0 0
BODY 327 1.5 1,946 0.4 1 0
CLUSTER 335 0.3 103 1.0 0 0
DBLINK 35 0.0 0 N/A 0 0
EDITION 44 0.0 79 0.0 0 0
INDEX 2 0.0 1 0.0 0 0
OBJECT ID 4 100.0 0 N/A 0 0
QUEUE 1,890 0.0 2,285 0.0 0 0
SCHEMA 514 0.4 0 N/A 0 0
SQL AREA 4,652 80.5 50,814 7.5 14 4
SUBSCRIPTION 1 0.0 1 0.0 0 0
TABLE/PROCEDURE 8,653 2.9 2,453,844 0.0 228 0
TRIGGER 203 0.0 222 0.9 2 0
-------------------------------------------------------------
Memory Dynamic Components DB/Inst: GLDB/gldb Snaps: 913-914
-> Min/Max sizes since instance startup
-> Oper Types/Modes: INItializing,GROw,SHRink,STAtic/IMMediate,DEFerred
-> ordered by Component
Begin Snap Current Min Max Oper Last Op
Component Size (Mb) Size (Mb) Size (Mb) Size (Mb) Count Typ/Mod
--------------- ----------- ----------- ----------- ----------- ------ -------
ASM Buffer Cach .00 .00 .00 .00 0 STA/
DEFAULT 16K buf .00 .00 .00 .00 0 STA/
DEFAULT 2K buff .00 .00 .00 .00 0 STA/
DEFAULT 32K buf .00 .00 .00 .00 0 STA/
DEFAULT 4K buff .00 .00 .00 .00 0 STA/
DEFAULT 8K buff .00 .00 .00 .00 0 STA/
DEFAULT buffer 2,288.00 2,288.00 2,288.00 2,304.00 0 SHR/IMM
KEEP buffer cac .00 .00 .00 .00 0 STA/
PGA Target 1,968.00 1,968.00 1,968.00 1,968.00 0 STA/
RECYCLE buffer .00 .00 .00 .00 0 STA/
SGA Target 2,944.00 2,944.00 2,944.00 2,944.00 0 STA/
Shared IO Pool .00 .00 .00 .00 0 STA/
java pool 16.00 16.00 16.00 16.00 0 STA/
large pool 16.00 16.00 .00 16.00 0 GRO/IMM
shared pool 592.00 592.00 576.00 592.00 0 GRO/IMM
streams pool .00 .00 .00 .00 0 STA/
-------------------------------------------------------------
Memory Resize Operations Summary DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Memory Resize Ops DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Process Memory Summary DB/Inst: GLDB/gldb Snaps: 913-914
-> B: Begin Snap E: End Snap
-> All rows below contain absolute values (i.e. not diffed over the interval)
-> Max Alloc is Maximum PGA Allocation size at snapshot time
-> Hist Max Alloc is the Historical Max Allocation for still-connected processes
-> ordered by Begin/End snapshot, Alloc (MB) desc
Hist
Avg Std Dev Max Max
Alloc Used Alloc Alloc Alloc Alloc Num Num
Category (MB) (MB) (MB) (MB) (MB) (MB) Proc Alloc
- -------- --------- --------- -------- -------- ------- ------- ------ ------
B Other 83.2 N/A 2.2 2.1 9 47 38 38
Freeable 44.1 .0 1.9 4.3 21 N/A 23 23
PL/SQL 18.2 7.6 .5 1.0 4 5 36 36
SQL 3.4 1.5 .1 .5 2 93 25 20
E Other 85.4 N/A 2.2 2.2 9 47 38 38
Freeable 42.1 .0 1.8 4.1 20 N/A 23 23
PL/SQL 18.3 7.6 .5 1.0 4 5 36 36
SQL 3.5 1.5 .1 .5 2 93 25 20
-------------------------------------------------------------
SGA Memory Summary DB/Inst: GLDB/gldb Snaps: 913-914
End Size (Bytes)
SGA regions Begin Size (Bytes) (if different)
------------------------------ ------------------- -------------------
Database Buffers 2,399,141,888
Fixed Size 2,184,632
Redo Buffers 8,364,032
Variable Size 2,717,911,624
-------------------
sum 5,127,602,176
-------------------------------------------------------------
SGA breakdown difference DB/Inst: GLDB/gldb Snaps: 913-914
-> ordered by Pool, Name
-> N/A value for Begin MB or End MB indicates the size of that Pool/Name was
insignificant, or zero in that snapshot
Pool Name Begin MB End MB % Diff
------ ------------------------------ -------------- -------------- -------
java free memory 16.0 16.0 0.00
large PX msg pool 7.5 7.5 0.00
large free memory 8.5 8.5 0.00
shared ASH buffers 8.0 8.0 0.00
shared CCUR 40.7 41.1 1.00
shared FileOpenBlock 10.5 10.5 0.00
shared KGLH0 7.1 8.0 12.21
shared KGLHD 17.7 17.5 -1.16
shared KGLS 8.5 8.3 -2.53
shared PCUR 37.3 36.1 -3.33
shared PLMCD 11.2 11.4 1.24
shared SQLA 219.5 223.4 1.76
shared db_block_hash_buckets 22.3 22.3 0.00
shared free memory 110.4 104.0 -5.78
shared row cache 7.2 7.2 0.00
buffer_cache 2,288.0 2,288.0 0.00
fixed_sga 2.1 2.1 0.00
log_buffer 8.0 8.0 0.00
-------------------------------------------------------------
Streams CPU/IO Usage DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Streams Capture Rate DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Streams Apply Rate DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queues DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Buffered Queue Subscribers DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Rule Set DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queues Rate DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Persistent Queue Subscribers DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Resource Limit Stats DB/Inst: GLDB/gldb Snap: 914
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Activity DB/Inst: GLDB/gldb Snaps: 913-914
-> Values represent averages for all samples
Avg Total Avg Active Avg Total Avg Active Avg Total Avg Active
Connections Connections Shared Srvrs Shared Srvrs Dispatchers Dispatchers
------------ ------------ ------------ ------------ ------------ ------------
0 0 1 0 1 0
-------------------------------------------------------------
Shared Servers Rates DB/Inst: GLDB/gldb Snaps: 913-914
Common Disp Common Disp Server
Queue Queue Server Server Queue Queue Total Server
Per Sec Per Sec Msgs/Sec KB/Sec Total Total Msgs Total(KB)
-------- -------- -------- --------- ---------- ---------- ---------- ----------
0 0 0 0.0 0 0 0 0
-------------------------------------------------------------
Shared Servers Utilization DB/Inst: GLDB/gldb Snaps: 913-914
-> Statistics are combined for all servers
-> Incoming and Outgoing Net % are included in %Busy
Total Server Incoming Outgoing
Time (s) %Busy %Idle Net % Net %
-------------- -------- -------- --------- ---------
843 0.0 100.0 0.0 0.0
-------------------------------------------------------------
Shared Servers Common Queue DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
Shared Servers Dispatchers DB/Inst: GLDB/gldb Snaps: 913-914
-> Ordered by %Busy, descending
-> Total Queued, Total Queue Wait and Avg Queue Wait are for dispatcher queue
-> Name suffixes:
"(N)" - dispatcher started between begin and end snapshots
"(R)" - dispatcher re-started between begin and end snapshots
Avg Total Disp Total Total Queue Avg Queue
Name Conns Time (s) %Busy %Idle Queued Wait (s) Wait (ms)
------- --------- ---------- -------- -------- ---------- ----------- ----------
D000 0.0 843 0.0 100.0 0 0
-------------------------------------------------------------
init.ora Parameters DB/Inst: GLDB/gldb Snaps: 913-914
-> if IP/Public/Source at End snap is different a '*' is displayed
End value
Parameter Name Begin value (if different)
----------------------------- --------------------------------- --------------
audit_file_dest D:\ORACLE\ADMIN\GLDB\ADUMP
audit_trail DB
compatible 11.2.0.0.0
control_files D:\ORACLE\FLASH_RECOVERY_AREA\GLD
db_block_size 8192
db_domain
db_name gldb
db_recovery_file_dest D:\Oracle\flash_recovery_area
db_recovery_file_dest_size 4102029312
diagnostic_dest D:\ORACLE
dispatchers (PROTOCOL=TCP) (SERVICE=gldbXDB)
memory_target 5150605312
open_cursors 300
processes 150
remote_login_passwordfile EXCLUSIVE
undo_tablespace UNDOTBS1
-------------------------------------------------------------
Dynamic Remastering Stats DB/Inst: GLDB/gldb Snaps: 913-914
No data exists for this section of the report.
-------------------------------------------------------------
End of Report
AWRSQRPT 913-914 (DIRECT PATH INSERT)
Toggle Spoiler
WORKLOAD REPOSITORY SQL Report
Snapshot Period Summary
DB Name DB Id Instance Inst Num Startup Time Release RAC
------------ ----------- ------------ -------- --------------- ----------- ---
GLDB 2907699466 gldb 1 16-Oct-12 10:08 11.2.0.1.0 NO
Snap Id Snap Time Sessions Curs/Sess
--------- ------------------- -------- ---------
Begin Snap: 913 17-Oct-12 17:00:58 36 5.4
End Snap: 914 17-Oct-12 17:15:01 36 5.3
Elapsed: 14.05 (mins)
DB Time: 3.02 (mins)
SQL Summary DB/Inst: GLDB/gldb Snaps: 913-914
Elapsed
SQL Id Time (ms)
------------- ----------
8g3cvd61s46p5 154,304
Module: OdbcDbTrace64.exe
INSERT /*+ APPEND_VALUES */ INTO GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSumID, probe
Name, callingNumber, calledNumber, callID, startTime, duration, callSuccess, fai
lureCause, postDialDelay, sessionDisconnectDelay, rtporiginationIPAddress, rtpde
stinationIPAddress, siporiginationIPAddress, sipdestinationIPAddress, ErrorCode,
-------------------------------------------------------------
SQL ID: 8g3cvd61s46p5 DB/Inst: GLDB/gldb Snaps: 913-914
-> 1st Capture and Last Capture Snap IDs
refer to Snapshot IDs witin the snapshot range
-> INSERT /*+ APPEND_VALUES */ INTO GLT_PROT_TRAFFIC_SUM_VOIP ( trafficSu...
Plan Hash Total Elapsed 1st Capture Last Capture
# Value Time(ms) Executions Snap ID Snap ID
--- ---------------- ---------------- ------------- ------------- --------------
1 1170315194 154,304 2,4461 914 914
-------------------------------------------------------------
Plan 1(PHV: 1170315194)
-----------------------
Plan Statistics DB/Inst: GLDB/gldb Snaps: 913-914
-> % Total DB Time is the Elapsed Time of the SQL statement divided
into the Total Database Time multiplied by 100
Stat Name Statement Per Execution % Snap
---------------------------------------- ---------- -------------- -------
Elapsed Time (ms) 154,304 6.3 85.2
CPU Time (ms) 146,251 6.0 93.7
Executions 24,461 N/A N/A
Buffer Gets 1.4062E+07 574.9 97.7
Disk Reads 0 0.0 0.0
Parse Calls 0 0.0 0.0
Rows 2,441,000 99.8 N/A
User I/O Wait Time (ms) 11,285 N/A N/A
Cluster Wait Time (ms) 0 N/A N/A
Application Wait Time (ms) 0 N/A N/A
Concurrency Wait Time (ms) 0 N/A N/A
Invalidations 0 N/A N/A
Version Count 1 N/A N/A
Sharable Mem(KB) 99 N/A N/A
-------------------------------------------------------------
Execution Plan
---------------------------------------------------------------
| Id | Operation | Name | Cost |
---------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 |
| 1 | LOAD AS SELECT | | |
| 2 | SEQUENCE | GLS_PROT_TRAFFIC_SUM_VOIP | |
| 3 | BULK BINDS GET | | |
---------------------------------------------------------------
Note
-----
- cpu costing is off (consider enabling it)
Full SQL Text
SQL ID SQL Text
------------ -----------------------------------------------------------------
8g3cvd61s46p INSERT /*+ APPEND_VALUES */ INTO GLT_PROT_TRAFFIC_SUM_VOIP ( traf
fficSumID, probeName, callingNumber, calledNumber, callID, startT
ime, duration, callSuccess, failureCause, postDialDelay, sessionD
isconnectDelay, rtporiginationIPAddress, rtpdestinationIPAddress,
siporiginationIPAddress, sipdestinationIPAddress, ErrorCode, Pro
tocolTYpe, packetCount1, payload1, totalPacketCount1, missingPack
etCount1, missingPacketPercentage1, DuplicatePacketCount1, Duplic
atePacketPercentage1, reorderedPacketCount1, reorderedPacketPerce
ntage1, conversationalMos1, conversationalR1, listeningMos1, list
eningR1, packetsDiscarded1, packetsDiscardedPercentage1, averageG
ap1, averageDelay1, averageJitter1, averageInterArrivalJitter1, C
umulativePacketLoss1, minGap1, maxGap1, minDelay1, maxDelay1, min
Jitter1, maxJitter1, minRtd1, maxRtd1, averageRtd1, packetCount2,
payload2, totalPacketCount2, missingPacketCount2, missingPacketP
ercentage2, DuplicatePacketCount2, DuplicatePacketPercentage2, re
orderedPacketCount2, reorderedPacketPercentage2, conversationalMo
s2, conversationalR2, listeningMos2, listeningR2, packetsDiscarde
d2, packetsDiscardedPercentage2, averageGap2, averageDelay2, aver
ageJitter2, averageInterArrivalJitter2, CumulativePacketLoss2, mi
nGap2, maxGap2, minDelay2, maxDelay2, minJitter2, maxJitter2, min
Rtd2, maxRtd2, averageRtd2, filename ) VALUES (GLS_PROT_TRAFFIC_S
UM_VOIP.NEXTVAL, :1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :1
2, :13, :14, :15, :16, :17, :18, :19, :20, :21, :22, :23, :24, :2
5, :26, :27, :28, :29, :30, :31, :32, :33, :34, :35, :36, :37, :3
8, :39, :40, :41, :42, :43, :44, :45, :46, :47, :48, :49, :50, :5
1, :52, :53, :54, :55, :56, :57, :58, :59, :60, :61, :62, :63, :6
4, :65, :66, :67, :68, :69, :70, :71, :72, :73, :74, :75 )
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #568957 is a reply to message #568943] |
Thu, 18 October 2012 01:44 |
John Watson
Messages: 8960 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
An excellent result (though you would need to think about concurrency issues with direct load, partitioning might be necessary). At the statement level the buffer gets per execution is halved, and elapsed time drops close to CPU time. At the instance level, the DB Time required to execute the same workload has come down to 181s from originally 324s. And CPU time is up to 86.2% of the DB Time. I very much doubt that this can be tuned further (unless you were to drop some indexes). To put it in practical terms, you could run this application on a single core no problem. So you must be correct to say that the bottleneck is further back. I certainly can't advise on ODBC or writing OCI code, but there are people here who can. Separate topic!
Thanks for bearing with me, even though the DB was probably never a problem. It was an enjoyable exercise.
|
|
|
Re: NOLOGGING in Oracle 11gr2 [message #569004 is a reply to message #568957] |
Thu, 18 October 2012 09:18 |
|
segan1415
Messages: 16 Registered: October 2012
|
Junior Member |
|
|
Yes I will explore ODBC and OCI in a new topic. Thanks very much for the help John and everyone else who commented, this was quite productive for me and I appreciate it very much.
|
|
|
Goto Forum:
Current Time: Thu Nov 21 16:51:49 CST 2024
|