SQL Id | SQL Text |
084n00125zh7c |
SELECT count(*) over () as total_count, sd_xe_ash_nm.event_name, sd_xe_ash_nm.event_id, sd_xe_ash_nm.parameter1 as p1text, (CASE WHEN (sd_xe_ash_nm.parameter1 is NULL OR sd_xe_ash_nm.parameter1 = '0') THEN 0 ELSE 1 END) as p1valid, sd_xe_ash_nm.parameter2 as p2text, (CASE WHEN (sd_xe_ash_nm.parameter2 is NULL OR sd_xe_ash_nm.parameter2 = '0') THEN 0 ELSE 1 END) as p2valid, sd_xe_ash_nm.parameter3 as p3text, (CASE WHEN (sd_xe_ash_nm.parameter3 is NULL OR sd_xe_ash_nm.parameter3 = '0') THEN 0 ELSE 1 END) as p3valid, sd_xe_ash_nm.keh_evt_id, nvl(xc.class#, 0) as class_num, sd_xe_ash_nm.wait_class_id, nvl(xc.keh_id, 0) as keh_ecl_id, sd_xe_ash_nm.ash_cnt, sd_xe_ash_nm.fg_cnt, sd_xe_ash_nm.fg_wts_diff, sd_xe_ash_nm.fg_tmo_diff, sd_xe_ash_nm.fg_tim_wait_diff, sd_xe_ash_nm.tot_wts_diff, sd_xe_ash_nm.tot_tmo_diff, sd_xe_ash_nm.tot_tim_wait_diff FROM ( SELECT sd_xe_ash.*, evtname.event_name, evtname.wait_class_id, evtname.parameter1, evtname.parameter2, evtname.parameter3 FROM ( SELECT sd_xe.*, nvl(ash.cnt, 0) as ash_cnt, nvl(ash.fg_cnt, 0) as fg_cnt FROM ( SELECT nvl(xe.k
eh_id, 0) as keh_evt_id, nvl(sd.event_id, xe.event_hash) as event_id, nvl(sd.fg_wts_diff, 0) as fg_wts_diff, nvl(sd.fg_tmo_diff, 0) as fg_tmo_diff, nvl(sd.fg_tim_wait_diff, 0) as fg_tim_wait_diff, nvl(sd.tot_wts_diff, 0) as tot_wts_diff, nvl(sd.tot_tmo_diff, 0) as tot_tmo_diff, nvl(sd.tot_tim_wait_diff, 0) as tot_tim_wait_diff FROM ( SELECT endsn.event_id as event_id, sum(endsn.total_waits_fg - nvl(begsn.total_waits_fg, 0)) as fg_wts_diff, sum(endsn.total_timeouts_fg - nvl(begsn.total_timeouts_fg, 0)) as fg_tmo_diff, sum(endsn.time_waited_micro_fg - nvl(begsn.time_waited_micro_fg, 0)) as fg_tim_wait_diff, sum(endsn.total_waits - nvl(begsn.total_waits, 0)) as tot_wts_diff, sum(endsn.total_timeouts - nvl(begsn.total_timeouts, 0)) as tot_tmo_diff, sum(endsn.time_waited_micro - nvl(begsn.time_waited_micro, 0)) as tot_tim_wait_diff FROM ( SELECT * FROM WRH$_SYSTEM_EVENT esi WHERE esi.dbid = :dbid AND esi.snap_id = :eid ) endsn LEFT OUTER JOIN ( SELECT * FROM WRH$_SYSTEM_EVENT bsi WHERE bsi.dbid = :dbid AND bsi.snap_id = :bid ) begsn ON (endsn.event_id = begsn.event_id AND endsn.instance_number = begsn.instance_number) GROUP BY endsn.event_id ) sd FULL OUTER JOIN X$KEHEVTMAP xe ON sd.event_id =
xe.event_hash ) sd_xe LEFT OUTER JOIN (SELECT a.event_id, count(*) as cnt, sum(decode(a.session_type, 1, 1, 0)) as fg_cnt FROM WRH$_ACTIVE_SESSION_HISTORY a WHERE a.dbid = :dbid AND a.snap_id > :bid AND a.snap_id <= :eid and a.wait_time = 0 GROUP BY a.event_id) ash ON sd_xe.event_id = ash.event_id ) sd_xe_ash, WRH$_EVENT_NAME evtname WHERE evtname.event_id = sd_xe_ash.event_id and evtname.event_id > 0 and evtname.dbid = :dbid ) sd_xe_ash_nm, X$KEHECLMAP xc WHERE sd_xe_ash_nm.wait_class_id = xc.class_hash ORDER BY sd_xe_ash_nm.wait_class_id, sd_xe_ash_nm.fg_tim_wait_diff DESC, sd_xe_ash_nm.event_id |
0h6b2sajwb74n | select privilege#, level from sysauth$ connect by grantee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0 |
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'
|
0ws7ahf1d78qa | select SYS_CONTEXT('USERENV', 'SERVER_HOST'), SYS_CONTEXT('USERENV', 'DB_UNIQUE_NAME'), SYS_CONTEXT('USERENV', 'INSTANCE_NAME'), SYS_CONTEXT('USERENV', 'SERVICE_NAME'), INSTANCE_NUMBER, STARTUP_TIME, SYS_CONTEXT('USERENV', 'DB_DOMAIN') from v$instance where INSTANCE_NAME=SYS_CONTEXT('USERENV', 'INSTANCE_NAME') |
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)
|
1mjhyad05m8pf | SELECT value
FROM gv$osstat
WHERE inst_id = :p1 and stat_name='NUM_CPU_CORES'
|
1uk5m5qbzj1vt | BEGIN dbms_workload_repository.create_snapshot; END;
|
1ytruncyx2kdb | BEGIN MGMT_HTTP_SESSION.session_expired(:1); END; |
2afsg03va7jtm |
INSERT /*+ APPEND */ INTO WRH$_ACTIVE_SESSION_HISTORY ( snap_id, dbid, instance_number, sample_id, sample_time , session_id, session_serial#, session_type , flags , user_id , sql_id, sql_child_number, sql_opcode, force_matching_signature , top_level_sql_id, top_level_sql_opcode , sql_plan_hash_value, sql_plan_line_id , sql_plan_operation#, sql_plan_options# , sql_exec_id, sql_exec_start , plsql_entry_object_id, plsql_entry_subprogram_id , plsql_object_id, plsql_subprogram_id , qc_instance_id, qc_session_id, qc_session_serial# , event_id, seq#, p1, p2, p3 , wait_time, time_waited , blocking_session, blocking_session_serial#, blocking_inst_id , current_obj#, current_file#, current_block#, current_row# , consumer_group_id, xid, remote_instance#, time_model , service_hash, program, module, action, client_id, ecid ) (SELECT :snap_id, :dbid, :instance_number, a.sample_id, a.sample_time , a.session_id, a.session_serial#, a.session_type , decode(a.flags, 0, to_number(NULL), a.flags) , a.user_id , a.sql_id, a.sql_child_number, a.sql_opcode, a.force_matching_signature , a.top_level_sql_id, a.top_level_sql_opcode , a.sql_plan_hash_value, a.sql_plan_line_id , a.sql_plan_operation#, a.sql_plan_options# , a.sql_exec_id, a.sql_exec_start , a.plsql_entry_object_id, a.plsql_entry_subprogram_id , a.plsql_object_id, a.plsql_subprogram_id , a.qc_instance_id, a.qc_session_id, a.qc_session_serial# , a
.event_id, a.seq#, a.p1, a.p2, a.p3 , a.wait_time, a.time_waited , a.blocking_session, a.blocking_session_serial#, a.blocking_inst_id , a.current_obj#, a.current_file#, a.current_block#, a.current_row# , a.consumer_group_id, a.xid, a.remote_instance#, a.time_model , a.service_hash , substrb(a.program, 1, 64) , a.module, a.action, a.client_id, a.ecid FROM x$ash a, (SELECT h.sample_addr, h.sample_id FROM x$kewash h WHERE ( (h.sample_id >= :begin_flushing) and (h.sample_id < :latest_sample_id) ) and (MOD(h.sample_id, :disk_filter_ratio) = 0) ) shdr WHERE shdr.sample_addr = a.sample_addr and shdr.sample_id = a.sample_id) |
2gxbvynrd71dr | INSERT INTO sys.wri$_adv_rec_actions (task_id, rec_id, act_id) VALUES (:1, :2, :3) |
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) |
3sqgkcng6vx8r | INSERT INTO sys.wri$_adv_rationale (id, task_id, rec_id, obj_id, impact_msg_id, impact_val, msg_id, type, attr1, attr2, attr3, attr4, attr5, exec_name) VALUES (:1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :12, ' ', :13) RETURNING rowid INTO :14 |
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 |
5cdjt2acrtjjg |
SELECT /*+ NO_MERGE(map) USE_HASH(map) */ p.parameter_hash as parameter_hash, max(map.parameter_name) as parameter_name, max (map.keh_id) as keh_id, max (case when p.snap_id = :bid then upper(p.value) else null end) as first_value, max (case when p.snap_id = :eid then upper(p.value) else null end) as last_value, max (case when p.isdefault = 'TRUE' then upper(p.value) else null end) as default_value, max (upper(p.value)) as max_value, min (upper(p.value)) as min_value, max (case when p.snap_id = :bid then decode(p.ismodified, 'FALSE', 0, 'MODIFIED', 1, 4) else null end) as first_is_mod, max (case when p.snap_id = :eid then decode(p.ismodified, 'FALSE', 0, 'MODIFIED', 1, 4) else null end) as last_is_mod FROM ( SELECT /*+ USE_HASH(xmap) */ xmap.keh_id as keh_id, xmap.parameter_hash as parameter_hash, pn.parameter_name as parameter_name FROM X$KEHPRMMAP xmap , WRH$_PARAMETER_NAME pn WHERE pn.dbid = :dbid AND pn.parameter_hash = xmap.parameter_hash ) map, WRH$_PARAMETER p WHERE p.parameter_hash = map.parameter_hash AND p.dbid = :dbid AND p.snap_id >= :bid AND p.snap_id <= :eid GROUP BY p.parameter_hash
|
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 |
6ajkhukk78nsr | begin prvt_hdm.auto_execute( :dbid, :inst_num , :end_snap_id ); end; |
6xvp6nxs4a9n4 | select nvl(sum(space), 0) from recyclebin$ where ts# = :1 |
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 |
7gs8x44r7mpnb | INSERT INTO sys.wri$_adv_actions (id, task_id, obj_id, command, msg_id, flags, attr1, attr2, attr3, attr4, attr5, attr6, num_attr1, num_attr2, num_attr3, num_attr4, num_attr5, exec_name) VALUES (:1, :2, :3, :4, :5, :6, :7, :8, :9, :10, ' ', ' ', :11, :12, :13, :14, :15, :16) RETURNING rowid INTO :17 |
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 |
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'
|
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 |
94zfpcfa9qk2g | SELECT sum(s2.writes_mttr - s1.writes_mttr), sum(s2.writes_logfile_size - s1.writes_logfile_size), sum(s2.WRITES_LOG_CHECKPOINT_SETTINGS + s2.WRITES_OTHER_SETTINGS) - sum(s1.WRITES_LOG_CHECKPOINT_SETTINGS + s1.WRITES_OTHER_SETTINGS) FROM WRH$_INSTANCE_RECOVERY s1 , WRH$_INSTANCE_RECOVERY s2 WHERE s2.dbid = :dbid AND s2.snap_id = :eid AND s1.dbid = :dbid AND s1.instance_number = s2.instance_number AND s1.snap_id = :bid |
972qhvq36awwy | SELECT startsn.stat_id, smap.keh_id, sum(GREATEST( 0, (endsn.value - startsn.value) )) as value_diff FROM WRH$_SYSSTAT startsn , WRH$_SYSSTAT endsn , X$KEHSYSMAP smap WHERE startsn.stat_id = endsn.stat_id and startsn.stat_id = smap.statistic_hash and endsn.dbid = :dbid AND endsn.snap_id = :eid AND startsn.dbid = :dbid AND startsn.instance_number = endsn.instance_number AND startsn.snap_id = :bid GROUP BY startsn.stat_id, smap.keh_id ORDER BY startsn.stat_id ASC |
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
|
arty65g64fmt7 | select /* one */
/*+ 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 |
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 |
c4nhd1ntptxq7 | select message_level, sequence_id, time_suggested from WRI$_ALERT_OUTSTANDING where reason_id = :1 and object_id = :2 and subobject_id = :3 and internal_instance_number = :4 |
csnp95dz2r8ss | select file#, block# from recyclebin$ where ts# = :1 and file# != 0 and block# != 0 and space = 0 |
f80h0xb1qvbsk | SELECT sys.wri$_adv_seq_msggroup.nextval FROM dual |
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) |
g1m6f233p8bth | 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, :rid, :fdg_id, :keh_id, :dbt, round(:dbt / (1000000 * :sint) , 2), round(((:dbt * 100) / :total_dbt) , 2), 'N', NULL) |
g5vpd5g3y90qv | INSERT INTO sys.wri$_adv_recommendations (id, task_id, finding_id, rank, benefit_msg_id, benefit_val, type, flags, exec_name) VALUES (:1, :2, :3, :4, :5, :6, :7, :8, :9) |
Statistic | Total | per Second | per Trans |
Batched IO (bound) vector count | 3 | 0.02 | 0.08 |
Batched IO (full) vector count | 0 | 0.00 | 0.00 |
Batched IO block miss count | 87 | 0.51 | 2.18 |
Batched IO buffer defrag count | 1 | 0.01 | 0.03 |
Batched IO double miss count | 23 | 0.13 | 0.58 |
Batched IO same unit count | 36 | 0.21 | 0.90 |
Batched IO single block count | 7 | 0.04 | 0.18 |
Batched IO slow jump count | 0 | 0.00 | 0.00 |
Batched IO vector block count | 36 | 0.21 | 0.90 |
Batched IO vector read count | 7 | 0.04 | 0.18 |
Block Cleanout Optim referenced | 36 | 0.21 | 0.90 |
CCursor + sql area evicted | 0 | 0.00 | 0.00 |
CPU used by this session | 104,529 | 613.16 | 2,613.23 |
CPU used when call started | 208,372 | 1,222.30 | 5,209.30 |
CR blocks created | 25 | 0.15 | 0.63 |
Cached Commit SCN referenced | 0 | 0.00 | 0.00 |
Commit SCN cached | 48 | 0.28 | 1.20 |
DB time | 297,826 | 1,747.03 | 7,445.65 |
DBWR checkpoint buffers written | 27 | 0.16 | 0.68 |
DBWR checkpoints | 1 | 0.01 | 0.03 |
DBWR fusion writes | 5 | 0.03 | 0.13 |
DBWR object drop buffers written | 0 | 0.00 | 0.00 |
DBWR parallel query checkpoint buffers written | 0 | 0.00 | 0.00 |
DBWR tablespace checkpoint buffers written | 0 | 0.00 | 0.00 |
DBWR thread checkpoint buffers written | 0 | 0.00 | 0.00 |
DBWR transaction table writes | 4 | 0.02 | 0.10 |
DBWR undo block writes | 5 | 0.03 | 0.13 |
DFO trees parallelized | 129 | 0.76 | 3.23 |
DML statements parallelized | 0 | 0.00 | 0.00 |
Effective IO time | 0 | 0.00 | 0.00 |
HSC Compressed Segment Block Changes | 0 | 0.00 | 0.00 |
HSC Heap Segment Block Changes | 626 | 3.67 | 15.65 |
HSC IDL Compressed Blocks | 0 | 0.00 | 0.00 |
Heap Segment Array Inserts | 116 | 0.68 | 2.90 |
Heap Segment Array Updates | 5 | 0.03 | 0.13 |
LOB table id lookup cache misses | 0 | 0.00 | 0.00 |
Misses for writing mapping | 0 | 0.00 | 0.00 |
Number of read IOs issued | 0 | 0.00 | 0.00 |
PX local messages recv'd | 860 | 5.04 | 21.50 |
PX local messages sent | 860 | 5.04 | 21.50 |
PX remote messages recv'd | 2,042 | 11.98 | 51.05 |
PX remote messages sent | 2,042 | 11.98 | 51.05 |
Parallel operations downgraded 1 to 25 pct | 0 | 0.00 | 0.00 |
Parallel operations downgraded 25 to 50 pct | 0 | 0.00 | 0.00 |
Parallel operations downgraded 75 to 99 pct | 0 | 0.00 | 0.00 |
Parallel operations downgraded to serial | 0 | 0.00 | 0.00 |
Parallel operations not downgraded | 129 | 0.76 | 3.23 |
RowCR attempts | 0 | 0.00 | 0.00 |
RowCR hits | 0 | 0.00 | 0.00 |
SMON posted for dropping temp segment | 0 | 0.00 | 0.00 |
SMON posted for instance recovery | 0 | 0.00 | 0.00 |
SMON posted for undo segment shrink | 0 | 0.00 | 0.00 |
SQL*Net roundtrips to/from client | 383 | 2.25 | 9.58 |
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 | 111 | 0.65 | 2.78 |
application wait time | 42 | 0.25 | 1.05 |
background checkpoints completed | 0 | 0.00 | 0.00 |
background checkpoints started | 0 | 0.00 | 0.00 |
background timeouts | 1,052 | 6.17 | 26.30 |
branch node splits | 0 | 0.00 | 0.00 |
buffer is not pinned count | 4,939 | 28.97 | 123.48 |
buffer is pinned count | 31,496 | 184.75 | 787.40 |
bytes received via SQL*Net from client | 261,427 | 1,533.51 | 6,535.68 |
bytes sent via SQL*Net to client | 166,967 | 979.42 | 4,174.18 |
calls to get snapshot scn: kcmgss | 18,017 | 105.69 | 450.43 |
calls to kcmgas | 707 | 4.15 | 17.68 |
calls to kcmgcs | 666 | 3.91 | 16.65 |
cell blocks helped by minscn optimization | 7,641,804 | 44,826.27 | 191,045.10 |
cell blocks processed by cache layer | 7,641,804 | 44,826.27 | 191,045.10 |
cell blocks processed by data layer | 7,641,804 | 44,826.27 | 191,045.10 |
cell blocks processed by txn layer | 7,641,804 | 44,826.27 | 191,045.10 |
cell physical IO bytes eligible for predicate offload | 62,447,910,912 | 366,314,970.51 | 1,561,197,772.80 |
cell physical IO bytes saved during optimized file creation | 0 | 0.00 | 0.00 |
cell physical IO interconnect bytes | 136,136,558,768 | 798,567,298.43 | 3,403,413,969.20 |
cell scans | 3,968 | 23.28 | 99.20 |
change write time | 2 | 0.01 | 0.05 |
cleanout - number of ktugct calls | 156 | 0.92 | 3.90 |
cleanouts and rollbacks - consistent read gets | 30 | 0.18 | 0.75 |
cleanouts only - consistent read gets | 43 | 0.25 | 1.08 |
cluster key scan block gets | 42 | 0.25 | 1.05 |
cluster key scans | 42 | 0.25 | 1.05 |
cluster wait time | 96 | 0.56 | 2.40 |
commit batch performed | 0 | 0.00 | 0.00 |
commit batch requested | 0 | 0.00 | 0.00 |
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.15 | 0.63 |
commit cleanout failures: buffer being written | 0 | 0.00 | 0.00 |
commit cleanout failures: callback failure | 5 | 0.03 | 0.13 |
commit cleanout failures: cannot pin | 0 | 0.00 | 0.00 |
commit cleanouts | 447 | 2.62 | 11.18 |
commit cleanouts successfully completed | 417 | 2.45 | 10.43 |
commit immediate performed | 0 | 0.00 | 0.00 |
commit immediate requested | 0 | 0.00 | 0.00 |
commit txn count during cleanout | 281 | 1.65 | 7.03 |
concurrency wait time | 1,855 | 10.88 | 46.38 |
consistent changes | 82 | 0.48 | 2.05 |
consistent gets | 7,658,348 | 44,923.32 | 191,458.70 |
consistent gets - examination | 2,280 | 13.37 | 57.00 |
consistent gets direct | 7,623,036 | 44,716.18 | 190,575.90 |
consistent gets from cache | 35,312 | 207.14 | 882.80 |
consistent gets from cache (fastpath) | 31,667 | 185.76 | 791.68 |
current blocks converted for CR | 0 | 0.00 | 0.00 |
cursor authentications | 9 | 0.05 | 0.23 |
data blocks consistent reads - undo records applied | 31 | 0.18 | 0.78 |
db block changes | 4,208 | 24.68 | 105.20 |
db block gets | 4,857 | 28.49 | 121.43 |
db block gets direct | 9 | 0.05 | 0.23 |
db block gets from cache | 4,848 | 28.44 | 121.20 |
db block gets from cache (fastpath) | 1,597 | 9.37 | 39.93 |
deferred (CURRENT) block cleanout applications | 203 | 1.19 | 5.08 |
dirty buffers inspected | 0 | 0.00 | 0.00 |
enqueue conversions | 2,137 | 12.54 | 53.43 |
enqueue releases | 40,157 | 235.56 | 1,003.93 |
enqueue requests | 40,547 | 237.85 | 1,013.68 |
enqueue timeouts | 390 | 2.29 | 9.75 |
enqueue waits | 3,932 | 23.06 | 98.30 |
exchange deadlocks | 0 | 0.00 | 0.00 |
execute count | 1,598 | 9.37 | 39.95 |
failed probes on index block reclamation | 0 | 0.00 | 0.00 |
free buffer inspected | 0 | 0.00 | 0.00 |
free buffer requested | 2,561 | 15.02 | 64.03 |
gc CPU used by this session | 20 | 0.12 | 0.50 |
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 | 251 | 1.47 | 6.28 |
gc cr block send time | 1 | 0.01 | 0.03 |
gc cr blocks received | 1,991 | 11.68 | 49.78 |
gc cr blocks served | 270 | 1.58 | 6.75 |
gc current block flush time | 3 | 0.02 | 0.08 |
gc current block pin time | 0 | 0.00 | 0.00 |
gc current block receive time | 22 | 0.13 | 0.55 |
gc current block send time | 1 | 0.01 | 0.03 |
gc current blocks received | 451 | 2.65 | 11.28 |
gc current blocks served | 447 | 2.62 | 11.18 |
gc local grants | 37 | 0.22 | 0.93 |
gc reader bypass grants | 26 | 0.15 | 0.65 |
gc remote grants | 98 | 0.57 | 2.45 |
gcs messages sent | 4,886 | 28.66 | 122.15 |
ges messages sent | 19,289 | 113.15 | 482.23 |
global enqueue get time | 12,921 | 75.79 | 323.03 |
global enqueue gets async | 759 | 4.45 | 18.98 |
global enqueue gets sync | 43,210 | 253.47 | 1,080.25 |
global enqueue releases | 40,778 | 239.20 | 1,019.45 |
heap block compress | 10 | 0.06 | 0.25 |
hot buffers moved to head of LRU | 0 | 0.00 | 0.00 |
immediate (CR) block cleanout applications | 73 | 0.43 | 1.83 |
immediate (CURRENT) block cleanout applications | 127 | 0.74 | 3.18 |
index crx upgrade (positioned) | 136 | 0.80 | 3.40 |
index crx upgrade (prefetch) | 0 | 0.00 | 0.00 |
index fast full scans (full) | 0 | 0.00 | 0.00 |
index fetch by key | 867 | 5.09 | 21.68 |
index scans kdiixs1 | 5,077 | 29.78 | 126.93 |
leaf node 90-10 splits | 31 | 0.18 | 0.78 |
leaf node splits | 40 | 0.23 | 1.00 |
lob reads | 0 | 0.00 | 0.00 |
lob writes | 65 | 0.38 | 1.63 |
lob writes unaligned | 65 | 0.38 | 1.63 |
logons cumulative | 275 | 1.61 | 6.88 |
messages received | 35,198 | 206.47 | 879.95 |
messages sent | 35,198 | 206.47 | 879.95 |
min active SCN optimization applied to CR | 0 | 0.00 | 0.00 |
no buffer to keep pinned count | 0 | 0.00 | 0.00 |
no work - consistent read gets | 15,439 | 90.56 | 385.98 |
opened cursors cumulative | 1,595 | 9.36 | 39.88 |
parse count (describe) | 2 | 0.01 | 0.05 |
parse count (failures) | 5 | 0.03 | 0.13 |
parse count (hard) | 14 | 0.08 | 0.35 |
parse count (total) | 1,239 | 7.27 | 30.98 |
parse time cpu | 20 | 0.12 | 0.50 |
parse time elapsed | 609 | 3.57 | 15.23 |
physical IO disk bytes | 165,486,289,920 | 970,730,718.22 | 4,137,157,248.00 |
physical read IO requests | 217,524 | 1,275.98 | 5,438.10 |
physical read bytes | 96,791,625,728 | 567,772,740.61 | 2,419,790,643.20 |
physical read total IO requests | 219,158 | 1,285.57 | 5,478.95 |
physical read total bytes | 96,818,225,152 | 567,928,770.92 | 2,420,455,628.80 |
physical read total multi block requests | 216,392 | 1,269.34 | 5,409.80 |
physical reads | 11,815,384 | 69,308.20 | 295,384.60 |
physical reads cache | 1 | 0.01 | 0.03 |
physical reads cache prefetch | 0 | 0.00 | 0.00 |
physical reads direct | 11,815,383 | 69,308.19 | 295,384.58 |
physical reads direct (lob) | 0 | 0.00 | 0.00 |
physical reads direct temporary tablespace | 4,192,347 | 24,592.01 | 104,808.68 |
physical reads prefetch warmup | 0 | 0.00 | 0.00 |
physical write IO requests | 135,202 | 793.09 | 3,380.05 |
physical write bytes | 34,327,764,992 | 201,364,209.58 | 858,194,124.80 |
physical write total IO requests | 135,440 | 794.48 | 3,386.00 |
physical write total bytes | 34,332,557,824 | 201,392,323.99 | 858,313,945.60 |
physical write total multi block requests | 135,177 | 792.94 | 3,379.43 |
physical writes | 4,190,401 | 24,580.59 | 104,760.03 |
physical writes direct | 4,190,372 | 24,580.42 | 104,759.30 |
physical writes direct (lob) | 0 | 0.00 | 0.00 |
physical writes direct temporary tablespace | 4,190,363 | 24,580.37 | 104,759.08 |
physical writes from cache | 29 | 0.17 | 0.73 |
physical writes non checkpoint | 4,190,374 | 24,580.43 | 104,759.35 |
pinned buffers inspected | 0 | 0.00 | 0.00 |
prefetch clients - default | 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 | 106 | 0.62 | 2.65 |
recursive aborts on index block reclamation | 0 | 0.00 | 0.00 |
recursive calls | 42,241 | 247.78 | 1,056.03 |
recursive cpu usage | 103,326 | 606.10 | 2,583.15 |
redo blocks checksummed by FG (exclusive) | 2,484 | 14.57 | 62.10 |
redo blocks written | 3,716 | 21.80 | 92.90 |
redo buffer allocation retries | 0 | 0.00 | 0.00 |
redo entries | 2,268 | 13.30 | 56.70 |
redo k-bytes read total | 0 | 0.00 | 0.00 |
redo log space requests | 0 | 0.00 | 0.00 |
redo log space wait time | 0 | 0.00 | 0.00 |
redo ordering marks | 94 | 0.55 | 2.35 |
redo size | 1,810,888 | 10,622.54 | 45,272.20 |
redo size for direct writes | 52 | 0.31 | 1.30 |
redo subscn max counts | 159 | 0.93 | 3.98 |
redo synch time | 0 | 0.00 | 0.00 |
redo synch writes | 2 | 0.01 | 0.05 |
redo wastage | 14,168 | 83.11 | 354.20 |
redo write broadcast ack time | 1 | 0.01 | 0.03 |
redo write time | 2 | 0.01 | 0.05 |
redo writer latching time | 0 | 0.00 | 0.00 |
redo writes | 59 | 0.35 | 1.48 |
rollback changes - undo records applied | 0 | 0.00 | 0.00 |
rollbacks only - consistent read gets | 1 | 0.01 | 0.03 |
rows fetched via callback | 522 | 3.06 | 13.05 |
session connect time | 0 | 0.00 | 0.00 |
session cursor cache hits | 891 | 5.23 | 22.28 |
session logical reads | 7,663,204 | 44,951.81 | 191,580.10 |
shared hash latch upgrades - no wait | 348 | 2.04 | 8.70 |
shared hash latch upgrades - wait | 0 | 0.00 | 0.00 |
sorts (disk) | 0 | 0.00 | 0.00 |
sorts (memory) | 4,626 | 27.14 | 115.65 |
sorts (rows) | 15,891 | 93.22 | 397.28 |
sql area evicted | 0 | 0.00 | 0.00 |
sql area purged | 5 | 0.03 | 0.13 |
summed dirty queue length | 0 | 0.00 | 0.00 |
switch current to new buffer | 6 | 0.04 | 0.15 |
table fetch by rowid | 17,444 | 102.33 | 436.10 |
table fetch continued row | 0 | 0.00 | 0.00 |
table scan blocks gotten | 7,626,978 | 44,739.31 | 190,674.45 |
table scan rows gotten | 936,569,491 | 5,493,849.52 | 23,414,237.28 |
table scans (direct read) | 3,968 | 23.28 | 99.20 |
table scans (long tables) | 3,968 | 23.28 | 99.20 |
table scans (rowid ranges) | 0 | 0.00 | 0.00 |
table scans (short tables) | 110 | 0.65 | 2.75 |
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 |
transaction tables consistent reads - undo records applied | 0 | 0.00 | 0.00 |
undo change vector size | 648,192 | 3,802.25 | 16,204.80 |
user I/O wait time | 118,735 | 696.49 | 2,968.38 |
user calls | 1,797 | 10.54 | 44.93 |
user commits | 23 | 0.13 | 0.58 |
user rollbacks | 17 | 0.10 | 0.43 |
workarea executions - onepass | 80 | 0.47 | 2.00 |
workarea executions - optimal | 4,625 | 27.13 | 115.63 |
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 | 636 | 0.00 | | 0 | 0 | |
ASM map operation freelist | 6 | 0.00 | | 0 | 0 | |
ASM map operation hash table | 980,477 | 0.00 | 0.00 | 0 | 0 | |
ASM network background latch | 68 | 0.00 | | 0 | 0 | |
AWR Alerted Metric Element list | 1,289 | 0.00 | | 0 | 0 | |
Change Notification Hash table latch | 57 | 0.00 | | 0 | 0 | |
Consistent RBA | 57 | 0.00 | | 0 | 0 | |
DML lock allocation | 302,198 | 0.00 | | 0 | 0 | |
Event Group Locks | 13 | 0.00 | | 0 | 0 | |
FOB s.o list latch | 26 | 0.00 | | 0 | 0 | |
File State Object Pool Parent Latch | 1 | 0.00 | | 0 | 0 | |
IPC stats buffer allocation latch | 1,331 | 0.00 | | 0 | 1,353 | 0.00 |
In memory undo latch | 1 | 0.00 | | 0 | 0 | |
JS Sh mem access | 3 | 0.00 | | 0 | 0 | |
JS broadcast add buf latch | 39 | 0.00 | | 0 | 0 | |
JS broadcast drop buf latch | 39 | 0.00 | | 0 | 0 | |
JS broadcast load blnc latch | 35 | 0.00 | | 0 | 0 | |
JS queue access latch | 1 | 0.00 | | 0 | 0 | |
JS queue state obj latch | 2,310 | 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 | 1,848 | 0.00 | | 0 | 0 | |
KFMD SGA | 75 | 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 | 2,359 | 0.25 | 0.00 | 0 | 3,217 | 0.00 |
KJCT flow control latch | 39,687 | 0.02 | 0.00 | 0 | 0 | |
KMG MMAN ready and startup request latch | 57 | 0.00 | | 0 | 0 | |
KSXR large replies | 56 | 0.00 | | 0 | 0 | |
KTF sga latch | 3 | 0.00 | | 0 | 51 | 0.00 |
KWQMN job cache list latch | 17 | 0.00 | | 0 | 0 | |
KWQP Prop Status | 2 | 0.00 | | 0 | 0 | |
KWQS pqsubs latch | 12 | 0.00 | | 0 | 0 | |
KWQS pqueue ctx latch | 7 | 0.00 | | 0 | 0 | |
Locator state objects pool parent latch | 1 | 0.00 | | 0 | 0 | |
MQL Tracking Latch | 0 | | | 0 | 4 | 0.00 |
Memory Management Latch | 1 | 0.00 | | 0 | 57 | 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 | 2,018 | 0.00 | | 0 | 0 | |
Mutex | 1 | 0.00 | | 0 | 0 | |
Mutex Stats | 1 | 0.00 | | 0 | 0 | |
OS process | 58 | 0.00 | | 0 | 0 | |
OS process allocation | 100 | 0.00 | | 0 | 0 | |
OS process: request allocation | 19 | 0.00 | | 0 | 0 | |
PL/SQL warning settings | 309 | 0.00 | | 0 | 0 | |
QMT | 1 | 0.00 | | 0 | 0 | |
Real-time plan statistics latch | 407 | 0.98 | 0.00 | 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 | 1 | 0.00 | | 0 | 56 | 0.00 |
SQL memory manager workarea list latch | 4,327 | 0.00 | | 0 | 0 | |
Shared B-Tree | 34 | 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,039 | 0.00 | | 0 | 0 | |
active service list | 20,187 | 0.16 | 1.39 | 0 | 69 | 0.00 |
archive control | 17 | 0.00 | | 0 | 0 | |
begin backup scn array | 1 | 0.00 | | 0 | 0 | |
buffer pool | 1 | 0.00 | | 0 | 0 | |
business card | 257 | 0.00 | | 0 | 0 | |
cache buffer handles | 90 | 0.00 | | 0 | 0 | |
cache buffers chains | 93,524 | 0.00 | 1.00 | 0 | 8,412 | 0.01 |
cache buffers lru chain | 294 | 0.00 | | 0 | 10,486 | 0.01 |
cas latch | 1 | 0.00 | | 0 | 0 | |
change notification client cache latch | 1 | 0.00 | | 0 | 0 | |
channel handle pool latch | 29 | 0.00 | | 0 | 0 | |
channel operations parent latch | 1,855,134 | 0.00 | 0.00 | 0 | 0 | |
checkpoint queue latch | 6,493 | 0.00 | | 0 | 639 | 0.00 |
client/application info | 1,554 | 0.00 | | 0 | 0 | |
commit callback allocation | 1 | 0.00 | | 0 | 0 | |
compile environment latch | 275 | 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 | 4 | 0.00 | | 0 | 0 | |
cvmap freelist lock | 1 | 0.00 | | 0 | 0 | |
deferred cleanup latch | 4 | 0.00 | | 0 | 0 | |
dml lock allocation | 4 | 0.00 | | 0 | 0 | |
done queue latch | 1 | 0.00 | | 0 | 0 | |
dummy allocation | 551 | 0.00 | | 0 | 0 | |
enqueue hash chains | 159,031 | 0.37 | 0.11 | 0 | 155 | 0.00 |
enqueues | 79,176 | 0.15 | 0.06 | 0 | 0 | |
error message lists | 2,184 | 0.05 | 0.00 | 0 | 0 | |
fifth spare latch | 1 | 0.00 | | 0 | 0 | |
file cache latch | 891 | 0.00 | | 0 | 0 | |
flashback archiver latch | 1 | 0.00 | | 0 | 0 | |
flashback copy | 1 | 0.00 | | 0 | 0 | |
gc element | 8,691 | 0.01 | 1.00 | 0 | 3 | 0.00 |
gcs commit scn state | 1 | 0.00 | | 0 | 0 | |
gcs opaque info freelist | 498 | 0.00 | | 0 | 0 | |
gcs partitioned table hash | 479,434 | 0.00 | | 0 | 16 | 0.00 |
gcs pcm hashed value bucket hash | 1 | 0.00 | | 0 | 0 | |
gcs remaster request queue | 162 | 0.00 | | 0 | 0 | |
gcs remastering latch | 645 | 0.00 | | 0 | 0 | |
gcs resource freelist | 1 | 0.00 | | 0 | 3 | 0.00 |
gcs resource hash | 8,214 | 0.00 | | 0 | 1 | 0.00 |
gcs resource scan list | 3 | 0.00 | | 0 | 0 | |
gcs shadows freelist | 1,202 | 0.00 | | 0 | 619 | 0.00 |
ges DFS wait callback info | 13 | 0.00 | | 0 | 2 | 0.00 |
ges caches resource lists | 52,311 | 0.01 | 0.00 | 0 | 22,151 | 0.01 |
ges deadlock list | 4,486 | 0.00 | | 0 | 1 | 0.00 |
ges domain table | 81,145 | 0.00 | | 0 | 0 | |
ges enqueue table freelist | 83,848 | 0.02 | 0.13 | 0 | 0 | |
ges group table | 123,783 | 0.01 | 0.00 | 0 | 0 | |
ges process hash list | 966 | 0.00 | | 0 | 0 | |
ges process parent latch | 178,053 | 0.00 | | 0 | 0 | |
ges process table freelist | 19 | 0.00 | | 0 | 0 | |
ges resource hash list | 146,294 | 0.69 | 0.23 | 1 | 5,179 | 0.64 |
ges resource scan list | 35 | 0.00 | | 0 | 0 | |
ges resource table freelist | 8,886 | 0.01 | 0.00 | 0 | 0 | |
ges timeout list | 1,744 | 0.06 | 0.00 | 0 | 615 | 0.00 |
ges value block free list | 1 | 0.00 | | 0 | 0 | |
global KZLD latch for mem in SGA | 4 | 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 | 208 | 0.00 |
heartbeat check | 1 | 0.00 | | 0 | 35 | 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 | 0 | |
job_queue_processes parameter latch | 38 | 0.00 | | 0 | 0 | |
k2q global data latch | 114 | 0.00 | | 0 | 0 | |
k2q lock allocation | 1 | 0.00 | | 0 | 0 | |
kcfis stats shared latch | 16 | 0.00 | | 0 | 0 | |
kdlx hb parent latch | 1 | 0.00 | | 0 | 0 | |
kgb parent | 1 | 0.00 | | 0 | 0 | |
kks stats | 13 | 0.00 | | 0 | 0 | |
kokc descriptor allocation latch | 130 | 0.00 | | 0 | 0 | |
ksfv messages | 1 | 0.00 | | 0 | 0 | |
ksim membership request latch | 70,008 | 0.00 | | 0 | 171 | 0.00 |
kss move lock | 3 | 0.00 | | 0 | 0 | |
ksuosstats global area | 57 | 0.00 | | 0 | 0 | |
ksv allocation latch | 8 | 0.00 | | 0 | 0 | |
ksv class latch | 213 | 0.00 | | 0 | 0 | |
ksv msg queue latch | 1 | 0.00 | | 0 | 0 | |
ksxp shared latch | 19 | 0.00 | | 0 | 0 | |
ksz_so allocation latch | 22 | 0.00 | | 0 | 0 | |
kwqbsn:qsga | 8 | 0.00 | | 0 | 0 | |
lgwr LWN SCN | 101 | 0.00 | | 0 | 0 | |
list of block allocation | 26 | 0.00 | | 0 | 0 | |
loader state object freelist | 2 | 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 | 2 | 0.00 | | 0 | 0 | |
logminer work area | 1 | 0.00 | | 0 | 0 | |
longop free list parent | 65 | 0.00 | | 0 | 64 | 0.00 |
mapped buffers lru chain | 1 | 0.00 | | 0 | 0 | |
message pool operations parent latch | 2,672 | 0.00 | | 0 | 0 | |
messages | 217,740 | 0.19 | 0.00 | 0 | 0 | |
mostly latch-free SCN | 101 | 0.00 | | 0 | 0 | |
msg queue latch | 1 | 0.00 | | 0 | 0 | |
multiblock read objects | 206 | 0.00 | | 0 | 0 | |
name-service memory objects | 1,321 | 0.00 | | 0 | 0 | |
name-service namespace bucket | 4,306 | 0.02 | 0.00 | 0 | 0 | |
name-service pending queue | 172 | 0.00 | | 0 | 0 | |
name-service request | 10 | 0.00 | | 0 | 0 | |
name-service request queue | 1,748 | 0.00 | | 0 | 0 | |
ncodef allocation latch | 4 | 0.00 | | 0 | 0 | |
object queue header heap | 372 | 0.00 | | 0 | 95 | 0.00 |
object queue header operation | 57,905 | 0.00 | | 0 | 0 | |
object stats modification | 98 | 0.00 | | 0 | 0 | |
parallel query alloc buffer | 8,408 | 0.06 | 0.00 | 0 | 0 | |
parallel query stats | 633 | 0.32 | 0.50 | 0 | 0 | |
parameter list | 51 | 0.00 | | 0 | 0 | |
parameter table management | 550 | 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 | 87 | 0.00 | | 0 | 39 | 0.00 |
process allocation | 735 | 0.00 | | 0 | 12 | 0.00 |
process group creation | 19 | 0.00 | | 0 | 0 | |
process queue | 4,185 | 0.00 | | 0 | 0 | |
process queue reference | 100,479 | 0.01 | 0.00 | 0 | 7,925 | 544.69 |
qmn task queue latch | 36 | 0.00 | | 0 | 0 | |
query server freelists | 3,007 | 0.20 | 0.17 | 0 | 0 | |
query server process | 5 | 0.00 | | 0 | 0 | |
queued dump request | 1 | 0.00 | | 0 | 0 | |
recovery domain hash list | 1 | 0.00 | | 0 | 0 | |
redo allocation | 257 | 0.00 | | 0 | 2,205 | 0.00 |
redo copy | 1 | 0.00 | | 0 | 2,205 | 0.00 |
redo writing | 353 | 0.00 | | 0 | 0 | |
reid allocation latch | 3 | 0.00 | | 0 | 0 | |
resmgr group change latch | 425 | 0.00 | | 0 | 0 | |
resmgr:active threads | 565 | 0.00 | | 0 | 0 | |
resmgr:actses change group | 276 | 0.00 | | 0 | 0 | |
resmgr:actses change state | 1 | 0.00 | | 0 | 0 | |
resmgr:free threads list | 550 | 0.18 | 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 | 34,256 | 0.00 | | 0 | 0 | |
rules engine rule set statistics | 100 | 0.00 | | 0 | 0 | |
second spare latch | 1 | 0.00 | | 0 | 0 | |
sequence cache | 352 | 0.00 | | 0 | 0 | |
session allocation | 8,419 | 0.64 | 0.69 | 0 | 0 | |
session idle bit | 3,678 | 0.00 | | 0 | 0 | |
session queue latch | 1 | 0.00 | | 0 | 0 | |
session state list latch | 542 | 0.18 | 0.00 | 0 | 0 | |
session switching | 5 | 0.00 | | 0 | 0 | |
session timer | 69 | 0.00 | | 0 | 0 | |
shared pool | 28,193 | 0.32 | 0.37 | 0 | 0 | |
shared pool sim alloc | 1 | 0.00 | | 0 | 0 | |
shared pool simulator | 12 | 0.00 | | 0 | 0 | |
sim partition latch | 1 | 0.00 | | 0 | 0 | |
simulator hash latch | 1,432 | 0.00 | | 0 | 0 | |
simulator lru latch | 1 | 0.00 | | 0 | 1,379 | 0.00 |
sort extent pool | 36,261 | 0.21 | 0.01 | 0 | 0 | |
space background task latch | 123 | 0.00 | | 0 | 114 | 0.00 |
state object free list | 2 | 0.00 | | 0 | 0 | |
statistics aggregation | 32,508 | 0.00 | | 0 | 0 | |
storage server table manipulation latch | 12 | 0.00 | | 0 | 0 | |
tablespace key chain | 3,997 | 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 | 73 | 0.00 | | 0 | 0 | |
transaction allocation | 74,657 | 0.00 | | 0 | 0 | |
undo global data | 971 | 0.00 | | 0 | 0 | |
user lock | 16 | 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 | |