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# |
3m8smr0v7v1m6 | INSERT INTO sys.wri$_adv_message_groups (task_id, id, seq, message#, fac, hdr, lm, nl, p1, p2, p3, p4, p5) VALUES (:1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :12, :13) |
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 ) |
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' |
6uv0yw917usfy | INSERT INTO wri$_adv_addm_fdg ( TASK_ID, FINDING_ID, RULE_ID, ADDM_FDG_ID, ADDM_SEQ, DATABASE_TIME, ACTIVE_SESSIONS, PERC_ACTIVE_SESS, IS_AGGREGATE, METER_LEVEL) VALUES ( :tid, :kea_id, NULL, NULL, 0, NULL, NULL, NULL, 'N', NULL) |
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) |
84k66tf2s7y1c | insert into wrh$_bg_event_summary (snap_id, dbid, instance_number, event_id, total_waits, total_timeouts, time_waited_micro) select :snap_id, :dbid, :instance_number, event_id, total_waits - total_waits_fg, total_timeouts - total_timeouts_fg, time_waited_micro - time_waited_micro_fg from v$system_event where (total_waits - total_waits_fg) > 0 order by event_id |
87gaftwrm2h68 | select o.owner#, o.name, o.namespace, o.remoteowner, o.linkname, o.subname from obj$ o where o.obj#=:1 |
8dkv0z9wm9881 | select /* eight */
/*+ 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 |
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) |
9rfkm1bf915a0 | UPDATE WRH$_SEG_STAT_OBJ SET snap_id = :lah_snap_id WHERE dbid = :dbid AND (OBJ#, DATAOBJ#) IN (SELECT NUM1_KEWRATTR, NUM2_KEWRATTR FROM X$KEWRATTRSTALE) |
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 |
f318xdxdn0pdc | insert into wrh$_log (snap_id, dbid, instance_number, group#, thread#, sequence#, bytes, members, archived, status, first_change#, first_time) select :snap_id, :dbid, :instance_number, group#, thread#, sequence#, bytes, members, archived, status, first_change#, first_time from v$log |
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.03 | 0.05 |
Batched IO (full) vector count | 0 | 0.00 | 0.00 |
Batched IO block miss count | 13 | 0.18 | 0.30 |
Batched IO buffer defrag count | 1 | 0.01 | 0.02 |
Batched IO double miss count | 3 | 0.04 | 0.07 |
Batched IO same unit count | 7 | 0.10 | 0.16 |
Batched IO single block count | 2 | 0.03 | 0.05 |
Batched IO slow jump count | 0 | 0.00 | 0.00 |
Batched IO vector block count | 4 | 0.06 | 0.09 |
Batched IO vector read count | 1 | 0.01 | 0.02 |
Block Cleanout Optim referenced | 28 | 0.39 | 0.65 |
CCursor + sql area evicted | 2 | 0.03 | 0.05 |
CPU used by this session | 10,643 | 146.86 | 247.51 |
CPU used when call started | 93,571 | 1,291.19 | 2,176.07 |
CR blocks created | 3 | 0.04 | 0.07 |
Cached Commit SCN referenced | 0 | 0.00 | 0.00 |
Commit SCN cached | 21 | 0.29 | 0.49 |
DB time | 23,902 | 329.82 | 555.86 |
DBWR checkpoint buffers written | 32 | 0.44 | 0.74 |
DBWR checkpoints | 1 | 0.01 | 0.02 |
DBWR fusion writes | 3 | 0.04 | 0.07 |
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 | 11 | 0.15 | 0.26 |
DBWR undo block writes | 12 | 0.17 | 0.28 |
DFO trees parallelized | 8 | 0.11 | 0.19 |
DML statements parallelized | 0 | 0.00 | 0.00 |
HSC Heap Segment Block Changes | 331 | 4.57 | 7.70 |
HSC IDL Compressed Blocks | 0 | 0.00 | 0.00 |
Heap Segment Array Inserts | 99 | 1.37 | 2.30 |
Heap Segment Array Updates | 7 | 0.10 | 0.16 |
PX local messages recv'd | 72 | 0.99 | 1.67 |
PX local messages sent | 72 | 0.99 | 1.67 |
PX remote messages recv'd | 504 | 6.95 | 11.72 |
PX remote messages sent | 616 | 8.50 | 14.33 |
Parallel operations not downgraded | 8 | 0.11 | 0.19 |
RowCR attempts | 0 | 0.00 | 0.00 |
RowCR hits | 0 | 0.00 | 0.00 |
SMON posted for undo segment shrink | 0 | 0.00 | 0.00 |
SQL*Net roundtrips to/from client | 45 | 0.62 | 1.05 |
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 | 87 | 1.20 | 2.02 |
application wait time | 1 | 0.01 | 0.02 |
background timeouts | 448 | 6.18 | 10.42 |
branch node splits | 0 | 0.00 | 0.00 |
buffer is not pinned count | 3,102 | 42.80 | 72.14 |
buffer is pinned count | 10,788 | 148.86 | 250.88 |
bytes received via SQL*Net from client | 46,210 | 637.65 | 1,074.65 |
bytes sent via SQL*Net to client | 14,481 | 199.82 | 336.77 |
calls to get snapshot scn: kcmgss | 13,300 | 183.53 | 309.30 |
calls to kcmgas | 520 | 7.18 | 12.09 |
calls to kcmgcs | 66 | 0.91 | 1.53 |
cell blocks helped by minscn optimization | 954,977 | 13,177.73 | 22,208.77 |
cell blocks processed by cache layer | 954,977 | 13,177.73 | 22,208.77 |
cell blocks processed by data layer | 954,977 | 13,177.73 | 22,208.77 |
cell blocks processed by txn layer | 954,977 | 13,177.73 | 22,208.77 |
cell physical IO bytes eligible for predicate offload | 7,805,517,824 | 107,708,369.43 | 181,523,670.33 |
cell physical IO bytes saved during optimized file creation | 0 | 0.00 | 0.00 |
cell physical IO interconnect bytes | 5,921,507,272 | 81,710,900.83 | 137,709,471.44 |
cell scans | 496 | 6.84 | 11.53 |
change write time | 1 | 0.01 | 0.02 |
cleanout - number of ktugct calls | 82 | 1.13 | 1.91 |
cleanouts and rollbacks - consistent read gets | 3 | 0.04 | 0.07 |
cleanouts only - consistent read gets | 3 | 0.04 | 0.07 |
cluster key scan block gets | 76 | 1.05 | 1.77 |
cluster key scans | 69 | 0.95 | 1.60 |
cluster wait time | 14 | 0.19 | 0.33 |
commit batch/immediate performed | 2 | 0.03 | 0.05 |
commit batch/immediate requested | 2 | 0.03 | 0.05 |
commit cleanout failures: block lost | 16 | 0.22 | 0.37 |
commit cleanout failures: callback failure | 4 | 0.06 | 0.09 |
commit cleanout failures: cannot pin | 0 | 0.00 | 0.00 |
commit cleanouts | 409 | 5.64 | 9.51 |
commit cleanouts successfully completed | 389 | 5.37 | 9.05 |
commit immediate performed | 2 | 0.03 | 0.05 |
commit immediate requested | 2 | 0.03 | 0.05 |
commit txn count during cleanout | 103 | 1.42 | 2.40 |
concurrency wait time | 8 | 0.11 | 0.19 |
consistent changes | 18 | 0.25 | 0.42 |
consistent gets | 978,518 | 13,502.57 | 22,756.23 |
consistent gets - examination | 1,692 | 23.35 | 39.35 |
consistent gets direct | 952,822 | 13,147.99 | 22,158.65 |
consistent gets from cache | 25,696 | 354.58 | 597.58 |
consistent gets from cache (fastpath) | 23,727 | 327.41 | 551.79 |
current blocks converted for CR | 0 | 0.00 | 0.00 |
cursor authentications | 52 | 0.72 | 1.21 |
data blocks consistent reads - undo records applied | 3 | 0.04 | 0.07 |
db block changes | 2,713 | 37.44 | 63.09 |
db block gets | 2,858 | 39.44 | 66.47 |
db block gets direct | 0 | 0.00 | 0.00 |
db block gets from cache | 2,858 | 39.44 | 66.47 |
db block gets from cache (fastpath) | 749 | 10.34 | 17.42 |
deferred (CURRENT) block cleanout applications | 179 | 2.47 | 4.16 |
enqueue conversions | 169 | 2.33 | 3.93 |
enqueue releases | 2,621 | 36.17 | 60.95 |
enqueue requests | 2,653 | 36.61 | 61.70 |
enqueue timeouts | 32 | 0.44 | 0.74 |
enqueue waits | 339 | 4.68 | 7.88 |
exchange deadlocks | 0 | 0.00 | 0.00 |
execute count | 811 | 11.19 | 18.86 |
free buffer inspected | 0 | 0.00 | 0.00 |
free buffer requested | 3,680 | 50.78 | 85.58 |
gc CPU used by this session | 30 | 0.41 | 0.70 |
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 | 3 | 0.04 | 0.07 |
gc cr block send time | 0 | 0.00 | 0.00 |
gc cr blocks received | 175 | 2.41 | 4.07 |
gc cr blocks served | 157 | 2.17 | 3.65 |
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 | 214 | 2.95 | 4.98 |
gc current block send time | 1 | 0.01 | 0.02 |
gc current blocks received | 1,874 | 25.86 | 43.58 |
gc current blocks served | 533 | 7.35 | 12.40 |
gc local grants | 116 | 1.60 | 2.70 |
gc reader bypass grants | 23 | 0.32 | 0.53 |
gc remote grants | 137 | 1.89 | 3.19 |
gcs messages sent | 5,781 | 79.77 | 134.44 |
ges messages sent | 2,966 | 40.93 | 68.98 |
global enqueue get time | 42 | 0.58 | 0.98 |
global enqueue gets async | 50 | 0.69 | 1.16 |
global enqueue gets sync | 3,051 | 42.10 | 70.95 |
global enqueue releases | 2,865 | 39.53 | 66.63 |
heap block compress | 8 | 0.11 | 0.19 |
hot buffers moved to head of LRU | 0 | 0.00 | 0.00 |
immediate (CR) block cleanout applications | 6 | 0.08 | 0.14 |
immediate (CURRENT) block cleanout applications | 131 | 1.81 | 3.05 |
index crx upgrade (positioned) | 14 | 0.19 | 0.33 |
index crx upgrade (prefetch) | 0 | 0.00 | 0.00 |
index fast full scans (full) | 0 | 0.00 | 0.00 |
index fetch by key | 711 | 9.81 | 16.53 |
index scans kdiixs1 | 4,553 | 62.83 | 105.88 |
leaf node 90-10 splits | 14 | 0.19 | 0.33 |
leaf node splits | 38 | 0.52 | 0.88 |
lob reads | 0 | 0.00 | 0.00 |
lob writes | 2 | 0.03 | 0.05 |
lob writes unaligned | 2 | 0.03 | 0.05 |
logons cumulative | 164 | 2.26 | 3.81 |
messages received | 440 | 6.07 | 10.23 |
messages sent | 440 | 6.07 | 10.23 |
min active SCN optimization applied to CR | 0 | 0.00 | 0.00 |
no work - consistent read gets | 11,168 | 154.11 | 259.72 |
opened cursors cumulative | 804 | 11.09 | 18.70 |
parse count (describe) | 1 | 0.01 | 0.02 |
parse count (failures) | 0 | 0.00 | 0.00 |
parse count (hard) | 55 | 0.76 | 1.28 |
parse count (total) | 477 | 6.58 | 11.09 |
parse time cpu | 3 | 0.04 | 0.07 |
parse time elapsed | 4 | 0.06 | 0.09 |
physical IO disk bytes | 9,590,014,976 | 132,332,652.25 | 223,023,604.09 |
physical read IO requests | 12,426 | 171.47 | 288.98 |
physical read bytes | 8,391,327,744 | 115,791,962.69 | 195,147,156.84 |
physical read total IO requests | 13,720 | 189.32 | 319.07 |
physical read total bytes | 8,412,356,608 | 116,082,140.06 | 195,636,200.19 |
physical read total multi block requests | 12,313 | 169.91 | 286.35 |
physical reads | 1,024,332 | 14,134.76 | 23,821.67 |
physical reads cache | 24 | 0.33 | 0.56 |
physical reads cache prefetch | 1 | 0.01 | 0.02 |
physical reads direct | 1,024,308 | 14,134.43 | 23,821.12 |
physical reads direct temporary tablespace | 71,486 | 986.44 | 1,662.47 |
physical reads prefetch warmup | 1 | 0.01 | 0.02 |
physical write IO requests | 2,335 | 32.22 | 54.30 |
physical write bytes | 585,883,648 | 8,084,610.63 | 13,625,201.12 |
physical write total IO requests | 2,455 | 33.88 | 57.09 |
physical write total bytes | 588,239,360 | 8,117,117.11 | 13,679,985.12 |
physical write total multi block requests | 2,307 | 31.83 | 53.65 |
physical writes | 71,519 | 986.89 | 1,663.23 |
physical writes direct | 71,486 | 986.44 | 1,662.47 |
physical writes direct (lob) | 0 | 0.00 | 0.00 |
physical writes direct temporary tablespace | 71,486 | 986.44 | 1,662.47 |
physical writes from cache | 33 | 0.46 | 0.77 |
physical writes non checkpoint | 71,497 | 986.59 | 1,662.72 |
pinned buffers inspected | 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 | 8 | 0.11 | 0.19 |
recovery blocks read | 0 | 0.00 | 0.00 |
recursive calls | 5,303 | 73.18 | 123.33 |
recursive cpu usage | 10,593 | 146.17 | 246.35 |
redo blocks checksummed by FG (exclusive) | 1,618 | 22.33 | 37.63 |
redo blocks written | 2,297 | 31.70 | 53.42 |
redo entries | 1,513 | 20.88 | 35.19 |
redo ordering marks | 92 | 1.27 | 2.14 |
redo size | 1,506,676 | 20,790.63 | 35,038.98 |
redo size for direct writes | 0 | 0.00 | 0.00 |
redo subscn max counts | 65 | 0.90 | 1.51 |
redo synch time | 0 | 0.00 | 0.00 |
redo synch writes | 2 | 0.03 | 0.05 |
redo wastage | 10,668 | 147.21 | 248.09 |
redo write broadcast ack time | 0 | 0.00 | 0.00 |
redo write time | 1 | 0.01 | 0.02 |
redo writer latching time | 0 | 0.00 | 0.00 |
redo writes | 48 | 0.66 | 1.12 |
rollback changes - undo records applied | 4 | 0.06 | 0.09 |
rollbacks only - consistent read gets | 0 | 0.00 | 0.00 |
rows fetched via callback | 461 | 6.36 | 10.72 |
session connect time | 0 | 0.00 | 0.00 |
session cursor cache hits | 331 | 4.57 | 7.70 |
session logical reads | 981,376 | 13,542.01 | 22,822.70 |
shared hash latch upgrades - no wait | 132 | 1.82 | 3.07 |
shared hash latch upgrades - wait | 0 | 0.00 | 0.00 |
sorts (memory) | 4,325 | 59.68 | 100.58 |
sorts (rows) | 11,591 | 159.94 | 269.56 |
sql area evicted | 23 | 0.32 | 0.53 |
sql area purged | 0 | 0.00 | 0.00 |
switch current to new buffer | 4 | 0.06 | 0.09 |
table fetch by rowid | 6,357 | 87.72 | 147.84 |
table fetch continued row | 3 | 0.04 | 0.07 |
table scan blocks gotten | 953,729 | 13,160.51 | 22,179.74 |
table scan rows gotten | 117,075,626 | 1,615,527.00 | 2,722,688.98 |
table scans (direct read) | 496 | 6.84 | 11.53 |
table scans (long tables) | 496 | 6.84 | 11.53 |
table scans (rowid ranges) | 0 | 0.00 | 0.00 |
table scans (short tables) | 41 | 0.57 | 0.95 |
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 | 2 | 0.03 | 0.05 |
undo change vector size | 553,536 | 7,638.25 | 12,872.93 |
user I/O wait time | 1,934 | 26.69 | 44.98 |
user calls | 865 | 11.94 | 20.12 |
user commits | 22 | 0.30 | 0.51 |
user rollbacks | 21 | 0.29 | 0.49 |
workarea executions - onepass | 0 | 0.00 | 0.00 |
workarea executions - optimal | 4,317 | 59.57 | 100.40 |
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 | 129 | 0.00 | | 0 | 0 | |
ASM map operation freelist | 1 | 0.00 | | 0 | 0 | |
ASM map operation hash table | 37,457 | 0.00 | | 0 | 0 | |
ASM network background latch | 30 | 0.00 | | 0 | 0 | |
AWR Alerted Metric Element list | 408 | 0.00 | | 0 | 0 | |
Change Notification Hash table latch | 24 | 0.00 | | 0 | 0 | |
Consistent RBA | 51 | 0.00 | | 0 | 0 | |
DML lock allocation | 60,630 | 0.00 | | 0 | 0 | |
Event Group Locks | 2 | 0.00 | | 0 | 0 | |
FOB s.o list latch | 17 | 0.00 | | 0 | 0 | |
File State Object Pool Parent Latch | 1 | 0.00 | | 0 | 0 | |
IPC stats buffer allocation latch | 366 | 0.00 | | 0 | 382 | 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 | 17 | 0.00 | | 0 | 0 | |
JS broadcast drop buf latch | 17 | 0.00 | | 0 | 0 | |
JS broadcast load blnc latch | 15 | 0.00 | | 0 | 0 | |
JS queue access latch | 1 | 0.00 | | 0 | 0 | |
JS queue state obj latch | 810 | 0.00 | | 0 | 0 | |
JS slv state obj latch | 4 | 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 | 924 | 0.00 | | 0 | 0 | |
KFMD SGA | 90 | 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 | 1,402 | 0.00 | | 0 | 558 | 0.00 |
KJCT flow control latch | 11,207 | 0.00 | | 0 | 0 | |
KMG MMAN ready and startup request latch | 24 | 0.00 | | 0 | 0 | |
KSXR large replies | 8 | 0.00 | | 0 | 0 | |
KTF sga latch | 0 | | | 0 | 23 | 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 | 24 | 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,178 | 0.00 | | 0 | 0 | |
Mutex | 1 | 0.00 | | 0 | 0 | |
Mutex Stats | 1 | 0.00 | | 0 | 0 | |
OS process | 10 | 0.00 | | 0 | 0 | |
OS process allocation | 30 | 0.00 | | 0 | 0 | |
OS process: request allocation | 2 | 0.00 | | 0 | 0 | |
PL/SQL warning settings | 168 | 0.00 | | 0 | 0 | |
QMT | 1 | 0.00 | | 0 | 0 | |
Real-time plan statistics latch | 123 | 0.00 | | 0 | 0 | |
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 | 1 | 0.00 | | 0 | 24 | 0.00 |
SQL memory manager workarea list latch | 1,782 | 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,003 | 0.00 | | 0 | 0 | |
active service list | 9,043 | 0.00 | | 0 | 29 | 0.00 |
archive control | 7 | 0.00 | | 0 | 0 | |
buffer pool | 1 | 0.00 | | 0 | 0 | |
business card | 17 | 0.00 | | 0 | 0 | |
cache buffer handles | 144 | 0.00 | | 0 | 0 | |
cache buffers chains | 67,354 | 0.00 | 1.00 | 0 | 8,782 | 0.01 |
cache buffers lru chain | 4,775 | 0.00 | | 0 | 6,281 | 0.00 |
cas latch | 1 | 0.00 | | 0 | 0 | |
change notification client cache latch | 1 | 0.00 | | 0 | 0 | |
channel handle pool latch | 5 | 0.00 | | 0 | 0 | |
channel operations parent latch | 82,290 | 0.00 | 0.00 | 0 | 0 | |
checkpoint queue latch | 2,770 | 0.00 | | 0 | 611 | 0.00 |
client/application info | 922 | 0.00 | | 0 | 0 | |
commit callback allocation | 1 | 0.00 | | 0 | 0 | |
compile environment latch | 164 | 0.00 | | 0 | 0 | |
corrupted undo seg lock | 21 | 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 | 329 | 0.00 | | 0 | 0 | |
enqueue hash chains | 8,095 | 0.00 | | 0 | 1 | 0.00 |
enqueues | 4,430 | 0.00 | | 0 | 0 | |
error message lists | 152 | 0.66 | 0.00 | 0 | 0 | |
fifth spare latch | 1 | 0.00 | | 0 | 0 | |
file cache latch | 127 | 0.00 | | 0 | 0 | |
flashback copy | 1 | 0.00 | | 0 | 0 | |
gc element | 9,146 | 0.01 | 1.00 | 0 | 2 | 0.00 |
gcs commit scn state | 1 | 0.00 | | 0 | 0 | |
gcs opaque info freelist | 1,214 | 0.00 | | 0 | 0 | |
gcs partitioned table hash | 211,076 | 0.00 | | 0 | 81 | 0.00 |
gcs pcm hashed value bucket hash | 1 | 0.00 | | 0 | 0 | |
gcs remaster request queue | 6 | 0.00 | | 0 | 0 | |
gcs remastering latch | 35 | 0.00 | | 0 | 0 | |
gcs resource freelist | 22 | 0.00 | | 0 | 6 | 0.00 |
gcs resource hash | 9,164 | 0.00 | | 0 | 0 | |
gcs resource scan list | 1 | 0.00 | | 0 | 0 | |
gcs shadows freelist | 745 | 0.00 | | 0 | 919 | 0.00 |
ges caches resource lists | 3,062 | 0.00 | | 0 | 1,642 | 0.00 |
ges deadlock list | 940 | 0.00 | | 0 | 0 | |
ges domain table | 5,998 | 0.00 | | 0 | 0 | |
ges enqueue table freelist | 7,005 | 0.00 | | 0 | 0 | |
ges group table | 8,981 | 0.00 | | 0 | 0 | |
ges process hash list | 10,057 | 0.00 | | 0 | 0 | |
ges process parent latch | 14,372 | 0.00 | | 0 | 0 | |
ges process table freelist | 2 | 0.00 | | 0 | 0 | |
ges resource hash list | 14,898 | 0.09 | 0.00 | 0 | 739 | 0.00 |
ges resource scan list | 5 | 0.00 | | 0 | 0 | |
ges resource table freelist | 1,433 | 0.00 | | 0 | 0 | |
ges timeout list | 198 | 0.00 | | 0 | 48 | 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 | 1,835 | 0.00 |
hash table modification latch | 1 | 0.00 | | 0 | 0 | |
heartbeat check | 1 | 0.00 | | 0 | 15 | 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 | 2 | 0.00 |
job_queue_processes parameter latch | 17 | 0.00 | | 0 | 0 | |
k2q global data latch | 48 | 0.00 | | 0 | 0 | |
k2q lock allocation | 1 | 0.00 | | 0 | 0 | |
kcfis stats shared latch | 2 | 0.00 | | 0 | 0 | |
kdlx hb parent latch | 1 | 0.00 | | 0 | 0 | |
kgb parent | 1 | 0.00 | | 0 | 0 | |
kks stats | 136 | 0.00 | | 0 | 0 | |
kokc descriptor allocation latch | 58 | 0.00 | | 0 | 0 | |
ksfv messages | 1 | 0.00 | | 0 | 0 | |
ksim membership request latch | 656 | 0.00 | | 0 | 73 | 0.00 |
kss move lock | 1 | 0.00 | | 0 | 0 | |
ksuosstats global area | 50 | 0.00 | | 0 | 0 | |
ksv allocation latch | 2 | 0.00 | | 0 | 0 | |
ksv class latch | 85 | 0.00 | | 0 | 0 | |
ksv msg queue latch | 1 | 0.00 | | 0 | 0 | |
ksxp shared latch | 2 | 0.00 | | 0 | 0 | |
ksz_so allocation latch | 3 | 0.00 | | 0 | 0 | |
ktm global data | 2 | 0.00 | | 0 | 0 | |
kwqbsn:qsga | 3 | 0.00 | | 0 | 0 | |
lgwr LWN SCN | 71 | 0.00 | | 0 | 0 | |
list of block allocation | 20 | 0.00 | | 0 | 0 | |
lob segment dispenser latch | 1 | 0.00 | | 0 | 0 | |
lob segment hash table latch | 1 | 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,604 | 0.00 | | 0 | 0 | |
messages | 7,562 | 0.00 | | 0 | 0 | |
mostly latch-free SCN | 71 | 0.00 | | 0 | 0 | |
msg queue latch | 1 | 0.00 | | 0 | 0 | |
multiblock read objects | 714 | 0.00 | | 0 | 0 | |
name-service memory objects | 378 | 0.00 | | 0 | 0 | |
name-service namespace bucket | 734 | 0.00 | | 0 | 0 | |
name-service pending queue | 44 | 0.00 | | 0 | 0 | |
name-service request queue | 975 | 0.00 | | 0 | 0 | |
ncodef allocation latch | 2 | 0.00 | | 0 | 0 | |
object queue header heap | 1,689 | 0.00 | | 0 | 85 | 0.00 |
object queue header operation | 182,858 | 0.00 | 0.00 | 0 | 0 | |
object stats modification | 2,086 | 0.00 | | 0 | 0 | |
parallel query alloc buffer | 1,745 | 0.06 | 0.00 | 0 | 0 | |
parallel query stats | 188 | 0.00 | | 0 | 0 | |
parameter list | 26 | 0.00 | | 0 | 0 | |
parameter table management | 328 | 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 | 80 | 0.00 | | 0 | 51 | 0.00 |
process allocation | 325 | 0.00 | | 0 | 1 | 0.00 |
process group creation | 2 | 0.00 | | 0 | 0 | |
process queue | 722 | 0.00 | | 0 | 0 | |
process queue reference | 24,056 | 0.00 | | 0 | 1,473 | 0.00 |
qmn task queue latch | 12 | 0.00 | | 0 | 0 | |
query server freelists | 495 | 0.00 | | 0 | 0 | |
queued dump request | 1 | 0.00 | | 0 | 0 | |
recovery domain hash list | 1 | 0.00 | | 0 | 0 | |
redo allocation | 194 | 0.00 | | 0 | 1,467 | 0.00 |
redo copy | 1 | 0.00 | | 0 | 1,467 | 0.00 |
redo writing | 234 | 0.00 | | 0 | 0 | |
reid allocation latch | 1 | 0.00 | | 0 | 0 | |
resmgr group change latch | 220 | 0.00 | | 0 | 0 | |
resmgr:active threads | 343 | 0.00 | | 0 | 0 | |
resmgr:actses change group | 164 | 0.00 | | 0 | 0 | |
resmgr:actses change state | 1 | 0.00 | | 0 | 0 | |
resmgr:free threads list | 328 | 0.00 | | 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 | 25,622 | 0.00 | | 0 | 1 | 0.00 |
second spare latch | 1 | 0.00 | | 0 | 0 | |
sequence cache | 31 | 0.00 | | 0 | 0 | |
session allocation | 5,763 | 0.12 | 0.57 | 0 | 0 | |
session idle bit | 1,757 | 0.00 | | 0 | 0 | |
session queue latch | 1 | 0.00 | | 0 | 0 | |
session state list latch | 328 | 0.00 | | 0 | 0 | |
session switching | 3 | 0.00 | | 0 | 0 | |
session timer | 29 | 0.00 | | 0 | 0 | |
shared pool | 18,722 | 0.03 | 0.20 | 0 | 0 | |
shared pool sim alloc | 2 | 0.00 | | 0 | 0 | |
shared pool simulator | 407 | 0.00 | | 0 | 0 | |
sim partition latch | 1 | 0.00 | | 0 | 0 | |
simulator hash latch | 1,161 | 0.00 | | 0 | 0 | |
simulator lru latch | 1 | 0.00 | | 0 | 1,128 | 0.00 |
sort extent pool | 731 | 0.00 | | 0 | 0 | |
space background task latch | 54 | 0.00 | | 0 | 48 | 0.00 |
state object free list | 2 | 0.00 | | 0 | 0 | |
statistics aggregation | 1,568 | 0.00 | | 0 | 0 | |
storage server table manipulation latch | 9 | 0.00 | | 0 | 0 | |
tablespace key chain | 638 | 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,935 | 0.00 | | 0 | 0 | |
undo global data | 580 | 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 | |