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 |
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)
|
1uk5m5qbzj1vt | BEGIN dbms_workload_repository.create_snapshot; END;
|
2b064ybzkwf1y | BEGIN EMD_NOTIFICATION.QUEUE_READY(:1, :2, :3); END; |
2n27cdhj8s6fb | SELECT JOB_ID, EXECUTION_ID, STEP_ID, STEP_NAME, STEP_TYPE, COMMAND_TYPE, TIMEZONE_REGION FROM MGMT_JOB_EXECUTION J WHERE STEP_TYPE IN (:B5 , :B4 ) AND COMMAND_TYPE = :B3 AND START_TIME <= :B2 AND ROWNUM <= :B1 |
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 ) |
5hfunyv38vwfp | SELECT JOB_ID, EXECUTION_ID, STEP_ID, STEP_NAME, STEP_TYPE, ITERATE_PARAM, ITERATE_PARAM_INDEX, COMMAND_TYPE, TIMEZONE_REGION FROM MGMT_JOB_EXECUTION J WHERE STEP_TYPE IN (:B9 , :B8 , :B7 , :B6 , :B5 ) AND STEP_STATUS = :B4 AND COMMAND_TYPE = :B3 AND START_TIME <= :B2 AND ROWNUM <= :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) |
6v7n0y2bq89n8 | 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; |
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 |
6xpsr8v27pmy2 | insert into WRH$_IOSTAT_FUNCTION (snap_id, dbid, instance_number, function_id, small_read_megabytes, small_write_megabytes, large_read_megabytes, large_write_megabytes, small_read_reqs, small_write_reqs, large_read_reqs, large_write_reqs, number_of_waits, wait_time) (select :snap_id, :dbid, :instance_number, function_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(large_read_reqs) large_read_reqs, sum(large_write_reqs) large_write_reqs, sum(number_of_waits) number_of_waits, sum(wait_time) wait_time from v$iostat_function group by function_id) |
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 |
7gtztzv329wg0 | select c.name, u.name from con$ c, cdef$ cd, user$ u where c.con# = cd.con# and cd.enabled = :1 and c.owner# = u.user# |
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 |
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 |
9ur12dtztw3rx | SELECT TARGET_GUID, DELETE_REQUEST_TIME, DELETE_COMPLETE_TIME FROM MGMT_TARGETS_DELETE DEL WHERE EMD_URL = :B1 OR EXISTS (SELECT 1 FROM MGMT_TARGET_AGENT_ASSOC WHERE TARGET_GUID = DEL.TARGET_GUID AND AGENT_GUID = :B2 ) |
an4593dzvqr4v | select obj#, dataobj#, subpart#, hiboundlen, hiboundval, ts#, file#, block#, pctfree$, pctused$, initrans, maxtrans, flags, analyzetime, samplesize, rowcnt, blkcnt, empcnt, avgspc, chncnt, avgrln, length(bhiboundval), bhiboundval from tabsubpart$ where pobj# = :1 order by subpart# |
brwtjmaw6pu3h | UPDATE MGMT_JOB_EXECUTION SET STEP_STATUS = :B4 , DISPATCHER_ID=:B3 , OMS_NAME=:B2 WHERE STEP_ID = :B1 |
bsa0wjtftg3uw | select file# from file$ where ts#=:1 |
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 |
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 |
dw7vptwvsn6bw | select /* four */
/*+ 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 |
dwypdxsjg4juq | select /*+ index_ss(obj$ i_obj2) */ obj#, type#, ctime, mtime, stime, status, dataobj#, flags, oid$, spare1, spare2 from obj$ where owner#=:1 and name=:2 and namespace=:3 and remoteowner is null and linkname is null and subname is null |
g4vrdfn14tp29 | SELECT PROPERTY FROM SYS.WRI$_ADV_TASKS WHERE ID = :B1 |
Statistic | Total | per Second | per Trans |
Batched IO (bound) vector count | 2 | 0.02 | 0.03 |
Batched IO (full) vector count | 0 | 0.00 | 0.00 |
Batched IO block miss count | 12 | 0.15 | 0.17 |
Batched IO buffer defrag count | 1 | 0.01 | 0.01 |
Batched IO double miss count | 2 | 0.02 | 0.03 |
Batched IO same unit count | 7 | 0.09 | 0.10 |
Batched IO single block count | 1 | 0.01 | 0.01 |
Batched IO slow jump count | 0 | 0.00 | 0.00 |
Batched IO vector block count | 4 | 0.05 | 0.06 |
Batched IO vector read count | 1 | 0.01 | 0.01 |
Block Cleanout Optim referenced | 17 | 0.21 | 0.24 |
CCursor + sql area evicted | 0 | 0.00 | 0.00 |
CPU used by this session | 20,705 | 255.31 | 295.79 |
CPU used when call started | 108,245 | 1,334.73 | 1,546.36 |
CR blocks created | 10 | 0.12 | 0.14 |
Cached Commit SCN referenced | 0 | 0.00 | 0.00 |
Commit SCN cached | 5 | 0.06 | 0.07 |
DB time | 43,859 | 540.81 | 626.56 |
DBWR checkpoint buffers written | 7 | 0.09 | 0.10 |
DBWR checkpoints | 1 | 0.01 | 0.01 |
DBWR fusion writes | 295 | 3.64 | 4.21 |
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 | 1 | 0.01 | 0.01 |
DBWR undo block writes | 6 | 0.07 | 0.09 |
DFO trees parallelized | 10 | 0.12 | 0.14 |
DML statements parallelized | 0 | 0.00 | 0.00 |
HSC Heap Segment Block Changes | 407 | 5.02 | 5.81 |
HSC IDL Compressed Blocks | 0 | 0.00 | 0.00 |
Heap Segment Array Inserts | 108 | 1.33 | 1.54 |
Heap Segment Array Updates | 5 | 0.06 | 0.07 |
PX local messages recv'd | 124 | 1.53 | 1.77 |
PX local messages sent | 124 | 1.53 | 1.77 |
PX remote messages recv'd | 346 | 4.27 | 4.94 |
PX remote messages sent | 442 | 5.45 | 6.31 |
Parallel operations downgraded 1 to 25 pct | 0 | 0.00 | 0.00 |
Parallel operations not downgraded | 10 | 0.12 | 0.14 |
RowCR - row contention | 1 | 0.01 | 0.01 |
RowCR attempts | 4 | 0.05 | 0.06 |
RowCR hits | 3 | 0.04 | 0.04 |
SMON posted for undo segment shrink | 0 | 0.00 | 0.00 |
SQL*Net roundtrips to/from client | 239 | 2.95 | 3.41 |
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 | 71 | 0.88 | 1.01 |
application wait time | 1 | 0.01 | 0.01 |
background timeouts | 497 | 6.13 | 7.10 |
branch node splits | 0 | 0.00 | 0.00 |
buffer is not pinned count | 4,165 | 51.36 | 59.50 |
buffer is pinned count | 15,069 | 185.81 | 215.27 |
bytes received via SQL*Net from client | 72,983 | 899.92 | 1,042.61 |
bytes sent via SQL*Net to client | 30,728 | 378.89 | 438.97 |
calls to get snapshot scn: kcmgss | 18,784 | 231.62 | 268.34 |
calls to kcmgas | 888 | 10.95 | 12.69 |
calls to kcmgcs | 75 | 0.92 | 1.07 |
cell blocks helped by minscn optimization | 1,910,153 | 23,553.35 | 27,287.90 |
cell blocks processed by cache layer | 1,910,153 | 23,553.35 | 27,287.90 |
cell blocks processed by data layer | 1,910,153 | 23,553.35 | 27,287.90 |
cell blocks processed by txn layer | 1,910,153 | 23,553.35 | 27,287.90 |
cell physical IO bytes eligible for predicate offload | 15,612,837,888 | 192,515,787.96 | 223,040,541.26 |
cell physical IO bytes saved during optimized file creation | 0 | 0.00 | 0.00 |
cell physical IO interconnect bytes | 11,822,537,416 | 145,779,077.62 | 168,893,391.66 |
cell scans | 992 | 12.23 | 14.17 |
change write time | 2 | 0.02 | 0.03 |
cleanout - number of ktugct calls | 84 | 1.04 | 1.20 |
cleanouts and rollbacks - consistent read gets | 8 | 0.10 | 0.11 |
cleanouts only - consistent read gets | 5 | 0.06 | 0.07 |
cluster key scan block gets | 77 | 0.95 | 1.10 |
cluster key scans | 64 | 0.79 | 0.91 |
cluster wait time | 19 | 0.23 | 0.27 |
commit batch/immediate performed | 7 | 0.09 | 0.10 |
commit batch/immediate requested | 7 | 0.09 | 0.10 |
commit cleanout failures: block lost | 22 | 0.27 | 0.31 |
commit cleanout failures: callback failure | 4 | 0.05 | 0.06 |
commit cleanout failures: cannot pin | 0 | 0.00 | 0.00 |
commit cleanouts | 350 | 4.32 | 5.00 |
commit cleanouts successfully completed | 324 | 4.00 | 4.63 |
commit immediate performed | 7 | 0.09 | 0.10 |
commit immediate requested | 7 | 0.09 | 0.10 |
commit txn count during cleanout | 71 | 0.88 | 1.01 |
concurrency wait time | 10 | 0.12 | 0.14 |
consistent changes | 26 | 0.32 | 0.37 |
consistent gets | 1,933,696 | 23,843.65 | 27,624.23 |
consistent gets - examination | 2,206 | 27.20 | 31.51 |
consistent gets direct | 1,905,864 | 23,500.46 | 27,226.63 |
consistent gets from cache | 27,832 | 343.19 | 397.60 |
consistent gets from cache (fastpath) | 25,065 | 309.07 | 358.07 |
cursor authentications | 68 | 0.84 | 0.97 |
data blocks consistent reads - undo records applied | 10 | 0.12 | 0.14 |
db block changes | 2,707 | 33.38 | 38.67 |
db block gets | 2,822 | 34.80 | 40.31 |
db block gets direct | 0 | 0.00 | 0.00 |
db block gets from cache | 2,822 | 34.80 | 40.31 |
db block gets from cache (fastpath) | 815 | 10.05 | 11.64 |
deferred (CURRENT) block cleanout applications | 192 | 2.37 | 2.74 |
enqueue conversions | 202 | 2.49 | 2.89 |
enqueue releases | 3,278 | 40.42 | 46.83 |
enqueue requests | 3,311 | 40.83 | 47.30 |
enqueue timeouts | 33 | 0.41 | 0.47 |
enqueue waits | 267 | 3.29 | 3.81 |
exchange deadlocks | 1 | 0.01 | 0.01 |
execute count | 1,259 | 15.52 | 17.99 |
failed probes on index block reclamation | 0 | 0.00 | 0.00 |
free buffer inspected | 0 | 0.00 | 0.00 |
free buffer requested | 3,884 | 47.89 | 55.49 |
gc CPU used by this session | 37 | 0.46 | 0.53 |
gc blocks lost | 0 | 0.00 | 0.00 |
gc cr block build time | 0 | 0.00 | 0.00 |
gc cr block flush time | 1 | 0.01 | 0.01 |
gc cr block receive time | 4 | 0.05 | 0.06 |
gc cr block send time | 1 | 0.01 | 0.01 |
gc cr blocks received | 223 | 2.75 | 3.19 |
gc cr blocks served | 174 | 2.15 | 2.49 |
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 | 337 | 4.16 | 4.81 |
gc current block send time | 3 | 0.04 | 0.04 |
gc current blocks received | 2,126 | 26.21 | 30.37 |
gc current blocks served | 660 | 8.14 | 9.43 |
gc local grants | 25 | 0.31 | 0.36 |
gc reader bypass grants | 19 | 0.23 | 0.27 |
gc remote grants | 149 | 1.84 | 2.13 |
gcs messages sent | 6,986 | 86.14 | 99.80 |
ges messages sent | 3,496 | 43.11 | 49.94 |
global enqueue get time | 58 | 0.72 | 0.83 |
global enqueue gets async | 61 | 0.75 | 0.87 |
global enqueue gets sync | 4,631 | 57.10 | 66.16 |
global enqueue releases | 4,506 | 55.56 | 64.37 |
heap block compress | 9 | 0.11 | 0.13 |
hot buffers moved to head of LRU | 0 | 0.00 | 0.00 |
immediate (CR) block cleanout applications | 13 | 0.16 | 0.19 |
immediate (CURRENT) block cleanout applications | 86 | 1.06 | 1.23 |
index crx upgrade (positioned) | 73 | 0.90 | 1.04 |
index crx upgrade (prefetch) | 0 | 0.00 | 0.00 |
index fast full scans (full) | 0 | 0.00 | 0.00 |
index fetch by key | 917 | 11.31 | 13.10 |
index scans kdiixs1 | 5,087 | 62.73 | 72.67 |
leaf node 90-10 splits | 18 | 0.22 | 0.26 |
leaf node splits | 21 | 0.26 | 0.30 |
lob reads | 0 | 0.00 | 0.00 |
lob writes | 2 | 0.02 | 0.03 |
lob writes unaligned | 2 | 0.02 | 0.03 |
logons cumulative | 81 | 1.00 | 1.16 |
messages received | 191 | 2.36 | 2.73 |
messages sent | 191 | 2.36 | 2.73 |
min active SCN optimization applied to CR | 0 | 0.00 | 0.00 |
no work - consistent read gets | 11,997 | 147.93 | 171.39 |
opened cursors cumulative | 1,139 | 14.04 | 16.27 |
parse count (describe) | 1 | 0.01 | 0.01 |
parse count (failures) | 0 | 0.00 | 0.00 |
parse count (hard) | 70 | 0.86 | 1.00 |
parse count (total) | 468 | 5.77 | 6.69 |
parse time cpu | 8 | 0.10 | 0.11 |
parse time elapsed | 5 | 0.06 | 0.07 |
physical IO disk bytes | 19,160,519,680 | 236,260,862.40 | 273,721,709.71 |
physical read IO requests | 24,819 | 306.03 | 354.56 |
physical read bytes | 16,784,769,024 | 206,966,411.72 | 239,782,414.63 |
physical read total IO requests | 26,145 | 322.38 | 373.50 |
physical read total bytes | 16,806,322,176 | 207,232,175.19 | 240,090,316.80 |
physical read total multi block requests | 24,616 | 303.53 | 351.66 |
physical reads | 2,048,922 | 25,264.45 | 29,270.31 |
physical reads cache | 86 | 1.06 | 1.23 |
physical reads cache prefetch | 48 | 0.59 | 0.69 |
physical reads direct | 2,048,836 | 25,263.39 | 29,269.09 |
physical reads direct temporary tablespace | 142,972 | 1,762.93 | 2,042.46 |
physical reads prefetch warmup | 48 | 0.59 | 0.69 |
physical write IO requests | 4,909 | 60.53 | 70.13 |
physical write bytes | 1,173,716,992 | 14,472,644.45 | 16,767,385.60 |
physical write total IO requests | 5,051 | 62.28 | 72.16 |
physical write total bytes | 1,176,435,200 | 14,506,161.60 | 16,806,217.14 |
physical write total multi block requests | 4,614 | 56.89 | 65.91 |
physical writes | 143,276 | 1,766.68 | 2,046.80 |
physical writes direct | 142,972 | 1,762.93 | 2,042.46 |
physical writes direct (lob) | 0 | 0.00 | 0.00 |
physical writes direct temporary tablespace | 142,972 | 1,762.93 | 2,042.46 |
physical writes from cache | 304 | 3.75 | 4.34 |
physical writes non checkpoint | 143,272 | 1,766.63 | 2,046.74 |
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 | 10 | 0.12 | 0.14 |
recovery blocks read | 0 | 0.00 | 0.00 |
recursive calls | 6,835 | 84.28 | 97.64 |
recursive cpu usage | 20,519 | 253.01 | 293.13 |
redo blocks checksummed by FG (exclusive) | 1,875 | 23.12 | 26.79 |
redo blocks written | 2,717 | 33.50 | 38.81 |
redo entries | 1,512 | 18.64 | 21.60 |
redo ordering marks | 60 | 0.74 | 0.86 |
redo size | 1,270,896 | 15,670.92 | 18,155.66 |
redo size for direct writes | 0 | 0.00 | 0.00 |
redo subscn max counts | 103 | 1.27 | 1.47 |
redo synch time | 1 | 0.01 | 0.01 |
redo synch writes | 13 | 0.16 | 0.19 |
redo wastage | 14,324 | 176.62 | 204.63 |
redo write broadcast ack time | 0 | 0.00 | 0.00 |
redo write time | 5 | 0.06 | 0.07 |
redo writer latching time | 0 | 0.00 | 0.00 |
redo writes | 61 | 0.75 | 0.87 |
rollback changes - undo records applied | 53 | 0.65 | 0.76 |
rollbacks only - consistent read gets | 2 | 0.02 | 0.03 |
rows fetched via callback | 650 | 8.01 | 9.29 |
session connect time | 0 | 0.00 | 0.00 |
session cursor cache hits | 684 | 8.43 | 9.77 |
session logical reads | 1,936,518 | 23,878.44 | 27,664.54 |
shared hash latch upgrades - no wait | 427 | 5.27 | 6.10 |
shared hash latch upgrades - wait | 0 | 0.00 | 0.00 |
sorts (disk) | 0 | 0.00 | 0.00 |
sorts (memory) | 4,244 | 52.33 | 60.63 |
sorts (rows) | 11,382 | 140.35 | 162.60 |
sql area evicted | 123 | 1.52 | 1.76 |
sql area purged | 0 | 0.00 | 0.00 |
switch current to new buffer | 16 | 0.20 | 0.23 |
table fetch by rowid | 8,726 | 107.60 | 124.66 |
table fetch continued row | 3 | 0.04 | 0.04 |
table scan blocks gotten | 1,907,180 | 23,516.69 | 27,245.43 |
table scan rows gotten | 234,131,458 | 2,886,983.29 | 3,344,735.11 |
table scans (direct read) | 992 | 12.23 | 14.17 |
table scans (long tables) | 992 | 12.23 | 14.17 |
table scans (rowid ranges) | 0 | 0.00 | 0.00 |
table scans (short tables) | 65 | 0.80 | 0.93 |
total number of times SMON posted | 0 | 0.00 | 0.00 |
transaction lock background get time | 0 | 0.00 | 0.00 |
transaction lock background gets | 0 | 0.00 | 0.00 |
transaction lock foreground requests | 0 | 0.00 | 0.00 |
transaction lock foreground wait time | 0 | 0.00 | 0.00 |
transaction rollbacks | 7 | 0.09 | 0.10 |
undo change vector size | 436,260 | 5,379.35 | 6,232.29 |
user I/O wait time | 3,853 | 47.51 | 55.04 |
user calls | 655 | 8.08 | 9.36 |
user commits | 30 | 0.37 | 0.43 |
user rollbacks | 40 | 0.49 | 0.57 |
workarea executions - onepass | 0 | 0.00 | 0.00 |
workarea executions - optimal | 4,243 | 52.32 | 60.61 |
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 | 135 | 0.00 | | 0 | 0 | |
ASM map operation freelist | 36 | 0.00 | | 0 | 0 | |
ASM map operation hash table | 72,689 | 0.00 | 0.00 | 0 | 0 | |
ASM network background latch | 32 | 0.00 | | 0 | 0 | |
AWR Alerted Metric Element list | 814 | 0.00 | | 0 | 0 | |
Change Notification Hash table latch | 27 | 0.00 | | 0 | 0 | |
Consistent RBA | 61 | 0.00 | | 0 | 0 | |
DML lock allocation | 498 | 0.00 | | 0 | 0 | |
Event Group Locks | 1 | 0.00 | | 0 | 0 | |
FOB s.o list latch | 27 | 0.00 | | 0 | 0 | |
File State Object Pool Parent Latch | 1 | 0.00 | | 0 | 0 | |
IPC stats buffer allocation latch | 201 | 0.00 | | 0 | 221 | 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 | 18 | 0.00 | | 0 | 0 | |
JS broadcast drop buf latch | 18 | 0.00 | | 0 | 0 | |
JS broadcast load blnc latch | 16 | 0.00 | | 0 | 0 | |
JS queue access latch | 1 | 0.00 | | 0 | 0 | |
JS queue state obj latch | 864 | 0.00 | | 0 | 0 | |
JS slv state obj latch | 1 | 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 | 616 | 0.00 | | 0 | 0 | |
KFMD SGA | 1,785 | 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 | 1,959 | 0.15 | 0.00 | 0 | 685 | 0.15 |
KJCT flow control latch | 13,366 | 0.07 | 0.00 | 0 | 0 | |
KMG MMAN ready and startup request latch | 27 | 0.00 | | 0 | 0 | |
KSXR large replies | 8 | 0.00 | | 0 | 0 | |
KTF sga latch | 3 | 0.00 | | 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 | 27 | 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 | 6,137 | 0.00 | | 0 | 0 | |
Mutex | 1 | 0.00 | | 0 | 0 | |
Mutex Stats | 1 | 0.00 | | 0 | 0 | |
OS process | 1 | 0.00 | | 0 | 0 | |
OS process allocation | 27 | 0.00 | | 0 | 0 | |
PL/SQL warning settings | 87 | 0.00 | | 0 | 0 | |
QMT | 1 | 0.00 | | 0 | 0 | |
Real-time plan statistics latch | 129 | 1.55 | 0.00 | 0 | 0 | |
SGA IO buffer pool latch | 2 | 0.00 | | 0 | 2 | 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 | 1 | 0.00 | | 0 | 27 | 0.00 |
SQL memory manager workarea list latch | 2,025 | 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,019 | 0.00 | | 0 | 0 | |
active service list | 4,022 | 0.07 | 0.00 | 0 | 30 | 0.00 |
archive control | 9 | 0.00 | | 0 | 0 | |
buffer pool | 1 | 0.00 | | 0 | 0 | |
business card | 20 | 0.00 | | 0 | 0 | |
cache buffer handles | 128 | 0.00 | | 0 | 0 | |
cache buffers chains | 73,976 | 0.00 | | 0 | 9,269 | 0.00 |
cache buffers lru chain | 6,214 | 0.03 | 0.00 | 0 | 6,766 | 0.00 |
cas latch | 1 | 0.00 | | 0 | 0 | |
change notification client cache latch | 1 | 0.00 | | 0 | 0 | |
channel handle pool latch | 3 | 0.00 | | 0 | 0 | |
channel operations parent latch | 58,854 | 0.00 | 0.00 | 0 | 0 | |
checkpoint queue latch | 3,711 | 0.00 | | 0 | 565 | 0.00 |
client/application info | 414 | 0.00 | | 0 | 0 | |
commit callback allocation | 1 | 0.00 | | 0 | 0 | |
compile environment latch | 81 | 0.00 | | 0 | 0 | |
corrupted undo seg lock | 166 | 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 | 1 | 0.00 | | 0 | 0 | |
cvmap freelist lock | 1 | 0.00 | | 0 | 0 | |
deferred cleanup latch | 1 | 0.00 | | 0 | 0 | |
dml lock allocation | 1 | 0.00 | | 0 | 0 | |
done queue latch | 1 | 0.00 | | 0 | 0 | |
dummy allocation | 162 | 0.00 | | 0 | 0 | |
enqueue hash chains | 10,744 | 0.07 | 0.14 | 0 | 0 | |
enqueues | 5,846 | 0.05 | 0.00 | 0 | 0 | |
error message lists | 169 | 0.00 | | 0 | 0 | |
fifth spare latch | 1 | 0.00 | | 0 | 0 | |
file cache latch | 181 | 0.00 | | 0 | 0 | |
flashback copy | 1 | 0.00 | | 0 | 0 | |
gc element | 11,035 | 0.00 | | 0 | 1 | 0.00 |
gcs commit scn state | 1 | 0.00 | | 0 | 0 | |
gcs opaque info freelist | 1,702 | 0.00 | | 0 | 0 | |
gcs partitioned table hash | 241,468 | 0.00 | 0.00 | 0 | 12 | 0.00 |
gcs pcm hashed value bucket hash | 1 | 0.00 | | 0 | 0 | |
gcs remaster request queue | 10 | 0.00 | | 0 | 0 | |
gcs remastering latch | 319 | 0.00 | | 0 | 0 | |
gcs resource freelist | 2 | 0.00 | | 0 | 49 | 0.00 |
gcs resource hash | 11,198 | 0.00 | | 0 | 0 | |
gcs resource scan list | 1 | 0.00 | | 0 | 0 | |
gcs shadows freelist | 1,010 | 0.00 | | 0 | 1,251 | 0.00 |
ges caches resource lists | 4,497 | 0.00 | | 0 | 2,150 | 0.00 |
ges deadlock list | 1,270 | 0.00 | | 0 | 0 | |
ges domain table | 9,054 | 0.00 | | 0 | 0 | |
ges enqueue table freelist | 10,094 | 0.00 | | 0 | 0 | |
ges group table | 13,679 | 0.00 | | 0 | 0 | |
ges process hash list | 8,565 | 0.00 | | 0 | 0 | |
ges process parent latch | 20,737 | 0.00 | | 0 | 0 | |
ges resource hash list | 20,001 | 0.05 | 0.10 | 0 | 1,129 | 0.09 |
ges resource scan list | 1 | 0.00 | | 0 | 0 | |
ges resource table freelist | 2,046 | 0.00 | | 0 | 0 | |
ges timeout list | 224 | 0.00 | | 0 | 30 | 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,304 | 0.00 |
hash table modification latch | 2 | 0.00 | | 0 | 0 | |
heartbeat check | 1 | 0.00 | | 0 | 16 | 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 | 19 | 0.00 | | 0 | 0 | |
k2q global data latch | 54 | 0.00 | | 0 | 0 | |
k2q lock allocation | 1 | 0.00 | | 0 | 0 | |
kcfis stats shared latch | 4 | 0.00 | | 0 | 0 | |
kdlx hb parent latch | 1 | 0.00 | | 0 | 0 | |
kgb parent | 1 | 0.00 | | 0 | 0 | |
kks stats | 692 | 0.00 | | 0 | 0 | |
kokc descriptor allocation latch | 76 | 0.00 | | 0 | 0 | |
ksfv messages | 1 | 0.00 | | 0 | 0 | |
ksim membership request latch | 80 | 0.00 | | 0 | 81 | 0.00 |
kss move lock | 1 | 0.00 | | 0 | 0 | |
ksuosstats global area | 9 | 0.00 | | 0 | 0 | |
ksv allocation latch | 1 | 0.00 | | 0 | 0 | |
ksv class latch | 97 | 0.00 | | 0 | 0 | |
ksv msg queue latch | 1 | 0.00 | | 0 | 0 | |
ksz_so allocation latch | 9 | 0.00 | | 0 | 0 | |
kwqbsn:qsga | 3 | 0.00 | | 0 | 0 | |
lgwr LWN SCN | 78 | 0.00 | | 0 | 0 | |
list of block allocation | 21 | 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,141 | 0.00 | | 0 | 0 | |
messages | 5,938 | 0.00 | | 0 | 0 | |
mostly latch-free SCN | 78 | 0.00 | | 0 | 0 | |
msg queue latch | 1 | 0.00 | | 0 | 0 | |
multiblock read objects | 966 | 0.00 | | 0 | 0 | |
name-service memory objects | 404 | 0.00 | | 0 | 0 | |
name-service namespace bucket | 808 | 0.00 | | 0 | 0 | |
name-service pending queue | 56 | 0.00 | | 0 | 0 | |
name-service request queue | 1,078 | 0.00 | | 0 | 0 | |
ncodef allocation latch | 1 | 0.00 | | 0 | 0 | |
object queue header heap | 2,091 | 0.00 | | 0 | 136 | 0.00 |
object queue header operation | 96,717 | 0.00 | | 0 | 0 | |
object stats modification | 3,256 | 0.00 | | 0 | 0 | |
parallel query alloc buffer | 1,163 | 0.00 | | 0 | 0 | |
parallel query stats | 111 | 0.00 | | 0 | 0 | |
parameter list | 12 | 0.00 | | 0 | 0 | |
parameter table management | 161 | 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 | 83 | 0.00 | | 0 | 38 | 0.00 |
process allocation | 362 | 0.00 | | 0 | 0 | |
process queue | 518 | 0.00 | | 0 | 0 | |
process queue reference | 21,536 | 0.01 | 0.00 | 0 | 1,164 | 107.22 |
qmn task queue latch | 12 | 0.00 | | 0 | 0 | |
query server freelists | 359 | 0.00 | | 0 | 0 | |
recovery domain hash list | 1 | 0.00 | | 0 | 0 | |
redo allocation | 218 | 0.00 | | 0 | 1,550 | 0.00 |
redo copy | 1 | 0.00 | | 0 | 1,550 | 0.00 |
redo writing | 287 | 0.00 | | 0 | 0 | |
reid allocation latch | 9 | 0.00 | | 0 | 0 | |
resmgr group change latch | 154 | 0.00 | | 0 | 0 | |
resmgr:active threads | 162 | 0.00 | | 0 | 0 | |
resmgr:actses change group | 82 | 0.00 | | 0 | 0 | |
resmgr:actses change state | 1 | 0.00 | | 0 | 0 | |
resmgr:free threads list | 161 | 0.62 | 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 | 41 | 0.00 | | 0 | 0 | |
resmgr:session queuing | 1 | 0.00 | | 0 | 0 | |
rm cas latch | 1 | 0.00 | | 0 | 0 | |
row cache objects | 33,776 | 0.00 | | 0 | 65 | 0.00 |
second spare latch | 1 | 0.00 | | 0 | 0 | |
sequence cache | 31 | 0.00 | | 0 | 0 | |
session allocation | 5,197 | 0.23 | 0.58 | 0 | 0 | |
session idle bit | 1,431 | 0.00 | | 0 | 0 | |
session queue latch | 1 | 0.00 | | 0 | 0 | |
session state list latch | 162 | 0.62 | 0.00 | 0 | 0 | |
session switching | 2 | 0.00 | | 0 | 0 | |
session timer | 30 | 0.00 | | 0 | 0 | |
shared pool | 19,780 | 0.05 | 0.30 | 0 | 0 | |
shared pool sim alloc | 4 | 0.00 | | 0 | 0 | |
shared pool simulator | 1,877 | 0.00 | | 0 | 0 | |
sim partition latch | 1 | 0.00 | | 0 | 0 | |
simulator hash latch | 1,217 | 0.00 | | 0 | 0 | |
simulator lru latch | 1 | 0.00 | | 0 | 1,198 | 0.00 |
sort extent pool | 1,451 | 0.00 | | 0 | 0 | |
space background task latch | 59 | 0.00 | | 0 | 54 | 0.00 |
state object free list | 2 | 0.00 | | 0 | 0 | |
statistics aggregation | 1,568 | 0.00 | | 0 | 0 | |
storage server table manipulation latch | 67 | 0.00 | | 0 | 0 | |
tablespace key chain | 1,191 | 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 | 1 | 0.00 | | 0 | 0 | |
transaction allocation | 8 | 0.00 | | 0 | 0 | |
undo global data | 534 | 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 | |