SQL Id | SQL Text |
062savj8zgzut | UPDATE sys.wri$_adv_parameters SET datatype = :1, value = :2, flags = :3, description = :4 WHERE task_id = :5 AND name = :6 |
0v6s91manuhz8 | /* OracleOEM */
SELECT blocking_sid, num_blocked
FROM ( SELECT blocking_sid, SUM(num_blocked) num_blocked
FROM ( SELECT l.id1, l.id2,
MAX(DECODE(l.block, 1, i.instance_name||'-'||l.sid,
2, i.instance_name||'-'||l.sid, 0 )) blocking_sid,
SUM(DECODE(l.request, 0, 0, 1 )) num_blocked
FROM gv$lock l, gv$instance i
WHERE ( l.block!= 0 OR l.request > 0 ) AND
l.inst_id = i.inst_id
GROUP BY l.id1, l.id2)
GROUP BY blocking_sid
ORDER BY num_blocked DESC)
WHERE num_blocked != 0
AND blocking_sid != '0'
|
14wnf35dahb7v | SELECT A.ID, A.TYPE FROM SYS.WRI$_ADV_DEFINITIONS A WHERE A.NAME = :B1 |
1cq3qr774cu45 |
insert into WRH$_IOSTAT_FILETYPE (snap_id, dbid, instance_number, filetype_id, small_read_megabytes, small_write_megabytes, large_read_megabytes, large_write_megabytes, small_read_reqs, small_write_reqs, small_sync_read_reqs, large_read_reqs, large_write_reqs, small_read_servicetime, small_write_servicetime, small_sync_read_latency, large_read_servicetime, large_write_servicetime, retries_on_error) (select :snap_id, :dbid, :instance_number, filetype_id, sum(small_read_megabytes) small_read_megabytes, sum(small_write_megabytes) small_write_megabytes, sum(large_read_megabytes) large_read_megabytes, sum(large_write_megabytes) large_write_megabytes, sum(small_read_reqs) small_read_reqs, sum(small_write_reqs) small_write_reqs, sum(small_sync_read_reqs) small_sync_read_reqs, sum(large_read_reqs) large_read_reqs, sum(large_write_reqs) large_write_reqs, sum(small_read_servicetime) small_read_servicetime, sum(small_write_servicetime) small_write_servicetime, sum(small_sync_read_latency) small_sync_read_latency, sum(large_read_servicetime) large_read_servicetime, sum(large_write_servicetime) large_write_servicetime, sum(retries_on_error) retries_on_error from v$iostat_file group by filetype_id)
|
1jqqpfkr0m3yk | SELECT COUNT(*) FROM SYS.WRI$_ADV_PARAMETERS A WHERE A.TASK_ID = :B2 AND A.NAME = :B1 |
1mjhyad05m8pf | SELECT value
FROM gv$osstat
WHERE inst_id = :p1 and stat_name='NUM_CPU_CORES'
|
1uk5m5qbzj1vt | BEGIN dbms_workload_repository.create_snapshot; END;
|
350myuyx0t1d6 | insert into wrh$_tablespace_stat (snap_id, dbid, instance_number, ts#, tsname, contents, status, segment_space_management, extent_management, is_backup) select :snap_id, :dbid, :instance_number, ts.ts#, ts.name as tsname, decode(ts.contents$, 0, (decode(bitand(ts.flags, 16), 16, 'UNDO', 'PERMANENT')), 1, 'TEMPORARY') as contents, decode(ts.online$, 1, 'ONLINE', 2, 'OFFLINE', 4, 'READ ONLY', 'UNDEFINED') as status, decode(bitand(ts.flags, 32), 32, 'AUTO', 'MANUAL') as segspace_mgmt, decode(ts.bitmapped, 0, 'DICTIONARY', 'LOCAL') as extent_management, (case when b.active_count > 0 then 'TRUE' else 'FALSE' end) as is_backup from sys.ts$ ts, (select dfile.ts#, sum( case when bkup.status = 'ACTIVE' then 1 else 0 end ) as active_count from v$backup bkup, file$ dfile where bkup.file# = dfile.file# and dfile.status$ = 2 group by dfile.ts#) b where ts.online$ != 3 and bitand(ts.flags, 2048) != 2048 and ts.ts# = b.ts# |
4tg8mr2bvy6gr | select smontabv.cnt, smontab.time_mp, smontab.scn, smontab.num_mappings, smontab.tim_scn_map from smon_scn_time smontab, (select max(scn) scnmax, count(*)+sum(NVL2(TIM_SCN_MAP, NUM_MAPPINGS, 0)) cnt from smon_scn_time) smontabv where smontab.scn = smontabv.scnmax |
5ax5xu96u2ztd | insert into WRH$_EVENT_HISTOGRAM (snap_id, dbid, instance_number, event_id, wait_time_milli, wait_count) select :snap_id, :dbid, :instance_number, d.ksledhash, s.kslsesmaxdur, s.kslsesval from x$kslseshist s, x$ksled d where s.kslsesenum = d.indx and s.kslsesval > 0 order by d.ksledhash, s.kslsesmaxdur |
5h7w8ykwtb2xt | INSERT INTO SYS.WRI$_ADV_PARAMETERS (TASK_ID, NAME, DATATYPE, VALUE, FLAGS, DESCRIPTION) VALUES (:B6 , :B5 , :B4 , :B3 , :B2 , :B1 ) |
5yv0nj5hwfz5d | select job, nvl2(last_date, 1, 0) from sys.job$ where (((:1 <= next_date) and (next_date <= :2)) or ((last_date is null) and (next_date < :3))) and (field1 = :4 or (field1 = 0 and 'Y' = :5)) and (this_date is null) order by next_date, job |
61tn3mam0vq0b |
SELECT source, (case when time_secs < 1 then 1 else time_secs end) as time_secs, operation FROM ( SELECT 1 as source, trunc((sysdate - cast(ll.log_date as date)) * 86400) as time_secs, decode(ll.operation, 'OPEN', 0 , 1 ) as operation, ll.log_id as log_id FROM DBA_SCHEDULER_WINDOW_LOG ll , ( SELECT max(l.log_id) as max_log_id FROM DBA_SCHEDULER_WINDOW_LOG l , DBA_SCHEDULER_WINGROUP_MEMBERS m WHERE l.window_name = m.window_name AND m.window_group_name = 'MAINTENANCE_WINDOW_GROUP' AND l.operation in ('OPEN', 'CLOSE') AND CAST(l.log_date AS DATE) < ( SELECT cast(min(end_interval_time) as date) as btime FROM WRM$_SNAPSHOT bsi WHERE bsi.dbid = :dbid AND bsi.snap_id = :bid ) ) max_log WHERE ll.log_id = max_log.max_log_id UNION ALL SELECT 2 as source, trunc((sysdate - cast(l.log_date as date)) * 86400) as time_secs, decode(l.operation, 'OPEN', 0 , 1 ) as operation, l.log_id as log_id FROM DBA_SCHEDULER_WINDOW_LOG l , DBA_SCHEDULER_WINGROUP_MEMB
ERS m WHERE l.window_name = m.window_name AND m.window_group_name = 'MAINTENANCE_WINDOW_GROUP' AND l.operation in ('OPEN', 'CLOSE') AND CAST(l.log_date AS DATE) <= ( SELECT cast(max(end_interval_time) as date) as etime FROM WRM$_SNAPSHOT esi WHERE esi.dbid = :dbid AND esi.snap_id = :eid ) AND CAST(l.log_date AS DATE) >= ( SELECT cast(min(end_interval_time) as date) as btime FROM WRM$_SNAPSHOT bsi WHERE bsi.dbid = :dbid AND bsi.snap_id = :bid ) UNION ALL SELECT 0 as source, trunc((sysdate - et.etime) * 86400) as time_secs, 3 as operation, 0 as log_id FROM ( SELECT cast(max(end_interval_time) as date) as etime FROM WRM$_SNAPSHOT esi WHERE esi.dbid = :dbid AND esi.snap_id = :eid ) et UNION ALL SELECT 0 as source, trunc((sysdate - bt.btime) * 86400) as time_secs, 2 as operation, 0 as log_id FROM ( SELECT cast(min(end_interval_time) as date) as btime FROM WRM$_SNAPSHOT bsi WHERE bsi.dbid = :dbid AND bsi.snap_id = :bid ) bt ) WHERE time_secs >= 0 ORDER BY source ASC, time_secs DESC, log_id ASC
|
6ajkhukk78nsr | begin prvt_hdm.auto_execute( :dbid, :inst_num , :end_snap_id ); end; |
6c06mfv01xt2h | update wrh$_seg_stat_obj sso set (index_type, base_obj#, base_object_name, base_object_owner) = (select decode(ind.type#, 1, 'NORMAL'|| decode(bitand(ind.property, 4), 0, '', 4, '/REV'), 2, 'BITMAP', 3, 'CLUSTER', 4, 'IOT - TOP', 5, 'IOT - NESTED', 6, 'SECONDARY', 7, 'ANSI', 8, 'LOB', 9, 'DOMAIN') as index_type, base_obj.obj# as base_obj#, base_obj.name as base_object_name, base_owner.name as base_object_owner from sys.ind$ ind, sys.user$ base_owner, sys.obj$ base_obj where ind.obj# = sso.obj# and ind.dataobj# = sso.dataobj# and ind.bo# = base_obj.obj# and base_obj.owner# = base_owner.user#) where sso.dbid = :dbid and (obj#, dataobj#) in (select objn_kewrseg, objd_kewrseg from x$kewrtsegstat ss1 where objtype_kewrseg = 1) and sso.snap_id = :lah_snap_id and sso.object_type = 'INDEX' |
6wm3n4d7bnddg |
SELECT source, (case when time_secs < 1 then 1 else time_secs end) as time_secs, operation FROM ( SELECT 1 as source, trunc((sysdate - cast(ll.log_date as date)) * 86400) as time_secs, decode(ll.operation, 'OPEN', 0 , 1 ) as operation, ll.log_id as log_id FROM DBA_SCHEDULER_WINDOW_LOG ll , ( SELECT max(l.log_id) as max_log_id FROM DBA_SCHEDULER_WINDOW_LOG l , DBA_SCHEDULER_WINGROUP_MEMBERS m WHERE l.window_name = m.window_name AND m.window_group_name = 'MAINTENANCE_WINDOW_GROUP' AND l.operation in ('OPEN', 'CLOSE') AND CAST(l.log_date AS DATE) < ( SELECT cast(min(end_interval_time) as date) as btime FROM WRM$_SNAPSHOT bsi WHERE bsi.dbid = :dbid AND bsi.instance_number = :inst AND bsi.snap_id = :bid ) ) max_log WHERE ll.log_id = max_log.max_log_id UNION ALL SELECT 2 as source, trunc((sysdate - cast(l.log_date as date)) * 86400) as time_secs, decode(l.operation, 'OPEN', 0 , 1 ) as operation, l.log_id as log_id FROM DBA_SCHEDULER_WINDOW_LOG l ,
DBA_SCHEDULER_WINGROUP_MEMBERS m WHERE l.window_name = m.window_name AND m.window_group_name = 'MAINTENANCE_WINDOW_GROUP' AND l.operation in ('OPEN', 'CLOSE') AND CAST(l.log_date AS DATE) <= ( SELECT cast(max(end_interval_time) as date) as etime FROM WRM$_SNAPSHOT esi WHERE esi.dbid = :dbid AND esi.instance_number = :inst AND esi.snap_id = :eid ) AND CAST(l.log_date AS DATE) >= ( SELECT cast(min(end_interval_time) as date) as btime FROM WRM$_SNAPSHOT bsi WHERE bsi.dbid = :dbid AND bsi.instance_number = :inst AND bsi.snap_id = :bid ) UNION ALL SELECT 0 as source, trunc((sysdate - et.etime) * 86400) as time_secs, 3 as operation, 0 as log_id FROM ( SELECT cast(max(end_interval_time) as date) as etime FROM WRM$_SNAPSHOT esi WHERE esi.dbid = :dbid AND esi.instance_number = :inst AND esi.snap_id = :eid ) et UNION ALL SELECT 0 as source, trunc((sysdate - bt.btime) * 86400) as time_secs, 2 as operation, 0 as log_id FROM ( SELECT cast(min(end_interval_time) as date) as btime FROM WRM$_SNAPSHOT bsi WHERE bsi.dbid = :dbid AND bsi.instance_number = :inst AND bsi.snap_id = :bid ) bt ) WHERE time_secs >= 0 ORDER B
Y source ASC, time_secs DESC, log_id ASC |
7frqszzdu8sgg | select DECODE(UPPER(d.OPEN_MODE), 'READ WRITE', 'R', 'N') , DECODE(UPPER(i.STATUS), 'OPEN', 'O', 'N') into :b0, :b1 from v$database d , gv$instance i where i.INSTANCE_NAME=:b2 |
7g732rx16j8jc | insert into WRH$_SERVICE_STAT (snap_id, dbid, instance_number, service_name_hash, stat_id, value) select :snap_id, :dbid, :instance_number, stat.service_name_hash, stat.stat_id, stat.value from v$active_services asvc, v$service_stats stat where asvc.name_hash = stat.service_name_hash |
7qjhf5dzmazsr | SELECT snap_id , OBJ#, DATAOBJ# FROM (SELECT /*+ ordered use_nl(t2) index(t2) */ t2.snap_id , t1.OBJN_KEWRSEG OBJ#, t1.OBJD_KEWRSEG DATAOBJ# FROM X$KEWRTSEGSTAT t1, WRH$_SEG_STAT_OBJ t2 WHERE t2.dbid(+) = :dbid AND t2.OBJ#(+) = t1.OBJN_KEWRSEG AND t2.DATAOBJ#(+) = t1.OBJD_KEWRSEG) WHERE nvl(snap_id, 0) < :snap_id |
7vgmvmy8vvb9s | insert into wrh$_tempstatxs (snap_id, dbid, instance_number, file#, creation_change#, phyrds, phywrts, singleblkrds, readtim, writetim, singleblkrdtim, phyblkrd, phyblkwrt, wait_count, time) select :snap_id, :dbid, :instance_number, tf.tfnum, to_number(tf.tfcrc_scn) creation_change#, ts.kcftiopyr, ts.kcftiopyw, ts.kcftiosbr, ts.kcftioprt, ts.kcftiopwt, ts.kcftiosbt, ts.kcftiopbr, ts.kcftiopbw, fw.count, fw.time from x$kcftio ts, x$kcctf tf, x$kcbfwait fw where tf.tfdup != 0 and tf.tfnum = ts.kcftiofno and fw.indx+1 = (ts.kcftiofno + :db_files) |
87gaftwrm2h68 | select o.owner#, o.name, o.namespace, o.remoteowner, o.linkname, o.subname from obj$ o where o.obj#=:1 |
8j37z6cqf3s9h | SELECT value
FROM gv$osstat
WHERE inst_id = :p1 and stat_name='NUM_CPUS'
|
8x0funf899dka | INSERT INTO wri$_adv_addm_inst ( TASK_ID, INSTANCE_NUMBER, INSTANCE_NAME, HOST_NAME, STATUS, DATABASE_TIME, ACTIVE_SESSIONS, PERC_ACTIVE_SESS, METER_LEVEL, LOCAL_TASK_ID) VALUES ( :tid, :inst_num, :inst_name, :host_name, :st, NULL, NULL, NULL, NULL, NULL) |
8z3tqxkjw4sg4 | select px.SID "SID",
p.PID,
p.SPID "SPID",
px.INST_ID "Inst",
px.SERVER_GROUP "Group",
px.SERVER_SET "Set",
px.DEGREE "Degree",
px.REQ_DEGREE "Req Degree",
w.event "Wait Event", s.sql_id
from GV$SESSION s, GV$PX_SESSION px, GV$PROCESS p, GV$SESSION_WAIT w
where s.sid (+) = px.sid and
s.inst_id (+) = px.inst_id and
s.sid = w.sid (+) and
s.inst_id = w.inst_id (+) and
s.paddr = p.addr (+) and
s.inst_id = p.inst_id (+)
ORDER BY decode(px.QCINST_ID, NULL, px.INST_ID, px.QCINST_ID),
px.QCSID,
decode(px.SERVER_GROUP, NULL, 0, px.SERVER_GROUP),
px.SERVER_SET,
px.INST_ID |
aqb79nn78dgyy | SELECT inst_id, service_name,
TO_CHAR(CAST(begin_time AS TIMESTAMP) AT TIME ZONE 'GMT', 'YYYY-MM-DD HH24:MI:SS TZD') time,
TO_CHAR(CAST(end_time AS TIMESTAMP) AT TIME ZONE 'GMT', 'YYYY-MM-DD HH24:MI:SS TZD') time,
intsize_csec,
group_id, cpupercall, dbtimepercall, callspersec, dbtimepersec
FROM gv$servicemetric_history
WHERE service_name = :p1 AND end_time >= SYSDATE - 5/(60*24) AND group_id = 6
ORDER BY inst_id asc, end_time DESC
|
arx2rgss6k33m | SELECT s.inst_id, s.name, i.instance_name
FROM gv$active_services s, gv$instance i
WHERE s.name = :p1 AND s.inst_id = i.inst_id
|
bunssq950snhf | insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbid, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS from v$sga_target_advice |
crqv3q3x9rtgt | select /* two */
/*+ parallel (t1, 16) parallel (t2, 16) */
min (t1.bsns_unit_key + t2.bsns_unit_key),
max (t1.day_key + t2.day_key),
avg (t1.day_key + t2.day_key),
max (t1.bsns_unit_typ_cd),
max (t2.curr_ind),
max (t1.load_dt)
from d31.dwb_rtl_trx t1,
d31.dwb_rtl_trx t2
where t1.trx_nbr = t2.trx_nbr |
dtj94u9jj2qj4 | insert into wrh$_tablespace_space_usage (snap_id, dbid, tablespace_id, tablespace_usedsize, tablespace_size, tablespace_maxsize, rtime) select :snap_id, :dbid, KTTEFINFOTSN, sum(KTTEFINFOUSP), sum(KTTEFINFOSIZE), sum(KTTEFINFOMSIZE), to_char(sysdate, 'MM/DD/YYYY HH24:MI:SS') from X$KTTEFINFO group by KTTEFINFOTSN |
fgqt3gak6vv8x | SELECT instance_name
FROM gv$instance
WHERE inst_id = :p1
|
fnz13xnvkybtj | INSERT INTO sys.wri$_adv_findings (id, task_id, type, parent, obj_id, impact_msg_id, impact_val, msg_id, more_info_id, name_msg_code, flags, exec_name) VALUES (:1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :12) |
fstp7x8vrq235 | UPDATE SYS.WRI$_ADV_TASKS SET MTIME = SYSDATE, STATUS = NVL(:B4 , STATUS), CLEANUP = NVL(:B3 , CLEANUP), VERSION = NVL(:B2 , VERSION) WHERE ID = :B1 |
g4vrdfn14tp29 | SELECT PROPERTY FROM SYS.WRI$_ADV_TASKS WHERE ID = :B1 |
gpb7chr15zyrs | SELECT PROPERTY FROM SYS.WRI$_ADV_DEFINITIONS WHERE ID = :B1 |
grzx1ww6wf4q2 | SELECT A.FLAGS FROM SYS.WRI$_ADV_PARAMETERS A WHERE A.TASK_ID = :B2 AND A.NAME = :B1 |
Statistic | Total | per Second | per Trans |
Batched IO (bound) vector count | 2 | 0.02 | 0.05 |
Batched IO (full) vector count | 0 | 0.00 | 0.00 |
Batched IO block miss count | 12 | 0.11 | 0.28 |
Batched IO buffer defrag count | 1 | 0.01 | 0.02 |
Batched IO double miss count | 2 | 0.02 | 0.05 |
Batched IO same unit count | 7 | 0.07 | 0.16 |
Batched IO single block count | 1 | 0.01 | 0.02 |
Batched IO slow jump count | 0 | 0.00 | 0.00 |
Batched IO vector block count | 4 | 0.04 | 0.09 |
Batched IO vector read count | 1 | 0.01 | 0.02 |
Block Cleanout Optim referenced | 77 | 0.73 | 1.79 |
CCursor + sql area evicted | 0 | 0.00 | 0.00 |
CPU used by this session | 58,101 | 551.74 | 1,351.19 |
CPU used when call started | 175,436 | 1,665.98 | 4,079.91 |
CR blocks created | 2 | 0.02 | 0.05 |
Cached Commit SCN referenced | 0 | 0.00 | 0.00 |
Commit SCN cached | 42 | 0.40 | 0.98 |
DB time | 95,535 | 907.22 | 2,221.74 |
DBWR checkpoint buffers written | 136 | 1.29 | 3.16 |
DBWR checkpoints | 1 | 0.01 | 0.02 |
DBWR fusion writes | 6 | 0.06 | 0.14 |
DBWR object drop buffers written | 0 | 0.00 | 0.00 |
DBWR parallel query checkpoint buffers written | 0 | 0.00 | 0.00 |
DBWR transaction table writes | 54 | 0.51 | 1.26 |
DBWR undo block writes | 84 | 0.80 | 1.95 |
DFO trees parallelized | 11 | 0.10 | 0.26 |
DML statements parallelized | 0 | 0.00 | 0.00 |
HSC Heap Segment Block Changes | 332 | 3.15 | 7.72 |
HSC IDL Compressed Blocks | 0 | 0.00 | 0.00 |
Heap Segment Array Inserts | 107 | 1.02 | 2.49 |
Heap Segment Array Updates | 2 | 0.02 | 0.05 |
Misses for writing mapping | 0 | 0.00 | 0.00 |
PX local messages recv'd | 184 | 1.75 | 4.28 |
PX local messages sent | 184 | 1.75 | 4.28 |
PX remote messages recv'd | 568 | 5.39 | 13.21 |
PX remote messages sent | 648 | 6.15 | 15.07 |
Parallel operations downgraded to serial | 0 | 0.00 | 0.00 |
Parallel operations not downgraded | 11 | 0.10 | 0.26 |
RowCR - row contention | 0 | 0.00 | 0.00 |
RowCR attempts | 1 | 0.01 | 0.02 |
RowCR hits | 1 | 0.01 | 0.02 |
SMON posted for undo segment shrink | 0 | 0.00 | 0.00 |
SQL*Net roundtrips to/from client | 60 | 0.57 | 1.40 |
TBS Extension: files extended | 0 | 0.00 | 0.00 |
TBS Extension: tasks created | 0 | 0.00 | 0.00 |
TBS Extension: tasks executed | 0 | 0.00 | 0.00 |
active txn count during cleanout | 61 | 0.58 | 1.42 |
application wait time | 2 | 0.02 | 0.05 |
background timeouts | 649 | 6.16 | 15.09 |
branch node splits | 0 | 0.00 | 0.00 |
buffer is not pinned count | 2,839 | 26.96 | 66.02 |
buffer is pinned count | 10,761 | 102.19 | 250.26 |
bytes received via SQL*Net from client | 66,704 | 633.44 | 1,551.26 |
bytes sent via SQL*Net to client | 20,663 | 196.22 | 480.53 |
calls to get snapshot scn: kcmgss | 14,251 | 135.33 | 331.42 |
calls to kcmgas | 663 | 6.30 | 15.42 |
calls to kcmgcs | 91 | 0.86 | 2.12 |
cell blocks helped by minscn optimization | 2,865,613 | 27,212.51 | 66,642.16 |
cell blocks processed by cache layer | 2,865,613 | 27,212.51 | 66,642.16 |
cell blocks processed by data layer | 2,865,613 | 27,212.51 | 66,642.16 |
cell blocks processed by txn layer | 2,865,613 | 27,212.51 | 66,642.16 |
cell physical IO bytes eligible for predicate offload | 23,421,927,424 | 222,419,898.62 | 544,695,986.60 |
cell physical IO bytes saved during optimized file creation | 0 | 0.00 | 0.00 |
cell physical IO interconnect bytes | 19,473,986,552 | 184,929,362.82 | 452,883,408.19 |
cell scans | 1,488 | 14.13 | 34.60 |
change write time | 2 | 0.02 | 0.05 |
cleanout - number of ktugct calls | 69 | 0.66 | 1.60 |
cleanouts and rollbacks - consistent read gets | 7 | 0.07 | 0.16 |
cleanouts only - consistent read gets | 6 | 0.06 | 0.14 |
cluster key scan block gets | 38 | 0.36 | 0.88 |
cluster key scans | 38 | 0.36 | 0.88 |
cluster wait time | 12 | 0.11 | 0.28 |
commit batch/immediate performed | 0 | 0.00 | 0.00 |
commit batch/immediate requested | 0 | 0.00 | 0.00 |
commit cleanout failures: block lost | 25 | 0.24 | 0.58 |
commit cleanout failures: callback failure | 4 | 0.04 | 0.09 |
commit cleanout failures: cannot pin | 0 | 0.00 | 0.00 |
commit cleanouts | 361 | 3.43 | 8.40 |
commit cleanouts successfully completed | 332 | 3.15 | 7.72 |
commit immediate performed | 0 | 0.00 | 0.00 |
commit immediate requested | 0 | 0.00 | 0.00 |
commit txn count during cleanout | 126 | 1.20 | 2.93 |
concurrency wait time | 83 | 0.79 | 1.93 |
consistent changes | 29 | 0.28 | 0.67 |
consistent gets | 2,886,129 | 27,407.33 | 67,119.28 |
consistent gets - examination | 1,604 | 15.23 | 37.30 |
consistent gets direct | 2,859,122 | 27,150.87 | 66,491.21 |
consistent gets from cache | 27,007 | 256.46 | 628.07 |
consistent gets from cache (fastpath) | 25,133 | 238.67 | 584.49 |
current blocks converted for CR | 0 | 0.00 | 0.00 |
cursor authentications | 62 | 0.59 | 1.44 |
data blocks consistent reads - undo records applied | 7 | 0.07 | 0.16 |
db block changes | 2,443 | 23.20 | 56.81 |
db block gets | 2,622 | 24.90 | 60.98 |
db block gets direct | 0 | 0.00 | 0.00 |
db block gets from cache | 2,622 | 24.90 | 60.98 |
db block gets from cache (fastpath) | 686 | 6.51 | 15.95 |
deferred (CURRENT) block cleanout applications | 165 | 1.57 | 3.84 |
dirty buffers inspected | 0 | 0.00 | 0.00 |
enqueue conversions | 223 | 2.12 | 5.19 |
enqueue releases | 5,323 | 50.55 | 123.79 |
enqueue requests | 5,381 | 51.10 | 125.14 |
enqueue timeouts | 58 | 0.55 | 1.35 |
enqueue waits | 427 | 4.05 | 9.93 |
exchange deadlocks | 0 | 0.00 | 0.00 |
execute count | 789 | 7.49 | 18.35 |
failed probes on index block reclamation | 0 | 0.00 | 0.00 |
free buffer inspected | 0 | 0.00 | 0.00 |
free buffer requested | 1,694 | 16.09 | 39.40 |
gc CPU used by this session | 28 | 0.27 | 0.65 |
gc blocks lost | 0 | 0.00 | 0.00 |
gc cr block build time | 0 | 0.00 | 0.00 |
gc cr block flush time | 0 | 0.00 | 0.00 |
gc cr block receive time | 5 | 0.05 | 0.12 |
gc cr block send time | 2 | 0.02 | 0.05 |
gc cr blocks received | 229 | 2.17 | 5.33 |
gc cr blocks served | 218 | 2.07 | 5.07 |
gc current block flush time | 0 | 0.00 | 0.00 |
gc current block pin time | 0 | 0.00 | 0.00 |
gc current block receive time | 11 | 0.10 | 0.26 |
gc current block send time | 0 | 0.00 | 0.00 |
gc current blocks received | 363 | 3.45 | 8.44 |
gc current blocks served | 363 | 3.45 | 8.44 |
gc local grants | 55 | 0.52 | 1.28 |
gc reader bypass grants | 18 | 0.17 | 0.42 |
gc remote grants | 126 | 1.20 | 2.93 |
gcs messages sent | 3,902 | 37.05 | 90.74 |
ges messages sent | 4,769 | 45.29 | 110.91 |
global enqueue get time | 345 | 3.28 | 8.02 |
global enqueue gets async | 159 | 1.51 | 3.70 |
global enqueue gets sync | 5,730 | 54.41 | 133.26 |
global enqueue releases | 5,062 | 48.07 | 117.72 |
heap block compress | 9 | 0.09 | 0.21 |
hot buffers moved to head of LRU | 0 | 0.00 | 0.00 |
immediate (CR) block cleanout applications | 13 | 0.12 | 0.30 |
immediate (CURRENT) block cleanout applications | 115 | 1.09 | 2.67 |
index crx upgrade (positioned) | 22 | 0.21 | 0.51 |
index crx upgrade (prefetch) | 0 | 0.00 | 0.00 |
index fast full scans (full) | 0 | 0.00 | 0.00 |
index fetch by key | 681 | 6.47 | 15.84 |
index scans kdiixs1 | 4,520 | 42.92 | 105.12 |
leaf node 90-10 splits | 19 | 0.18 | 0.44 |
leaf node splits | 27 | 0.26 | 0.63 |
lob reads | 0 | 0.00 | 0.00 |
lob writes | 2 | 0.02 | 0.05 |
lob writes unaligned | 2 | 0.02 | 0.05 |
logons cumulative | 203 | 1.93 | 4.72 |
messages received | 438 | 4.16 | 10.19 |
messages sent | 438 | 4.16 | 10.19 |
min active SCN optimization applied to CR | 0 | 0.00 | 0.00 |
no work - consistent read gets | 11,494 | 109.15 | 267.30 |
opened cursors cumulative | 772 | 7.33 | 17.95 |
parse count (describe) | 0 | 0.00 | 0.00 |
parse count (failures) | 0 | 0.00 | 0.00 |
parse count (hard) | 6 | 0.06 | 0.14 |
parse count (total) | 494 | 4.69 | 11.49 |
parse time cpu | 9 | 0.09 | 0.21 |
parse time elapsed | 14 | 0.13 | 0.33 |
physical IO disk bytes | 30,482,078,720 | 289,464,685.63 | 708,885,551.63 |
physical read IO requests | 39,538 | 375.46 | 919.49 |
physical read bytes | 25,764,421,632 | 244,664,751.27 | 599,172,596.09 |
physical read total IO requests | 40,926 | 388.64 | 951.77 |
physical read total bytes | 25,786,990,592 | 244,879,071.19 | 599,697,455.63 |
physical read total multi block requests | 39,290 | 373.11 | 913.72 |
physical reads | 3,145,071 | 29,866.30 | 73,141.19 |
physical reads cache | 5 | 0.05 | 0.12 |
physical reads cache prefetch | 2 | 0.02 | 0.05 |
physical reads direct | 3,145,066 | 29,866.26 | 73,141.07 |
physical reads direct temporary tablespace | 285,944 | 2,715.39 | 6,649.86 |
physical reads prefetch warmup | 2 | 0.02 | 0.05 |
physical write IO requests | 9,336 | 88.66 | 217.12 |
physical write bytes | 2,343,600,128 | 22,255,354.71 | 54,502,328.56 |
physical write total IO requests | 9,492 | 90.14 | 220.74 |
physical write total bytes | 2,346,683,904 | 22,284,638.94 | 54,574,044.28 |
physical write total multi block requests | 9,227 | 87.62 | 214.58 |
physical writes | 286,084 | 2,716.72 | 6,653.12 |
physical writes direct | 285,944 | 2,715.39 | 6,649.86 |
physical writes direct (lob) | 0 | 0.00 | 0.00 |
physical writes direct temporary tablespace | 285,944 | 2,715.39 | 6,649.86 |
physical writes from cache | 140 | 1.33 | 3.26 |
physical writes non checkpoint | 285,962 | 2,715.56 | 6,650.28 |
pinned buffers inspected | 0 | 0.00 | 0.00 |
prefetch warmup blocks aged out before use | 0 | 0.00 | 0.00 |
prefetched blocks aged out before use | 0 | 0.00 | 0.00 |
process last non-idle time | 0 | 0.00 | 0.00 |
queries parallelized | 11 | 0.10 | 0.26 |
recursive calls | 6,258 | 59.43 | 145.53 |
recursive cpu usage | 56,679 | 538.24 | 1,318.12 |
redo blocks checksummed by FG (exclusive) | 1,930 | 18.33 | 44.88 |
redo blocks written | 2,663 | 25.29 | 61.93 |
redo entries | 1,368 | 12.99 | 31.81 |
redo ordering marks | 80 | 0.76 | 1.86 |
redo size | 1,311,264 | 12,452.06 | 30,494.51 |
redo size for direct writes | 0 | 0.00 | 0.00 |
redo subscn max counts | 90 | 0.85 | 2.09 |
redo synch time | 0 | 0.00 | 0.00 |
redo synch writes | 3 | 0.03 | 0.07 |
redo wastage | 11,260 | 106.93 | 261.86 |
redo write broadcast ack time | 1 | 0.01 | 0.02 |
redo write time | 1 | 0.01 | 0.02 |
redo writer latching time | 0 | 0.00 | 0.00 |
redo writes | 51 | 0.48 | 1.19 |
rollback changes - undo records applied | 0 | 0.00 | 0.00 |
rollbacks only - consistent read gets | 0 | 0.00 | 0.00 |
rows fetched via callback | 461 | 4.38 | 10.72 |
session connect time | 0 | 0.00 | 0.00 |
session cursor cache hits | 311 | 2.95 | 7.23 |
session logical reads | 2,888,751 | 27,432.23 | 67,180.26 |
shared hash latch upgrades - no wait | 179 | 1.70 | 4.16 |
shared hash latch upgrades - wait | 0 | 0.00 | 0.00 |
sorts (memory) | 4,356 | 41.37 | 101.30 |
sorts (rows) | 11,498 | 109.19 | 267.40 |
sql area evicted | 0 | 0.00 | 0.00 |
sql area purged | 0 | 0.00 | 0.00 |
summed dirty queue length | 0 | 0.00 | 0.00 |
switch current to new buffer | 6 | 0.06 | 0.14 |
table fetch by rowid | 6,294 | 59.77 | 146.37 |
table fetch continued row | 0 | 0.00 | 0.00 |
table scan blocks gotten | 2,860,816 | 27,166.95 | 66,530.60 |
table scan rows gotten | 351,212,750 | 3,335,195.38 | 8,167,738.37 |
table scans (direct read) | 1,488 | 14.13 | 34.60 |
table scans (long tables) | 1,488 | 14.13 | 34.60 |
table scans (rowid ranges) | 0 | 0.00 | 0.00 |
table scans (short tables) | 48 | 0.46 | 1.12 |
total number of times SMON posted | 0 | 0.00 | 0.00 |
transaction lock background gets | 0 | 0.00 | 0.00 |
transaction lock foreground requests | 0 | 0.00 | 0.00 |
transaction rollbacks | 0 | 0.00 | 0.00 |
undo change vector size | 451,152 | 4,284.24 | 10,491.91 |
user I/O wait time | 7,098 | 67.40 | 165.07 |
user calls | 1,075 | 10.21 | 25.00 |
user commits | 23 | 0.22 | 0.53 |
user rollbacks | 20 | 0.19 | 0.47 |
workarea executions - onepass | 0 | 0.00 | 0.00 |
workarea executions - optimal | 4,380 | 41.59 | 101.86 |
write clones created in background | 0 | 0.00 | 0.00 |
write clones created in foreground | 0 | 0.00 | 0.00 |
Latch Name | Get Requests | Pct Get Miss | Avg Slps /Miss | Wait Time (s) | NoWait Requests | Pct NoWait Miss |
ASM db client latch | 279 | 0.00 | | 0 | 0 | |
ASM map operation freelist | 72 | 0.00 | | 0 | 0 | |
ASM map operation hash table | 120,071 | 0.01 | 0.00 | 0 | 0 | |
ASM network background latch | 44 | 0.00 | | 0 | 0 | |
AWR Alerted Metric Element list | 823 | 0.00 | | 0 | 0 | |
Change Notification Hash table latch | 35 | 0.00 | | 0 | 0 | |
Consistent RBA | 51 | 0.00 | | 0 | 0 | |
DML lock allocation | 60,700 | 0.00 | | 0 | 0 | |
Event Group Locks | 8 | 0.00 | | 0 | 0 | |
FOB s.o list latch | 33 | 0.00 | | 0 | 0 | |
File State Object Pool Parent Latch | 1 | 0.00 | | 0 | 0 | |
IPC stats buffer allocation latch | 462 | 0.00 | | 0 | 479 | 0.00 |
In memory undo latch | 1 | 0.00 | | 0 | 0 | |
JS Sh mem access | 1 | 0.00 | | 0 | 0 | |
JS broadcast add buf latch | 24 | 0.00 | | 0 | 0 | |
JS broadcast drop buf latch | 24 | 0.00 | | 0 | 0 | |
JS broadcast load blnc latch | 21 | 0.00 | | 0 | 0 | |
JS queue access latch | 1 | 0.00 | | 0 | 0 | |
JS queue state obj latch | 1,260 | 0.00 | | 0 | 0 | |
JS slv state obj latch | 7 | 0.00 | | 0 | 0 | |
KFC FX Hash Latch | 1 | 0.00 | | 0 | 0 | |
KFC Hash Latch | 1 | 0.00 | | 0 | 0 | |
KFCL LE Freelist | 1 | 0.00 | | 0 | 0 | |
KFK SGA Libload latch | 1,232 | 0.00 | | 0 | 0 | |
KFMD SGA | 3,603 | 0.11 | 0.00 | 0 | 0 | |
KFR redo allocation latch | 1 | 0.00 | | 0 | 0 | |
KGNFS-NFS:SHM structure | 1 | 0.00 | | 0 | 0 | |
KGNFS-NFS:SVR LIST | 1 | 0.00 | | 0 | 0 | |
KJC message pool free list | 939 | 0.00 | | 0 | 636 | 0.16 |
KJCT flow control latch | 13,127 | 0.02 | 0.00 | 0 | 0 | |
KMG MMAN ready and startup request latch | 35 | 0.00 | | 0 | 0 | |
KSXR large replies | 8 | 0.00 | | 0 | 0 | |
KTF sga latch | 2 | 0.00 | | 0 | 34 | 0.00 |
KWQMN job cache list latch | 6 | 0.00 | | 0 | 0 | |
Locator state objects pool parent latch | 1 | 0.00 | | 0 | 0 | |
MQL Tracking Latch | 0 | | | 0 | 2 | 0.00 |
Memory Management Latch | 1 | 0.00 | | 0 | 35 | 0.00 |
Memory Queue | 1 | 0.00 | | 0 | 0 | |
Memory Queue Message Subscriber #1 | 1 | 0.00 | | 0 | 0 | |
Memory Queue Message Subscriber #2 | 1 | 0.00 | | 0 | 0 | |
Memory Queue Message Subscriber #3 | 1 | 0.00 | | 0 | 0 | |
Memory Queue Message Subscriber #4 | 1 | 0.00 | | 0 | 0 | |
Memory Queue Subscriber | 1 | 0.00 | | 0 | 0 | |
MinActiveScn Latch | 1,107 | 0.00 | | 0 | 0 | |
Mutex | 1 | 0.00 | | 0 | 0 | |
Mutex Stats | 1 | 0.00 | | 0 | 0 | |
OS process | 52 | 0.00 | | 0 | 0 | |
OS process allocation | 73 | 0.00 | | 0 | 0 | |
OS process: request allocation | 10 | 0.00 | | 0 | 0 | |
PL/SQL warning settings | 209 | 0.00 | | 0 | 0 | |
QMT | 1 | 0.00 | | 0 | 0 | |
Real-time plan statistics latch | 283 | 1.41 | 1.50 | 0 | 0 | |
SGA IO buffer pool latch | 1 | 0.00 | | 0 | 1 | 0.00 |
SGA blob parent | 1 | 0.00 | | 0 | 0 | |
SGA bucket locks | 1 | 0.00 | | 0 | 0 | |
SGA heap locks | 1 | 0.00 | | 0 | 0 | |
SGA pool locks | 1 | 0.00 | | 0 | 0 | |
SQL memory manager latch | 2 | 0.00 | | 0 | 35 | 0.00 |
SQL memory manager workarea list latch | 2,630 | 0.00 | | 0 | 0 | |
Shared B-Tree | 4 | 0.00 | | 0 | 0 | |
Streams Generic | 1 | 0.00 | | 0 | 0 | |
Testing | 1 | 0.00 | | 0 | 0 | |
Token Manager | 1 | 0.00 | | 0 | 0 | |
Write State Object Pool Parent Latch | 1 | 0.00 | | 0 | 0 | |
XDB NFS Security Latch | 1 | 0.00 | | 0 | 0 | |
XDB unused session pool | 1 | 0.00 | | 0 | 0 | |
XDB used session pool | 1 | 0.00 | | 0 | 0 | |
active checkpoint queue latch | 4,016 | 0.00 | | 0 | 0 | |
active service list | 6,322 | 0.09 | 0.50 | 0 | 44 | 0.00 |
archive control | 10 | 0.00 | | 0 | 0 | |
buffer pool | 1 | 0.00 | | 0 | 0 | |
business card | 23 | 0.00 | | 0 | 0 | |
cache buffer handles | 124 | 0.00 | | 0 | 0 | |
cache buffers chains | 66,370 | 0.00 | | 0 | 5,163 | 0.00 |
cache buffers lru chain | 2,728 | 0.00 | | 0 | 4,692 | 0.00 |
cas latch | 1 | 0.00 | | 0 | 0 | |
change notification client cache latch | 1 | 0.00 | | 0 | 0 | |
channel handle pool latch | 13 | 0.00 | | 0 | 0 | |
channel operations parent latch | 94,959 | 0.01 | 0.00 | 0 | 0 | |
checkpoint queue latch | 4,178 | 0.00 | | 0 | 550 | 0.00 |
client/application info | 1,116 | 0.00 | | 0 | 0 | |
commit callback allocation | 1 | 0.00 | | 0 | 0 | |
compile environment latch | 203 | 0.00 | | 0 | 0 | |
cp cmon/server latch | 1 | 0.00 | | 0 | 0 | |
cp pool latch | 1 | 0.00 | | 0 | 0 | |
cp server hash latch | 1 | 0.00 | | 0 | 0 | |
cp sga latch | 2 | 0.00 | | 0 | 0 | |
cvmap freelist lock | 1 | 0.00 | | 0 | 0 | |
deferred cleanup latch | 2 | 0.00 | | 0 | 0 | |
dml lock allocation | 2 | 0.00 | | 0 | 0 | |
done queue latch | 1 | 0.00 | | 0 | 0 | |
dummy allocation | 407 | 0.49 | 0.00 | 0 | 0 | |
enqueue hash chains | 17,936 | 0.25 | 0.05 | 0 | 1 | 0.00 |
enqueues | 9,731 | 0.20 | 0.05 | 0 | 0 | |
error message lists | 203 | 0.00 | | 0 | 0 | |
fifth spare latch | 1 | 0.00 | | 0 | 0 | |
file cache latch | 59 | 0.00 | | 0 | 0 | |
flashback copy | 1 | 0.00 | | 0 | 0 | |
gc element | 5,203 | 0.00 | | 0 | 5 | 0.00 |
gcs commit scn state | 1 | 0.00 | | 0 | 0 | |
gcs opaque info freelist | 922 | 0.00 | | 0 | 0 | |
gcs partitioned table hash | 298,086 | 0.00 | | 0 | 59 | 0.00 |
gcs pcm hashed value bucket hash | 1 | 0.00 | | 0 | 0 | |
gcs remaster request queue | 20 | 0.00 | | 0 | 0 | |
gcs remastering latch | 80 | 0.00 | | 0 | 0 | |
gcs resource freelist | 2 | 0.00 | | 0 | 18 | 0.00 |
gcs resource hash | 5,861 | 0.02 | 2.00 | 0 | 0 | |
gcs resource scan list | 1 | 0.00 | | 0 | 0 | |
gcs shadows freelist | 905 | 0.00 | | 0 | 1,092 | 0.00 |
ges caches resource lists | 5,485 | 0.04 | 1.00 | 0 | 2,402 | 0.00 |
ges deadlock list | 442 | 0.00 | | 0 | 0 | |
ges domain table | 10,227 | 0.00 | | 0 | 0 | |
ges enqueue table freelist | 12,969 | 0.02 | 0.00 | 0 | 0 | |
ges group table | 15,299 | 0.00 | | 0 | 0 | |
ges process hash list | 12,548 | 0.00 | | 0 | 0 | |
ges process parent latch | 25,620 | 0.00 | | 0 | 0 | |
ges process table freelist | 10 | 0.00 | | 0 | 0 | |
ges resource hash list | 26,333 | 0.36 | 0.26 | 0 | 1,173 | 0.17 |
ges resource scan list | 3 | 0.00 | | 0 | 0 | |
ges resource table freelist | 2,093 | 0.00 | | 0 | 0 | |
ges timeout list | 188 | 0.00 | | 0 | 46 | 0.00 |
ges value block free list | 1 | 0.00 | | 0 | 0 | |
global tx hash mapping | 1 | 0.00 | | 0 | 0 | |
granule operation | 1 | 0.00 | | 0 | 0 | |
hash table column usage latch | 0 | | | 0 | 32 | 0.00 |
hash table modification latch | 2 | 0.00 | | 0 | 0 | |
heartbeat check | 1 | 0.00 | | 0 | 21 | 0.00 |
intra txn parallel recovery | 1 | 0.00 | | 0 | 0 | |
io pool granule metadata list | 1 | 0.00 | | 0 | 0 | |
job workq parent latch | 1 | 0.00 | | 0 | 4 | 0.00 |
job_queue_processes parameter latch | 25 | 0.00 | | 0 | 0 | |
k2q global data latch | 70 | 0.00 | | 0 | 0 | |
k2q lock allocation | 1 | 0.00 | | 0 | 0 | |
kcfis stats shared latch | 8 | 0.00 | | 0 | 0 | |
kdlx hb parent latch | 1 | 0.00 | | 0 | 0 | |
kgb parent | 1 | 0.00 | | 0 | 0 | |
kks stats | 8 | 0.00 | | 0 | 0 | |
kokc descriptor allocation latch | 82 | 0.00 | | 0 | 0 | |
ksfv messages | 1 | 0.00 | | 0 | 0 | |
ksim membership request latch | 660 | 0.00 | | 0 | 95 | 0.00 |
kss move lock | 3 | 0.00 | | 0 | 0 | |
ksuosstats global area | 52 | 0.00 | | 0 | 0 | |
ksv allocation latch | 6 | 0.00 | | 0 | 0 | |
ksv class latch | 133 | 0.00 | | 0 | 0 | |
ksv msg queue latch | 1 | 0.00 | | 0 | 0 | |
ksxp shared latch | 10 | 0.00 | | 0 | 0 | |
ksz_so allocation latch | 27 | 0.00 | | 0 | 0 | |
ktm global data | 2 | 0.00 | | 0 | 0 | |
kwqbsn:qsga | 3 | 0.00 | | 0 | 0 | |
lgwr LWN SCN | 78 | 0.00 | | 0 | 0 | |
list of block allocation | 22 | 0.00 | | 0 | 0 | |
lob segment dispenser latch | 1 | 0.00 | | 0 | 0 | |
lob segment hash table latch | 3 | 0.00 | | 0 | 0 | |
lob segment query latch | 1 | 0.00 | | 0 | 0 | |
lock DBA buffer during media recovery | 1 | 0.00 | | 0 | 0 | |
logical standby cache | 1 | 0.00 | | 0 | 0 | |
logminer context allocation | 1 | 0.00 | | 0 | 0 | |
logminer work area | 1 | 0.00 | | 0 | 0 | |
longop free list parent | 1 | 0.00 | | 0 | 0 | |
mapped buffers lru chain | 1 | 0.00 | | 0 | 0 | |
message pool operations parent latch | 1,966 | 0.00 | | 0 | 0 | |
messages | 9,272 | 0.11 | 0.00 | 0 | 0 | |
mostly latch-free SCN | 78 | 0.00 | | 0 | 0 | |
msg queue latch | 1 | 0.00 | | 0 | 0 | |
multiblock read objects | 556 | 0.00 | | 0 | 0 | |
name-service memory objects | 584 | 0.00 | | 0 | 0 | |
name-service namespace bucket | 1,038 | 0.00 | | 0 | 0 | |
name-service pending queue | 72 | 0.00 | | 0 | 0 | |
name-service request | 8 | 0.00 | | 0 | 0 | |
name-service request queue | 1,315 | 0.00 | | 0 | 0 | |
ncodef allocation latch | 2 | 0.00 | | 0 | 0 | |
object queue header heap | 283 | 0.00 | | 0 | 89 | 0.00 |
object queue header operation | 53,457 | 0.00 | | 0 | 0 | |
object stats modification | 2,482 | 0.00 | | 0 | 0 | |
parallel query alloc buffer | 2,193 | 0.05 | 0.00 | 0 | 0 | |
parallel query stats | 234 | 0.43 | 0.00 | 0 | 0 | |
parallel txn reco latch | 1,053 | 0.00 | | 0 | 0 | |
parameter list | 38 | 0.00 | | 0 | 0 | |
parameter table management | 406 | 0.00 | | 0 | 0 | |
peshm | 1 | 0.00 | | 0 | 0 | |
pesom_free_list | 1 | 0.00 | | 0 | 0 | |
pesom_hash_node | 1 | 0.00 | | 0 | 0 | |
post/wait queue | 75 | 0.00 | | 0 | 37 | 0.00 |
process allocation | 485 | 0.00 | | 0 | 7 | 0.00 |
process group creation | 10 | 0.00 | | 0 | 0 | |
process queue | 915 | 0.00 | | 0 | 0 | |
process queue reference | 28,357 | 0.00 | 0.00 | 0 | 1,840 | 469.57 |
qmn task queue latch | 12 | 0.00 | | 0 | 0 | |
query server freelists | 630 | 0.32 | 0.00 | 0 | 0 | |
query server process | 4 | 0.00 | | 0 | 0 | |
recovery domain hash list | 1 | 0.00 | | 0 | 0 | |
redo allocation | 208 | 0.00 | | 0 | 1,352 | 0.00 |
redo copy | 1 | 0.00 | | 0 | 1,352 | 0.00 |
redo writing | 271 | 0.00 | | 0 | 0 | |
reid allocation latch | 17 | 0.00 | | 0 | 0 | |
resmgr group change latch | 290 | 0.00 | | 0 | 0 | |
resmgr:active threads | 421 | 0.00 | | 0 | 0 | |
resmgr:actses change group | 202 | 0.00 | | 0 | 0 | |
resmgr:actses change state | 1 | 0.00 | | 0 | 0 | |
resmgr:free threads list | 406 | 0.49 | 0.50 | 0 | 0 | |
resmgr:plan CPU method | 1 | 0.00 | | 0 | 0 | |
resmgr:resource group CPU method | 1 | 0.00 | | 0 | 0 | |
resmgr:schema config | 55 | 0.00 | | 0 | 0 | |
resmgr:session queuing | 1 | 0.00 | | 0 | 0 | |
rm cas latch | 1 | 0.00 | | 0 | 0 | |
row cache objects | 21,504 | 0.00 | 0.00 | 0 | 0 | |
second spare latch | 1 | 0.00 | | 0 | 0 | |
sequence cache | 29 | 0.00 | | 0 | 0 | |
session allocation | 3,352 | 0.72 | 0.75 | 0 | 0 | |
session idle bit | 2,187 | 0.05 | 0.00 | 0 | 0 | |
session queue latch | 1 | 0.00 | | 0 | 0 | |
session state list latch | 406 | 0.25 | 0.00 | 0 | 0 | |
session switching | 3 | 0.00 | | 0 | 0 | |
session timer | 44 | 0.00 | | 0 | 0 | |
shared pool | 16,579 | 0.38 | 0.46 | 0 | 0 | |
shared pool sim alloc | 2 | 0.00 | | 0 | 0 | |
shared pool simulator | 13 | 0.00 | | 0 | 0 | |
sim partition latch | 1 | 0.00 | | 0 | 0 | |
simulator hash latch | 1,220 | 0.00 | | 0 | 0 | |
simulator lru latch | 1 | 0.00 | | 0 | 1,191 | 0.00 |
sort extent pool | 2,928 | 0.96 | 0.00 | 0 | 0 | |
space background state object latch | 2 | 0.00 | | 0 | 0 | |
space background task latch | 80 | 0.00 | | 0 | 70 | 0.00 |
state object free list | 2 | 0.00 | | 0 | 0 | |
statistics aggregation | 1,792 | 0.00 | | 0 | 0 | |
storage server table manipulation latch | 121 | 0.00 | | 0 | 0 | |
tablespace key chain | 1,511 | 0.00 | | 0 | 0 | |
temp lob duration state obj allocation | 1 | 0.00 | | 0 | 0 | |
test excl. parent l0 | 1 | 0.00 | | 0 | 0 | |
test excl. parent2 l0 | 1 | 0.00 | | 0 | 0 | |
third spare latch | 1 | 0.00 | | 0 | 0 | |
threshold alerts latch | 2 | 0.00 | | 0 | 0 | |
transaction allocation | 14,939 | 0.00 | | 0 | 0 | |
undo global data | 7,553 | 0.00 | | 0 | 0 | |
virtual circuit buffers | 1 | 0.00 | | 0 | 0 | |
virtual circuit holder | 1 | 0.00 | | 0 | 0 | |
virtual circuit queues | 1 | 0.00 | | 0 | 0 | |
Statistic | Total | per Second | per Trans |
acks for commit broadcast(actual) | 415 | 3.94 | 9.65 |
acks for commit broadcast(logical) | 418 | 3.97 | 9.72 |
broadcast msgs on commit(actual) | 332 | 3.15 | 7.72 |
broadcast msgs on commit(logical) | 336 | 3.19 | 7.81 |
broadcast msgs on commit(wasted) | 13 | 0.12 | 0.30 |
broadcast on commit wait time(ms) | 3 | 0.03 | 0.07 |
broadcast on commit waits | 11 | 0.10 | 0.26 |
dynamically allocated gcs resources | 0 | 0.00 | 0.00 |
dynamically allocated gcs shadows | 0 | 0.00 | 0.00 |
false posts waiting for scn acks | 0 | 0.00 | 0.00 |
flow control messages received | 0 | 0.00 | 0.00 |
flow control messages sent | 0 | 0.00 | 0.00 |
gcs assume cvt | 0 | 0.00 | 0.00 |
gcs assume no cvt | 357 | 3.39 | 8.30 |
gcs ast xid | 0 | 0.00 | 0.00 |
gcs blocked converts | 424 | 4.03 | 9.86 |
gcs blocked cr converts | 182 | 1.73 | 4.23 |
gcs compatible basts | 11 | 0.10 | 0.26 |
gcs compatible cr basts (global) | 6 | 0.06 | 0.14 |
gcs compatible cr basts (local) | 29 | 0.28 | 0.67 |
gcs cr basts to PIs | 0 | 0.00 | 0.00 |
gcs cr serve without current lock | 0 | 0.00 | 0.00 |
gcs dbwr flush pi msgs | 2 | 0.02 | 0.05 |
gcs dbwr write request msgs | 2 | 0.02 | 0.05 |
gcs error msgs | 0 | 0.00 | 0.00 |
gcs forward cr to pinged instance | 0 | 0.00 | 0.00 |
gcs immediate (compatible) converts | 5 | 0.05 | 0.12 |
gcs immediate (null) converts | 17 | 0.16 | 0.40 |
gcs immediate cr (compatible) converts | 0 | 0.00 | 0.00 |
gcs immediate cr (null) converts | 1 | 0.01 | 0.02 |
gcs indirect ast | 55 | 0.52 | 1.28 |
gcs indirect bidless ast | 31 | 0.29 | 0.72 |
gcs indirect fg ast | 44 | 0.42 | 1.02 |
gcs lms flush pi msgs | 9 | 0.09 | 0.21 |
gcs lms write request msgs | 5 | 0.05 | 0.12 |
gcs msgs process time(ms) | 33 | 0.31 | 0.77 |
gcs msgs received | 3,968 | 37.68 | 92.28 |
gcs new served by master | 16 | 0.15 | 0.37 |
gcs out-of-order msgs | 0 | 0.00 | 0.00 |
gcs pings refused | 1 | 0.01 | 0.02 |
gcs pkey conflicts retry | 0 | 0.00 | 0.00 |
gcs queued converts | 0 | 0.00 | 0.00 |
gcs reader bypass N->Xw ping local | 0 | 0.00 | 0.00 |
gcs reader bypass N->Xw ping remote | 13 | 0.12 | 0.30 |
gcs reader bypass grant X on assume | 13 | 0.12 | 0.30 |
gcs reader bypass grant ast | 0 | 0.00 | 0.00 |
gcs reader bypass grant fg ast | 18 | 0.17 | 0.42 |
gcs reader bypass grant immediate | 20 | 0.19 | 0.47 |
gcs recovery claim msgs | 0 | 0.00 | 0.00 |
gcs refuse xid | 0 | 0.00 | 0.00 |
gcs regular cr | 67 | 0.64 | 1.56 |
gcs retry convert request | 718 | 6.82 | 16.70 |
gcs share recovery bast | 0 | 0.00 | 0.00 |
gcs side channel msgs actual | 69 | 0.66 | 1.60 |
gcs side channel msgs logical | 549 | 5.21 | 12.77 |
gcs stale cr | 0 | 0.00 | 0.00 |
gcs undo cr | 2 | 0.02 | 0.05 |
gcs write notification msgs | 0 | 0.00 | 0.00 |
gcs writes refused | 0 | 0.00 | 0.00 |
ges msgs process time(ms) | 53 | 0.50 | 1.23 |
ges msgs received | 4,727 | 44.89 | 109.93 |
global posts dropped | 0 | 0.00 | 0.00 |
global posts queue time | 0 | 0.00 | 0.00 |
global posts queued | 0 | 0.00 | 0.00 |
global posts requested | 0 | 0.00 | 0.00 |
global posts sent | 0 | 0.00 | 0.00 |
implicit batch messages received | 38 | 0.36 | 0.88 |
implicit batch messages sent | 59 | 0.56 | 1.37 |
lmd msg send time(ms) | 0 | 0.00 | 0.00 |
lms(s) msg send time(ms) | 0 | 0.00 | 0.00 |
messages flow controlled | 300 | 2.85 | 6.98 |
messages queue sent actual | 4,468 | 42.43 | 103.91 |
messages queue sent logical | 4,612 | 43.80 | 107.26 |
messages received actual | 6,846 | 65.01 | 159.21 |
messages received logical | 8,695 | 82.57 | 202.21 |
messages sent directly | 1,946 | 18.48 | 45.26 |
messages sent indirectly | 1,582 | 15.02 | 36.79 |
messages sent not implicit batched | 4,409 | 41.87 | 102.53 |
messages sent pbatched | 5,816 | 55.23 | 135.26 |
msgs causing lmd to send msgs | 2,055 | 19.51 | 47.79 |
msgs causing lms(s) to send msgs | 716 | 6.80 | 16.65 |
msgs received queue time (ms) | 4 | 0.04 | 0.09 |
msgs received queued | 8,695 | 82.57 | 202.21 |
msgs sent queue time (ms) | 20,219,489 | 192,008.82 | 470,220.67 |
msgs sent queue time on ksxp (ms) | 1,965 | 18.66 | 45.70 |
msgs sent queued | 4,533 | 43.05 | 105.42 |
msgs sent queued on ksxp | 6,651 | 63.16 | 154.67 |
process batch messages received | 3,577 | 33.97 | 83.19 |
process batch messages sent | 3,865 | 36.70 | 89.88 |