SQL Id | SQL Text |
04kug40zbu4dm | select policy#, action# from aud_object_opt$ where object# = :1 and type = 2 |
0614tvptjkn2k |
WITH awr_evts as (SELECT e.event_id, e.wait_class FROM WRH$_EVENT_NAME e WHERE e.dbid = :dbid) , en as (SELECT event_id, nvl(v.wait_class, awr_evts.wait_class) as wait_class FROM awr_evts FULL OUTER JOIN V$EVENT_NAME v USING(event_id) UNION ALL SELECT 0 as event_id, 'CPU' as wait_class FROM DUAL ) SELECT * FROM ( SELECT count(*) as cnt , a.SQL_ID, a.CON_DBID, sum(decode(a.wait_time, 0, 0, 1)) as on_cpu, sum(case when a.wait_time = 0 and en.wait_class = 'User I/O' then 1 else 0 end) as io_wait, sum(case when a.wait_time = 0 and en.wait_class = 'Cluster' then 1 else 0 end) as cl_wait, sum(decode(bitand(a.time_model, power(2, 4)), 0, 0, NULL, 0, 1)) as in_parse, sum(decode(bitand(a.time_model, power(2, 14)), 0, 0, NULL, 0, 1)) as in_java, sum(decode(bitand(a.time_model, power(2, 11)+power(2, 12)), NULL, 0, 0, 0, 1))
as in_pls, max(a.sql_opcode) as opcode, sum(case when a.qc_session_id <> 0 and a.qc_session_id <> a.session_id and a.qc_instance_id <> 0 and a.qc_instance_id <> a.instance_number then 1 else 0 end) as pq_cnt, count(distinct nvl(a.sql_plan_hash_value, 0)) as plans, count(distinct decode(nvl(a.sql_plan_hash_value, 0), 0, 1, 0)) as noplan FROM WRH$_ACTIVE_SESSION_HISTORY a , en WHERE a.dbid = :dbid AND a.instance_number = :inst AND a.snap_id > :bid AND a.snap_id <= :eid AND en.event_id = decode(a.wait_time, 0, a.event_id, 0) AND a.sql_id is NOT NULL AND a.session_type = 1 AND en.wait_class <> 'Idle' GROUP BY a.SQL_ID, a.CON_DBID HAVING count(*) >= :rowcnt ORDER BY count(*) DESC, a.SQL_ID ASC ) WHERE rownum <= :ret |
0af9jz8dgr1y6 | declare
vc char(500) :='a';
vb char(500);
begin
loop
select t1 into vb from tv where t1=vc;
end loop;
end; |
0cn2wm9d7zq8d | SELECT decode(value, 'FATAL', 1, 'ERROR', 2, 'WARNING', 3, 'INFORMATION', 4, 'INFORMATION2', 5, 'INFORMATION3', 6, 'INFORMATION4', 7, 'INFORMATION5', 8, 'INFORMATION6', 9, 0) FROM sys.wri$_adv_parameters WHERE task_id = :1 AND name = 'JOURNALING' |
0gs2jy6mgja7d | declare
vc char(500) :='d';
vb char(500);
begin
loop
select t1 into vb from tv where t1=vc;
end loop;
end; |
18c2yb5aj919t | SELECT nvl(e1, 0) as e1, nvl(e2, 0) as e2, nvl(e3, 0) as e3, nvl(e4, 0) as e4, nvl(e5, 0) as e5, nvl(e6, 0) as e6 FROM (SELECT e.event_id as event_id, e.event_name as event_name FROM WRH$_EVENT_NAME e WHERE e.dbid = :dbid AND e.event_name in ('log file sync', 'gc buffer busy', 'gc buffer busy acquire', 'gc buffer busy release', 'Streams: resolve low memory condition', 'Streams capture: resolve low memory condition') ) PIVOT (max(event_id) FOR event_name IN ('log file sync' as e1, 'gc buffer busy' as e2, 'gc buffer busy acquire' as e3, 'gc buffer busy release' as e4, 'Streams: resolve low memory condition' as e5, 'Streams capture: resolve low memory condition' as e6) ) |
1gfaj4z5hn1kf | delete from dependency$ where d_obj#=:1 |
1kq4ywg3vjywh | SELECT V.TS#, U.TBS_NAME, U.TOTALSIZE, U.MAXSIZE, (U.TOTALSIZE - U.FREESIZE) AS USEDSIZE, CEIL((U.TOTALSIZE-U.FREESIZE)/U.TOTALSIZE*100) AS USED_PCT, CEIL((U.TOTALSIZE - U.FREESIZE)/U.MAXSIZE*100) AS AUTO_USED_PCT FROM (SELECT D.TBS_NAME, D.TOTALSIZE, D.MAXSIZE, (CASE WHEN F.FREESIZE IS NOT NULL THEN F.FREESIZE ELSE 0 END) AS FREESIZE FROM (SELECT TABLESPACE_NAME AS TBS_NAME, SUM(BLOCKS) AS TOTALSIZE, (CASE WHEN AUTOEXTENSIBLE = 'NO' THEN SUM(BLOCKS) ELSE SUM(MAXBLOCKS) END) AS MAXSIZE FROM DBA_DATA_FILES GROUP BY TABLESPACE_NAME, AUTOEXTENSIBLE) D, (SELECT TABLESPACE_NAME AS TBS_NAME, SUM(BLOCKS) AS FREESIZE FROM DBA_FREE_SPACE GROUP BY TABLESPACE_NAME) F WHERE D.TBS_NAME = F.TBS_NAME (+)) U, TS$ V, TABLE(:B1 ) T WHERE T.TBS# = V.TS# AND V.NAME = U.TBS_NAME |
1uk5m5qbzj1vt | BEGIN dbms_workload_repository.create_snapshot; END;
|
2873h6j4qyf30 | declare
vc char(500) :='g';
vb char(500);
begin
loop
select t1 into vb from tv where t1=vc;
end loop;
end; |
28rx6ccq0j7sa | UPDATE wrh$_tablespace tbs SET (snap_id, tsname, contents, segment_space_management, extent_management) = (SELECT /*+ index(ts) */ :lah_snap_id, ts.name tsname, decode(ts.contents$, 0, (decode(bitand(ts.flags, 16), 16, 'UNDO', 'PERMANENT')), 1, 'TEMPORARY') as contents, decode(bitand(ts.flags, 32), 32, 'AUTO', 'MANUAL') as segspace_mgmt, decode(ts.bitmapped, 0, 'DICTIONARY', 'LOCAL') as extent_management FROM (select * from wrh$_tablespace where dbid = :dbid AND con_dbid = :srcdbid ) tb, ts$ ts, v$tablespace t2 WHERE ts.ts# = tb.ts# and ts.ts# = t2.ts# and tb.ts# = tbs.ts# and tb.snap_id < :snap_id ) WHERE dbid = :dbid AND con_dbid = :srcdbid AND snap_id < :snap_id AND ts# in (select ts# from v$tablespace ) AND ts# in (select ts# from ts$ ) |
2cpk25dr346vy | select SQL_ID, SQL_TEXT, executions FROM v$SQL where sql_id='2nv8264jgqpqz' |
2mt126bfb1c5m | SELECT PARAM_VALUE FROM ILM_PARAM$ WHERE PARAM# = :B1 |
2nv8264jgqpqz | SELECT T1 FROM TV WHERE T1=:B1 |
35vdcf7gbgzun | declare
vc char(500) :='c';
vb char(500);
begin
loop
select t1 into vb from tv where t1=vc;
end loop;
end; |
3cksr0218ny42 | INSERT INTO wrh$_tempfile (dbid, con_dbid, snap_id, file#, creation_change#, filename, ts#, tsname, block_size ) SELECT :dbid, :srcdbid con_dbid, :lah_snap_id, tf.file# file#, tf.creation_change# cr_chg#, tf.name name, ts.ts# ts#, ts.name tsname, tf.block_size block_size FROM v$tempfile tf, ts$ ts WHERE tf.ts# = ts.ts# AND not exists (SELECT 1 FROM wrh$_tempfile tfh WHERE tfh.file# = tf.file# AND tfh.creation_change# = tf.creation_change# AND tfh.dbid = :dbid) |
47mm81hm9sggy | SELECT sum(case when a.session_type = 1 and a.wait_time = 0 then 1 else 0 end) as fgw, sum(case when a.session_type = 1 and a.wait_time <> 0 then 1 else 0 end) as fgc, sum(case when a.session_type <> 1 and a.wait_time = 0 then 1 else 0 end) as bgw, sum(case when a.session_type <> 1 and a.wait_time <> 0 then 1 else 0 end) as bgc, sum(case when v.event_id is not null and a.session_type = 1 and a.wait_time = 0 then 1 else 0 end) as fgi FROM WRH$_ACTIVE_SESSION_HISTORY a , V$EVENT_NAME v WHERE a.event_id = v.event_id(+) AND v.wait_class(+) = 'Idle' AND a.dbid = :dbid AND a.instance_number = :inst AND a.snap_id > :bid AND a.snap_id <= :eid |
4bc30jxu2tnn5 |
insert into wrh$_tablespace_stat (dbid, con_dbid, snap_id, instance_number, ts#, tsname, contents, status, segment_space_management, extent_management, is_backup ) select :dbid, :srcdbid con_dbid, :snap_id, :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# |
4phvdvx32a3mf | begin prvt_ilm.stopjobs(-1, true, true, :1); end; |
4xgxq550q3fjr | declare
vc char(500) :='b';
vb char(500);
begin
loop
select t1 into vb from tv where t1=vc;
end loop;
end; |
5ms6rbzdnq16t | 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) and ((dbms_logstdby.db_is_logstdby = 0 and job < 1000000000) or (dbms_logstdby.db_is_logstdby = 1 and job >= 1000000000)) order by next_date, job |
5yv7yvjgjxugg | select TIME_WAITED_MICRO from V$SYSTEM_EVENT where event = 'Shared IO Pool Memory' |
6n2qqv1brfhpp | select ind.type#, ind.property, base_obj.obj#, base_owner.name, base_obj.name from sys.ind$ ind, sys.user$ base_owner, sys.obj$ base_obj where ind.obj# = :oid and ind.dataobj# = :doid and ind.bo# = base_obj.obj# and base_obj.owner# = base_owner.user# |
6qz82dptj0qr7 | select l.col#, l.intcol#, l.lobj#, l.ind#, l.ts#, l.file#, l.block#, l.chunk, l.pctversion$, l.flags, l.property, l.retention, l.freepools from lob$ l where l.obj# = :1 order by l.intcol# asc |
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 |
7u49y06aqxg1s | select /*+ rule */ bucket, endpoint, col#, epvalue, epvalue_raw, ep_repeat_count from histgrm$ where obj#=:1 and intcol#=:2 and row#=:3 order by bucket |
84u9cfqfk63f9 | INSERT INTO WRI$_ADV_ADDM_PDBS (CON_DBID, PDB_NAME) SELECT CON_DBID, SUBSTR(X , 20) FROM ( SELECT I.CON_DBID, MAX(TO_CHAR(I.OPEN_TIME, 'YYYY:MM:DD HH24:MI:SS') || I.PDB_NAME) AS X FROM DBA_HIST_PDB_INSTANCE I, DBA_HIST_SNAPSHOT S WHERE S.DBID = :B1 AND S.INSTANCE_NUMBER = I.INSTANCE_NUMBER AND S.SNAP_ID = :B3 AND I.STARTUP_TIME >= S.STARTUP_TIME AND I.STARTUP_TIME <= :B2 AND I.CON_DBID <> 0 AND I.CON_DBID <> :B1 AND I.DBID = :B1 AND I.PDB_NAME IS NOT NULL GROUP BY I.CON_DBID ) |
84zqd7a3ap5ud | insert into WRH$_SYSSTAT (dbid, con_dbid, snap_id, instance_number, stat_id, value) select :dbid, :srcdbid con_dbid, :snap_id, :instance_number, stat_id, value from v$sysstat |
9hxcwbkfzcg75 |
UPDATE wrh$_seg_stat_obj ob SET (snap_id, owner, object_name, subobject_name, tablespace_name, object_type, partition_type, index_type, base_obj#, base_object_name, base_object_owner) = (SELECT snap_id + 1, nvl(ownername_kewrseg, owner), nvl(objname_kewrseg, object_name), nvl(subobjname_kewrseg, subobject_name), nvl(tsname_kewrseg, tablespace_name), decode(objtype_kewrseg, 0, object_type, sys.dbms_swrf_internal.awr_decode_object_type(objtype_kewrseg)), decode(ptype_kewrseg, 0, partition_type, decode(ptype_kewrseg, 0, 'NONE', 1, 'RANGE', 2, 'HASH', 3, 'SYSTEM', 4, 'LIST', NULL, 'NONE', 'UNKNOWN')), decode(indtype_kewrseg, 0, index_type, decode(indtype_kewrseg, 1, 'NORMAL'|| decode(bitand(
iprop_kewrseg, 4), 0, '', 4, '/REV'), 2, 'BITMAP', 3, 'CLUSTER', 4, 'IOT - TOP', 5, 'IOT - NESTED', 6, 'SECONDARY', 7, 'ANSI', 8, 'LOB', 9, 'DOMAIN')), coalesce(nullif(bobjn_kewrseg, 0), so.base_obj#), case bobjname_kewrseg when NULL then so.base_object_name else case length(bobjname_kewrseg) when 0 then so.base_object_name else bobjname_kewrseg end end, case bowname_kewrseg when NULL then so.base_object_owner else case length(bowname_kewrseg) when 0 then so.base_object_owner else bowname_kewrseg end end FROM wrh$_seg_stat_obj so JOIN x$kewrtsegstat io ON (dbid = :dbid and con_dbid
= con_dbid_kewrseg and ts# = tsn_kewrseg and obj# = objn_kewrseg and dataobj# = objd_kewrseg) WHERE ob.dbid = so.dbid AND ob.con_dbid = so.con_dbid AND ob.ts# = so.ts# AND ob.obj# = so.obj# AND ob.dataobj# = so.dataobj#) WHERE dbid = :dbid AND object_name NOT LIKE '%MISSING%' AND object_name NOT LIKE '%TRANSIENT%' AND (ts#, obj#, dataobj#, con_dbid) in (SELECT tsn_kewrseg, objn_kewrseg, objd_kewrseg, con_dbid_kewrseg FROM x$kewrtsegstat) |
9uda0sf1vuzqn | INSERT INTO wrh$_datafile (dbid, con_dbid, snap_id, file#, creation_change#, filename, ts#, tsname, block_size) SELECT /*+ ordered index(f) index(ts) */ :dbid, :srcdbid con_dbid, :lah_snap_id, f.file# file#, f.crscnbas + (f.crscnwrp * power(2, 32)) creation_change#, v.name filename, ts.ts# ts#, ts.name tsname, ts.blocksize block_size FROM v$dbfile v, file$ f, ts$ ts WHERE f.file# = v.file# and f.status$ = 2 and f.ts# = ts.ts# and not exists (SELECT 1 from wrh$_datafile dfh WHERE dfh.file# = f.file# AND dfh.creation_change# = (f.crscnbas + (f.crscnwrp * power(2, 32))) AND dfh.dbid = :dbid) |
a6ygk0r9s5xuj | SELECT A.JOB_NAME, ( CASE A.STATE WHEN 'SCHEDULED' THEN :B11 WHEN 'DISABLED' THEN :B10 WHEN 'RUNNING' THEN :B9 ELSE :B8 END ) FROM DBA_SCHEDULER_JOBS A, ILM_RESULTS$ B, USER$ C, ILM_EXECUTION$ D WHERE A.JOB_NAME = B.JOBNAME AND (B.EXECUTION_ID = :B7 OR :B7 =:B6 ) AND B.EXECUTION_ID = D.EXECUTION_ID AND (B.JOBTYPE = :B5 OR :B5 = :B3 ) AND (B.JOBTYPE1 = :B4 OR :B4 = :B3 ) AND C.USER# = D.OWNER AND (:B1 = :B2 OR D.FLAG = :B1 ) |
bnznj24yxuzah |
insert into WRH$_IOSTAT_FILETYPE (dbid, con_dbid, snap_id, 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 :dbid, :srcdbid con_dbid, :snap_id, :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 |
ct2g3h4c98fp4 | select col#, grantee#, privilege#, max(mod(nvl(option$, 0), 2)), min(bitand(nvl(option$, 0), 4) /4), max(bitand(nvl(option$, 0), 8) /8), max(bitand(nvl(option$, 0), 16) /16) from objauth$ where obj#=:1 and col# is not null group by privilege#, col#, grantee# order by col#, grantee# |
f5dqupu2hknzu |
WITH a as (SELECT a$.dbid, a$.snap_id, a$.INSTANCE_NUMBER, a$.PLSQL_ENTRY_OBJECT_ID, a$.PLSQL_ENTRY_SUBPROGRAM_ID, a$.TIME_MODEL, a$.CON_DBID FROM WRH$_ACTIVE_SESSION_HISTORY a$ WHERE a$.dbid = :dbid AND a$.instance_number = :inst AND a$.snap_id > :bid AND a$.snap_id <= :eid AND a$.session_type = 1 ) , ash as (SELECT cnt , CON_DBID, PLSQL_ENTRY_OBJECT_ID, PLSQL_ENTRY_SUBPROGRAM_ID FROM ( SELECT count(*) as cnt , a.CON_DBID, a.PLSQL_ENTRY_OBJECT_ID, a.PLSQL_ENTRY_SUBPROGRAM_ID FROM a WHERE bitand(a.time_model, power(2, 11 )) !=0 AND a.PLSQL_ENTRY_OBJECT_ID > 0 AND a.PLSQL_ENTRY_SUBPROGRAM_ID > 0 GROUP BY CON_DBID, PLSQL_ENTRY_OBJECT_ID, PLSQL_ENTRY_SUBPROGRAM_ID HAVING count(*) >= :rowcnt ORDER BY 1 DESC, 2 ASC ) WHERE rownum <= :ret) SELECT x.con_dbid, x.plsql_entry_object_id, x.plsql_entry_subprogram_id, dba.object_name, dba.object_type, dba.owner, dba.procedure_name, to_number(d
ba.overload), x.cnt FROM dba_procedures dba, ash x WHERE x.plsql_entry_object_id = dba.object_id(+) AND x.plsql_entry_subprogram_id = dba.subprogram_id(+) ORDER BY x.cnt DESC, x.plsql_entry_object_id, x.plsql_entry_subprogram_id |
f80h0xb1qvbsk | SELECT sys.wri$_adv_seq_msggroup.nextval FROM dual |
fkc81h2686aqc | select pob.parttype from sys.indpart$ ip, sys.partobj$ pob where ip.bo# = pob.obj# and ip.obj# = :oid |
fs4p95w7yg25b | select pob.parttype from sys.tabpart$ tp, sys.partobj$ pob where tp.bo# = pob.obj# and tp.obj# = :oid |
grwydz59pu6mc | select text from view$ where rowid=:1 |
gx4mv66pvj3xz | select con#, type#, condlength, intcols, robj#, rcon#, match#, refact, nvl(enabled, 0), rowid, cols, nvl(defer, 0), mtime, nvl(spare1, 0), spare2, spare3 from cdef$ where obj#=:1 |
gxuf0knmygd9u | begin prvt_ilm.execute_ilm_sch(:1, :2); end; |
Statistic | Total | per Second | per Trans |
Batched IO (bound) vector count | 5 | 0.02 | 0.18 |
Batched IO (full) vector count | 0 | 0.00 | 0.00 |
Batched IO block miss count | 15 | 0.06 | 0.54 |
Batched IO buffer defrag count | 0 | 0.00 | 0.00 |
Batched IO double miss count | 0 | 0.00 | 0.00 |
Batched IO same unit count | 10 | 0.04 | 0.36 |
Batched IO single block count | 5 | 0.02 | 0.18 |
Batched IO vector block count | 0 | 0.00 | 0.00 |
Batched IO vector read count | 0 | 0.00 | 0.00 |
Block Cleanout Optim referenced | 14 | 0.06 | 0.50 |
CCursor + sql area evicted | 129 | 0.56 | 4.61 |
CLI BG ENQ | 76 | 0.33 | 2.71 |
CLI BG Fls done | 0 | 0.00 | 0.00 |
CLI BG attempt Flush | 76 | 0.33 | 2.71 |
CLI Flstask create | 76 | 0.33 | 2.71 |
CLI Flush | 76 | 0.33 | 2.71 |
CLI SGA Alloc | 0 | 0.00 | 0.00 |
CLI Thru Wrt | 0 | 0.00 | 0.00 |
CLI bytes fls to table | 0 | 0.00 | 0.00 |
CPU used by this session | 88,092 | 380.15 | 3,146.14 |
CPU used when call started | 294 | 1.27 | 10.50 |
CR blocks created | 14 | 0.06 | 0.50 |
Cached Commit SCN referenced | 102 | 0.44 | 3.64 |
Commit SCN cached | 1 | 0.00 | 0.04 |
DBWR checkpoint buffers written | 95 | 0.41 | 3.39 |
DBWR checkpoints | 0 | 0.00 | 0.00 |
DBWR object drop 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 | 5 | 0.02 | 0.18 |
DBWR undo block writes | 57 | 0.25 | 2.04 |
Effective IO time | 0 | 0.00 | 0.00 |
HSC Compressed Segment Block Changes | 0 | 0.00 | 0.00 |
HSC Heap Segment Block Changes | 681 | 2.94 | 24.32 |
HSC IDL Compressed Blocks | 0 | 0.00 | 0.00 |
HSC OLTP Compressed Blocks | 0 | 0.00 | 0.00 |
HSC OLTP Non Compressible Blocks | 0 | 0.00 | 0.00 |
HSC OLTP Space Saving | 0 | 0.00 | 0.00 |
HSC OLTP positive compression | 0 | 0.00 | 0.00 |
HSC OLTP recursive compression | 0 | 0.00 | 0.00 |
Heap Segment Array Inserts | 119 | 0.51 | 4.25 |
Heap Segment Array Updates | 5 | 0.02 | 0.18 |
Heatmap BlkLevel Flushed | 0 | 0.00 | 0.00 |
Heatmap BlkLevel Flushed to BF | 0 | 0.00 | 0.00 |
Heatmap BlkLevel Not Updated - Repeat | 0 | 0.00 | 0.00 |
Heatmap BlkLevel Ranges Flushed | 0 | 0.00 | 0.00 |
Heatmap BlkLevel Tracked | 0 | 0.00 | 0.00 |
Heatmap Blklevel Flush Task Count | 0 | 0.00 | 0.00 |
Heatmap SegLevel - Flush | 0 | 0.00 | 0.00 |
Heatmap SegLevel - Full Table Scan | 0 | 0.00 | 0.00 |
Heatmap SegLevel - IndexLookup | 0 | 0.00 | 0.00 |
Heatmap SegLevel - Segments flushed | 0 | 0.00 | 0.00 |
Heatmap SegLevel - Write | 0 | 0.00 | 0.00 |
IMU CR rollbacks | 0 | 0.00 | 0.00 |
IMU Flushes | 3 | 0.01 | 0.11 |
IMU Redo allocation size | 84,132 | 363.06 | 3,004.71 |
IMU commits | 16 | 0.07 | 0.57 |
IMU contention | 0 | 0.00 | 0.00 |
IMU ktichg flush | 1 | 0.00 | 0.04 |
IMU pool not allocated | 0 | 0.00 | 0.00 |
IMU recursive-transaction flush | 0 | 0.00 | 0.00 |
IMU undo allocation size | 92,744 | 400.22 | 3,312.29 |
IMU- failed to get a private strand | 0 | 0.00 | 0.00 |
KTFB alloc req | 5 | 0.02 | 0.18 |
KTFB alloc space (block) | 327,680 | 1,414.05 | 11,702.86 |
KTFB alloc time (ms) | 306 | 1.32 | 10.93 |
KTFB apply req | 0 | 0.00 | 0.00 |
KTFB apply time (ms) | 0 | 0.00 | 0.00 |
KTFB commit req | 0 | 0.00 | 0.00 |
KTFB commit time (ms) | 0 | 0.00 | 0.00 |
KTFB free req | 0 | 0.00 | 0.00 |
KTFB free space (block) | 0 | 0.00 | 0.00 |
KTFB free time (ms) | 0 | 0.00 | 0.00 |
LOB table id lookup cache misses | 0 | 0.00 | 0.00 |
Number of read IOs issued | 0 | 0.00 | 0.00 |
Requests to/from client | 118 | 0.51 | 4.21 |
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 | 117 | 0.50 | 4.18 |
TBS Extension: bytes extended | 0 | 0.00 | 0.00 |
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 | 93 | 0.40 | 3.32 |
background checkpoints completed | 0 | 0.00 | 0.00 |
background checkpoints started | 0 | 0.00 | 0.00 |
background timeouts | 1,135 | 4.90 | 40.54 |
branch node splits | 0 | 0.00 | 0.00 |
buffer is not pinned count | 6,259 | 27.01 | 223.54 |
buffer is pinned count | 3,904 | 16.85 | 139.43 |
bytes received via SQL*Net from client | 22,883 | 98.75 | 817.25 |
bytes sent via SQL*Net to client | 49,177 | 212.21 | 1,756.32 |
calls to get snapshot scn: kcmgss | 11,985,712 | 51,722.30 | 428,061.14 |
calls to kcmgas | 123 | 0.53 | 4.39 |
calls to kcmgcs | 35,949,172 | 155,132.53 | 1,283,899.00 |
cell physical IO interconnect bytes | 16,268,800 | 70,205.24 | 581,028.57 |
change write time | 1 | 0.00 | 0.04 |
cleanout - number of ktugct calls | 105 | 0.45 | 3.75 |
cleanouts and rollbacks - consistent read gets | 0 | 0.00 | 0.00 |
cleanouts only - consistent read gets | 11 | 0.05 | 0.39 |
cluster key scan block gets | 495 | 2.14 | 17.68 |
cluster key scans | 274 | 1.18 | 9.79 |
commit batch/immediate performed | 0 | 0.00 | 0.00 |
commit batch/immediate requested | 0 | 0.00 | 0.00 |
commit cleanout failures: block lost | 0 | 0.00 | 0.00 |
commit cleanout failures: callback failure | 17 | 0.07 | 0.61 |
commit cleanout failures: cannot pin | 0 | 0.00 | 0.00 |
commit cleanouts | 445 | 1.92 | 15.89 |
commit cleanouts successfully completed | 428 | 1.85 | 15.29 |
commit immediate performed | 0 | 0.00 | 0.00 |
commit immediate requested | 0 | 0.00 | 0.00 |
commit txn count during cleanout | 51 | 0.22 | 1.82 |
consistent changes | 117 | 0.50 | 4.18 |
consistent gets | 179,746,785 | 775,666.65 | 6,419,528.04 |
consistent gets direct | 0 | 0.00 | 0.00 |
consistent gets examination | 3,519 | 15.19 | 125.68 |
consistent gets examination (fastpath) | 3,391 | 14.63 | 121.11 |
consistent gets from cache | 179,746,790 | 775,666.68 | 6,419,528.21 |
consistent gets pin | 179,743,264 | 775,651.46 | 6,419,402.29 |
consistent gets pin (fastpath) | 179,743,174 | 775,651.07 | 6,419,399.07 |
cursor authentications | 82 | 0.35 | 2.93 |
data blocks consistent reads - undo records applied | 114 | 0.49 | 4.07 |
db block gets | 6,127 | 26.44 | 218.82 |
db block gets direct | 0 | 0.00 | 0.00 |
db block gets from cache | 6,127 | 26.44 | 218.82 |
db block gets from cache (fastpath) | 2,572 | 11.10 | 91.86 |
deferred (CURRENT) block cleanout applications | 301 | 1.30 | 10.75 |
dirty buffers inspected | 0 | 0.00 | 0.00 |
enqueue conversions | 97 | 0.42 | 3.46 |
enqueue releases | 5,354 | 23.10 | 191.21 |
enqueue requests | 5,355 | 23.11 | 191.25 |
enqueue timeouts | 0 | 0.00 | 0.00 |
enqueue waits | 0 | 0.00 | 0.00 |
fastpath consistent get quota limit | 0 | 0.00 | 0.00 |
file io service time | 0 | 0.00 | 0.00 |
free buffer inspected | 7 | 0.03 | 0.25 |
free buffer requested | 142 | 0.61 | 5.07 |
heap block compress | 3 | 0.01 | 0.11 |
hot buffers moved to head of LRU | 0 | 0.00 | 0.00 |
immediate (CR) block cleanout applications | 11 | 0.05 | 0.39 |
immediate (CURRENT) block cleanout applications | 104 | 0.45 | 3.71 |
index crx upgrade (positioned) | 0 | 0.00 | 0.00 |
index crx upgrade (prefetch) | 0 | 0.00 | 0.00 |
index fast full scans (full) | 0 | 0.00 | 0.00 |
index fetch by key | 1,680 | 7.25 | 60.00 |
index scans kdiixs1 | 1,406 | 6.07 | 50.21 |
leaf node 90-10 splits | 2 | 0.01 | 0.07 |
leaf node splits | 42 | 0.18 | 1.50 |
lob reads | 0 | 0.00 | 0.00 |
lob writes | 0 | 0.00 | 0.00 |
lob writes unaligned | 0 | 0.00 | 0.00 |
logical read bytes from cache | 1,472,535,838,720 | 6,354,477,753.27 | 52,590,565,668.57 |
max cf enq hold time | 0 | 0.00 | 0.00 |
messages received | 87 | 0.38 | 3.11 |
messages sent | 87 | 0.38 | 3.11 |
min active SCN optimization applied on CR | 10 | 0.04 | 0.36 |
no buffer to keep pinned count | 0 | 0.00 | 0.00 |
no work - consistent read gets | 143,794,152 | 620,519.19 | 5,135,505.43 |
non-idle wait count | 4,464 | 19.26 | 159.43 |
parse count (describe) | 24 | 0.10 | 0.86 |
parse count (failures) | 1 | 0.00 | 0.04 |
parse count (hard) | 216 | 0.93 | 7.71 |
parse time cpu | 15 | 0.06 | 0.54 |
physical read IO requests | 10 | 0.04 | 0.36 |
physical read bytes | 81,920 | 353.51 | 2,925.71 |
physical read total IO requests | 669 | 2.89 | 23.89 |
physical read total bytes | 10,838,016 | 46,769.61 | 387,072.00 |
physical read total multi block requests | 0 | 0.00 | 0.00 |
physical reads cache | 10 | 0.04 | 0.36 |
physical reads cache prefetch | 0 | 0.00 | 0.00 |
physical reads direct | 0 | 0.00 | 0.00 |
physical reads direct (lob) | 0 | 0.00 | 0.00 |
physical reads direct temporary tablespace | 0 | 0.00 | 0.00 |
physical reads prefetch warmup | 0 | 0.00 | 0.00 |
physical write IO requests | 34 | 0.15 | 1.21 |
physical write bytes | 811,008 | 3,499.77 | 28,964.57 |
physical write total IO requests | 241 | 1.04 | 8.61 |
physical write total bytes | 5,430,784 | 23,435.62 | 193,956.57 |
physical write total multi block requests | 6 | 0.03 | 0.21 |
physical writes direct | 4 | 0.02 | 0.14 |
physical writes direct (lob) | 4 | 0.02 | 0.14 |
physical writes direct temporary tablespace | 0 | 0.00 | 0.00 |
physical writes from cache | 95 | 0.41 | 3.39 |
physical writes non checkpoint | 25 | 0.11 | 0.89 |
pinned buffers inspected | 0 | 0.00 | 0.00 |
pinned cursors current | 3 | 0.01 | 0.11 |
recursive calls | 11,990,981 | 51,745.04 | 428,249.32 |
recursive cpu usage | 77,227 | 333.26 | 2,758.11 |
redo blocks checksummed by FG (exclusive) | 2,230 | 9.62 | 79.64 |
redo blocks written | 4,079 | 17.60 | 145.68 |
redo blocks written (group 0) | 0 | 0.00 | 0.00 |
redo blocks written (group 1) | 0 | 0.00 | 0.00 |
redo buffer allocation retries | 0 | 0.00 | 0.00 |
redo entries | 3,075 | 13.27 | 109.82 |
redo log space requests | 0 | 0.00 | 0.00 |
redo ordering marks | 0 | 0.00 | 0.00 |
redo size for direct writes | 0 | 0.00 | 0.00 |
redo subscn max counts | 64 | 0.28 | 2.29 |
redo synch long waits | 0 | 0.00 | 0.00 |
redo synch time | 0 | 0.00 | 0.00 |
redo synch time (usec) | 733 | 3.16 | 26.18 |
redo synch time overhead (usec) | 123 | 0.53 | 4.39 |
redo synch time overhead count ( 2ms) | 6 | 0.03 | 0.21 |
redo synch time overhead count ( 8ms) | 0 | 0.00 | 0.00 |
redo synch time overhead count ( 32ms) | 0 | 0.00 | 0.00 |
redo synch time overhead count (128ms) | 0 | 0.00 | 0.00 |
redo synch time overhead count (inf) | 0 | 0.00 | 0.00 |
redo synch writes | 6 | 0.03 | 0.21 |
redo wastage | 9,988 | 43.10 | 356.71 |
redo write info find | 6 | 0.03 | 0.21 |
redo write size count ( 4KB) | 40 | 0.17 | 1.43 |
redo write size count ( 8KB) | 1 | 0.00 | 0.04 |
redo write size count ( 16KB) | 0 | 0.00 | 0.00 |
redo write size count ( 32KB) | 1 | 0.00 | 0.04 |
redo write size count ( 128KB) | 5 | 0.02 | 0.18 |
redo write size count ( 256KB) | 2 | 0.01 | 0.07 |
redo write size count ( 512KB) | 1 | 0.00 | 0.04 |
redo write size count (1024KB) | 1 | 0.00 | 0.04 |
redo write size count (inf) | 0 | 0.00 | 0.00 |
redo write time | 8 | 0.03 | 0.29 |
redo writes | 51 | 0.22 | 1.82 |
redo writes (group 0) | 0 | 0.00 | 0.00 |
redo writes (group 1) | 0 | 0.00 | 0.00 |
redo writes adaptive all | 51 | 0.22 | 1.82 |
redo writes adaptive worker | 0 | 0.00 | 0.00 |
remote Oradebug requests | 0 | 0.00 | 0.00 |
rollback changes - undo records applied | 0 | 0.00 | 0.00 |
rollbacks only - consistent read gets | 14 | 0.06 | 0.50 |
root node splits | 0 | 0.00 | 0.00 |
rows fetched via callback | 969 | 4.18 | 34.61 |
securefile allocation bytes | 32,768 | 141.40 | 1,170.29 |
securefile allocation chunks | 4 | 0.02 | 0.14 |
securefile bytes non-transformed | 54,720 | 236.13 | 1,954.29 |
securefile direct write bytes | 32,768 | 141.40 | 1,170.29 |
securefile direct write ops | 4 | 0.02 | 0.14 |
securefile number of non-transformed flushes | 30 | 0.13 | 1.07 |
segment cfs allocations | 0 | 0.00 | 0.00 |
segment chunks allocation from disepnser | 4 | 0.02 | 0.14 |
segment dispenser allocations | 4 | 0.02 | 0.14 |
segment dispenser load empty | 0 | 0.00 | 0.00 |
segment dispenser load tasks | 0 | 0.00 | 0.00 |
segment prealloc bytes | 0 | 0.00 | 0.00 |
segment prealloc ops | 0 | 0.00 | 0.00 |
segment prealloc tasks | 0 | 0.00 | 0.00 |
segment prealloc time (ms) | 0 | 0.00 | 0.00 |
segment total chunk allocation | 0 | 0.00 | 0.00 |
shared hash latch upgrades - no wait | 84 | 0.36 | 3.00 |
shared hash latch upgrades - wait | 0 | 0.00 | 0.00 |
shared io pool buffer get success | 4 | 0.02 | 0.14 |
sorts (memory) | 412 | 1.78 | 14.71 |
sorts (rows) | 4,726 | 20.39 | 168.79 |
sql area evicted | 214 | 0.92 | 7.64 |
sql area purged | 2 | 0.01 | 0.07 |
summed dirty queue length | 0 | 0.00 | 0.00 |
switch current to new buffer | 7 | 0.03 | 0.25 |
table fetch by rowid | 3,622 | 15.63 | 129.36 |
table fetch continued row | 5 | 0.02 | 0.18 |
table scan blocks gotten | 143,791,353 | 620,507.11 | 5,135,405.46 |
table scan rows gotten | 107,950,850 | 465,843.52 | 3,855,387.50 |
table scans (long tables) | 0 | 0.00 | 0.00 |
table scans (short tables) | 11,982,776 | 51,709.63 | 427,956.29 |
temp space allocated (bytes) | 1,048,576 | 4,524.95 | 37,449.14 |
total cf enq hold time | 63 | 0.27 | 2.25 |
total number of cf enq holders | 1 | 0.00 | 0.04 |
total number of times SMON posted | 108 | 0.47 | 3.86 |
transaction rollbacks | 0 | 0.00 | 0.00 |
transaction tables consistent read rollbacks | 0 | 0.00 | 0.00 |
transaction tables consistent reads - undo records applied | 0 | 0.00 | 0.00 |
undo change vector size | 696,364 | 3,005.04 | 24,870.14 |
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 |
AQ Background: interrupt command latch | 1 | 0.00 | | 0 | 0 | |
AQ Coord jobx_kwsbgsgn latch | 7 | 0.00 | | 0 | 0 | |
AQ Sharded master pool latch | 7 | 0.00 | | 0 | 0 | |
AQ deq hash table latch | 1 | 0.00 | | 0 | 0 | |
ASM db client latch | 147 | 0.00 | | 0 | 0 | |
ASM map operation hash table | 1 | 0.00 | | 0 | 0 | |
ASM network state latch | 4 | 0.00 | | 0 | 0 | |
ASM remote client latch | 4 | 0.00 | | 0 | 0 | |
AWR Alerted Metric Element list | 1,869 | 0.00 | | 0 | 0 | |
Change Notification Hash table latch | 76 | 0.00 | | 0 | 0 | |
Consistent RBA | 51 | 0.00 | | 0 | 0 | |
DML lock allocation | 500 | 0.00 | | 0 | 0 | |
Event Group Locks | 25 | 0.00 | | 0 | 0 | |
FOB s.o list latch | 32 | 0.00 | | 0 | 0 | |
File State Object Pool Parent Latch | 1 | 0.00 | | 0 | 0 | |
I/O Staticstics latch | 1 | 0.00 | | 0 | 0 | |
ILM Stats Stripe Latch | 1 | 0.00 | | 0 | 0 | |
ILM Stats main anchor latch | 696 | 0.00 | | 0 | 0 | |
ILM access tracking extent | 1 | 0.00 | | 0 | 0 | |
ILM activity tracking latch | 1 | 0.00 | | 0 | 0 | |
IPC stats buffer allocation latch | 1 | 0.00 | | 0 | 0 | |
In memory undo latch | 438 | 0.00 | | 0 | 125 | 0.00 |
Init msg cache | 1 | 0.00 | | 0 | 0 | |
JS Sh mem access | 3 | 0.00 | | 0 | 0 | |
JS mem alloc latch | 3 | 0.00 | | 0 | 0 | |
JS queue access latch | 4 | 0.00 | | 0 | 0 | |
JS queue state obj latch | 3,998 | 0.00 | | 0 | 0 | |
KCNIBR - invalid block range tree | 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 | |
KGNFS-NFS:SHM structure | 1 | 0.00 | | 0 | 0 | |
KGNFS-NFS:SVR LIST | 1 | 0.00 | | 0 | 0 | |
KJC message pool free list | 1 | 0.00 | | 0 | 0 | |
KJCT flow control latch | 1 | 0.00 | | 0 | 0 | |
KMG MMAN ready and startup request latch | 77 | 0.00 | | 0 | 0 | |
KSFS OFS ctx level parent latch | 1 | 0.00 | | 0 | 0 | |
KSFS OFS req layer parent latch | 1 | 0.00 | | 0 | 0 | |
KSFS OFS sess layer parent latch | 1 | 0.00 | | 0 | 0 | |
KSFS id table parent latch | 1 | 0.00 | | 0 | 0 | |
KSFS ksfs_node latch | 1 | 0.00 | | 0 | 0 | |
KSFSD name cache parent latch | 1 | 0.00 | | 0 | 0 | |
KTF sga latch | 1 | 0.00 | | 0 | 70 | 0.00 |
KTILM latch | 1 | 0.00 | | 0 | 0 | |
KWQMN job cache list latch | 1 | 0.00 | | 0 | 0 | |
KWQS pqsubs latch | 1 | 0.00 | | 0 | 0 | |
KWQS pqueue ctx latch | 9 | 0.00 | | 0 | 0 | |
Locator state objects pool parent latch | 1 | 0.00 | | 0 | 0 | |
Lsod array latch | 1 | 0.00 | | 0 | 0 | |
MQL Tracking Latch | 0 | | | 0 | 4 | 0.00 |
Memory Management Latch | 1 | 0.00 | | 0 | 77 | 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 | 0.00 | | 0 | 0 | |
Mutex | 1 | 0.00 | | 0 | 0 | |
Mutex Stats | 1 | 0.00 | | 0 | 0 | |
OS process | 106 | 0.00 | | 0 | 0 | |
OS process allocation | 476 | 0.00 | | 0 | 0 | |
OS process: request allocation | 24 | 0.00 | | 0 | 0 | |
PL/SQL warning settings | 34 | 0.00 | | 0 | 0 | |
PX hash array latch | 1 | 0.00 | | 0 | 0 | |
Parent latch for dependency tracking | 1 | 0.00 | | 0 | 0 | |
QMT | 1 | 0.00 | | 0 | 0 | |
Real-time descriptor latch | 126 | 0.00 | | 0 | 0 | |
Report Request stats latch | 12 | 0.00 | | 0 | 0 | |
Request holder compeltion list latch | 23 | 0.00 | | 0 | 0 | |
Retry Ht elm latch | 1 | 0.00 | | 0 | 0 | |
Retry bkt latch | 1 | 0.00 | | 0 | 0 | |
SGA Blackbox latch | 1 | 0.00 | | 0 | 0 | |
SGA Logging Bkt Latch | 533 | 0.00 | | 0 | 0 | |
SGA Logging Log Latch | 761 | 0.00 | | 0 | 228 | 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 | 73 | 0.00 |
SQL memory manager workarea list latch | 5,513 | 0.00 | | 0 | 0 | |
Sched IM Job latch | 5 | 0.00 | | 0 | 0 | |
Sched InMem Job Cache | 28 | 0.00 | | 0 | 0 | |
Shared B-Tree | 23 | 0.00 | | 0 | 0 | |
Streams Generic | 1 | 0.00 | | 0 | 0 | |
Subscriber Ht elm latch | 1 | 0.00 | | 0 | 0 | |
Testing | 1 | 0.00 | | 0 | 0 | |
Token Manager | 1 | 0.00 | | 0 | 0 | |
Txn Ht elm latch | 1 | 0.00 | | 0 | 0 | |
Txn bkt latch | 1 | 0.00 | | 0 | 0 | |
WCR: sync | 1 | 0.00 | | 0 | 0 | |
Write State Object Pool Parent Latch | 1 | 0.00 | | 0 | 0 | |
X$KSFQP | 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 | 106 | 0.00 | | 0 | 0 | |
active service list | 985 | 0.00 | | 0 | 1,331 | 0.00 |
begin backup scn array | 4 | 0.00 | | 0 | 0 | |
buffer pool | 1 | 0.00 | | 0 | 0 | |
business card | 1 | 0.00 | | 0 | 0 | |
cache buffer handles | 28 | 0.00 | | 0 | 0 | |
cache buffers chains | 359,510,088 | 2.00 | 0.00 | 0 | 131 | 6.87 |
cache buffers lru chain | 112 | 0.00 | | 0 | 254 | 0.00 |
call allocation | 655 | 0.00 | | 0 | 0 | |
cas latch | 1 | 0.00 | | 0 | 0 | |
change notification client cache latch | 1 | 0.00 | | 0 | 0 | |
channel handle pool latch | 25 | 0.00 | | 0 | 0 | |
channel operations parent latch | 58 | 0.00 | | 0 | 0 | |
checkpoint queue latch | 2,238 | 0.00 | | 0 | 561 | 0.00 |
client/application info | 23 | 0.00 | | 0 | 0 | |
compile environment latch | 13 | 0.00 | | 0 | 0 | |
cp handoff 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 | |
cp srv type state latch | 13 | 0.00 | | 0 | 0 | |
cp srv type wait latch | 1 | 0.00 | | 0 | 0 | |
cvmap freelist lock | 1 | 0.00 | | 0 | 0 | |
deferred cleanup latch | 4 | 0.00 | | 0 | 0 | |
dispatcher info | 2 | 0.00 | | 0 | 0 | |
dml lock allocation | 4 | 0.00 | | 0 | 0 | |
done queue latch | 1 | 0.00 | | 0 | 0 | |
dtp latch | 13 | 0.00 | | 0 | 0 | |
dummy allocation | 29 | 0.00 | | 0 | 0 | |
eleventh spare latch - children | 1 | 0.00 | | 0 | 0 | |
enqueue freelist latch | 1 | 0.00 | | 0 | 10,013 | 0.00 |
enqueue hash chains | 10,831 | 0.02 | 0.00 | 0 | 0 | |
enqueues | 3 | 0.00 | | 0 | 0 | |
event stats latch | 15 | 0.00 | | 0 | 0 | |
fast space usage latch | 4 | 0.00 | | 0 | 0 | |
file cache latch | 27 | 0.00 | | 0 | 0 | |
flashback copy | 1 | 0.00 | | 0 | 0 | |
fourth Audit Vault latch | 1 | 0.00 | | 0 | 0 | |
gc bast context freelist | 1 | 0.00 | | 0 | 0 | |
gc element | 1 | 0.00 | | 0 | 0 | |
gcs commit scn state | 1 | 0.00 | | 0 | 0 | |
gcs opaque info freelist | 1 | 0.00 | | 0 | 0 | |
gcs partitioned table hash | 1 | 0.00 | | 0 | 0 | |
gcs pcm hashed value bucket hash | 1 | 0.00 | | 0 | 0 | |
gcs resource freelist | 1 | 0.00 | | 0 | 0 | |
gcs resource hash | 1 | 0.00 | | 0 | 0 | |
gcs resource scan list | 1 | 0.00 | | 0 | 0 | |
gcs resource validate list | 1 | 0.00 | | 0 | 0 | |
gcs shadows freelist | 1 | 0.00 | | 0 | 0 | |
ges cached resource lists | 1 | 0.00 | | 0 | 0 | |
ges domain table | 1 | 0.00 | | 0 | 0 | |
ges enqueue table freelist | 1 | 0.00 | | 0 | 0 | |
ges group table | 1 | 0.00 | | 0 | 0 | |
ges process hash list | 1 | 0.00 | | 0 | 0 | |
ges process parent latch | 1 | 0.00 | | 0 | 0 | |
ges resource hash list | 1 | 0.00 | | 0 | 0 | |
ges resource scan list | 1 | 0.00 | | 0 | 0 | |
ges resource table freelist | 1 | 0.00 | | 0 | 0 | |
ges timeout list | 1 | 0.00 | | 0 | 0 | |
ges value block free list | 1 | 0.00 | | 0 | 0 | |
global tx hash mapping | 1 | 0.00 | | 0 | 0 | |
granule from data transfer cache | 1 | 0.00 | | 0 | 0 | |
granule operation | 1 | 0.00 | | 0 | 0 | |
hash table Sql Plan Finding latch | 0 | | | 0 | 8 | 0.00 |
hash table column usage latch | 0 | | | 0 | 97,282 | 0.00 |
hash table modification latch | 6 | 0.00 | | 0 | 0 | |
heartbeat check | 1 | 0.00 | | 0 | 0 | |
internal temp table object number allocation latch | 15 | 0.00 | | 0 | 0 | |
intra txn parallel recovery | 1 | 0.00 | | 0 | 0 | |
io pool granule list | 8 | 0.00 | | 0 | 0 | |
io pool granule metadata list | 17 | 0.00 | | 0 | 0 | |
job workq parent latch | 3 | 0.00 | | 0 | 2 | 0.00 |
job_queue_processes free list latch | 8 | 0.00 | | 0 | 0 | |
job_queue_processes parameter latch | 3 | 0.00 | | 0 | 0 | |
k2q lock allocation | 1 | 0.00 | | 0 | 0 | |
kcb DW scan objtemp hash table latch | 1 | 0.00 | | 0 | 0 | |
kcn buffer chains | 1 | 0.00 | | 0 | 0 | |
kdlx hb parent latch | 1 | 0.00 | | 0 | 0 | |
kgb parent | 1 | 0.00 | | 0 | 0 | |
kgnfs mount latch | 1 | 0.00 | | 0 | 0 | |
kjci objects freelist latch | 1 | 0.00 | | 0 | 0 | |
kjci process context latch | 1 | 0.00 | | 0 | 329 | 0.00 |
kjoedcso state object freelist latch | 4 | 0.00 | | 0 | 0 | |
kjoeq omni enqueue hash bucket latch | 1 | 0.00 | | 0 | 0 | |
kjoer owner hash bucket | 1 | 0.00 | | 0 | 0 | |
kokc descriptor allocation latch | 26 | 0.00 | | 0 | 0 | |
krso process latch | 7 | 0.00 | | 0 | 0 | |
ksfv messages | 1 | 0.00 | | 0 | 0 | |
ksi resource reuse count | 1 | 0.00 | | 0 | 0 | |
ksim group membership cache | 1 | 0.00 | | 0 | 0 | |
kss move lock | 19 | 0.00 | | 0 | 0 | |
ksuosstats global area | 31 | 0.00 | | 0 | 0 | |
ksv allocation latch | 40 | 0.00 | | 0 | 0 | |
ksv class latch | 37 | 0.00 | | 0 | 0 | |
ksv msg queue latch | 1 | 0.00 | | 0 | 0 | |
ksz_so allocation latch | 24 | 0.00 | | 0 | 0 | |
ktfbn latch | 1 | 0.00 | | 0 | 0 | |
ktm global data | 377 | 0.00 | | 0 | 0 | |
kwqbsn:qsga | 11 | 0.00 | | 0 | 0 | |
kwslbmdl: metadata latch | 7 | 0.00 | | 0 | 0 | |
kwslbql: queue latch | 1 | 0.00 | | 0 | 0 | |
lgwr LWN SCN | 111 | 0.00 | | 0 | 0 | |
list of block allocation | 34 | 0.00 | | 0 | 0 | |
lob segment dispenser latch | 9 | 0.00 | | 0 | 0 | |
lob segment hash table latch | 27 | 0.00 | | 0 | 0 | |
lob segment query latch | 1 | 0.00 | | 0 | 0 | |
lock DBA buffer during media recovery | 1 | 0.00 | | 0 | 0 | |
log write info | 0 | | | 0 | 51 | 0.00 |
log write slave phase | 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 | |
managed standby latch | 7 | 0.00 | | 0 | 0 | |
mapped buffers lru chain | 1 | 0.00 | | 0 | 0 | |
message bitmap latch | 1 | 0.00 | | 0 | 0 | |
message pool operations parent latch | 1 | 0.00 | | 0 | 0 | |
messages | 2,533 | 0.00 | | 0 | 0 | |
mostly latch-free SCN | 112 | 0.00 | | 0 | 0 | |
msg queue latch | 1 | 0.00 | | 0 | 0 | |
name-service namespace bucket | 1 | 0.00 | | 0 | 0 | |
ncodef allocation latch | 4 | 0.00 | | 0 | 0 | |
object queue header freelist | 8 | 0.00 | | 0 | 0 | |
object queue header operation | 908 | 0.00 | | 0 | 0 | |
object queue memory | 1 | 0.00 | | 0 | 0 | |
object stats modification | 4 | 0.00 | | 0 | 0 | |
parallel query alloc buffer | 33 | 0.00 | | 0 | 0 | |
parallel query stats | 1 | 0.00 | | 0 | 0 | |
parameter table management | 62 | 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 | |
pkey global statistics | 1 | 0.00 | | 0 | 0 | |
post/wait queue | 548 | 0.00 | | 0 | 1,194 | 0.34 |
process allocation | 35 | 0.00 | | 0 | 11 | 0.00 |
process group creation | 24 | 0.00 | | 0 | 0 | |
process pkey statistics list | 1 | 0.00 | | 0 | 0 | |
process queue | 1 | 0.00 | | 0 | 0 | |
process queue reference | 1 | 0.00 | | 0 | 0 | |
qmn task queue latch | 36 | 25.00 | 1.00 | 0 | 0 | |
query server freelists | 1 | 0.00 | | 0 | 0 | |
query server process | 152 | 0.00 | | 0 | 0 | |
queuing load statistics | 1 | 0.00 | | 0 | 0 | |
recovery domain hash list | 1 | 0.00 | | 0 | 0 | |
redo allocation | 524 | 0.19 | 0.00 | 0 | 3,051 | 0.00 |
redo copy | 1 | 0.00 | | 0 | 3,051 | 0.00 |
redo writing | 413 | 0.00 | | 0 | 0 | |
resmgr group change latch | 2 | 0.00 | | 0 | 0 | |
resmgr:active threads | 29 | 0.00 | | 0 | 0 | |
resmgr:actses change group | 12 | 0.00 | | 0 | 0 | |
resmgr:actses change state | 1 | 0.00 | | 0 | 0 | |
resmgr:free threads list | 28 | 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 | 13 | 0.00 | | 0 | 0 | |
resmgr:session queuing | 1 | 0.00 | | 0 | 0 | |
rm cas latch | 1 | 0.00 | | 0 | 0 | |
row cache objects | 151,429 | 0.00 | | 0 | 127 | 0.00 |
rules engine rule set statistics | 100 | 0.00 | | 0 | 0 | |
second Audit Vault latch | 1 | 0.00 | | 0 | 0 | |
sequence cache | 94 | 0.00 | | 0 | 0 | |
session allocation | 41 | 0.00 | | 0 | 28 | 0.00 |
session idle bit | 434 | 0.00 | | 0 | 0 | |
session queue latch | 1 | 0.00 | | 0 | 0 | |
session state list latch | 58 | 0.00 | | 0 | 0 | |
session statistics | 29 | 0.00 | | 0 | 0 | |
session switching | 18 | 0.00 | | 0 | 0 | |
session timer | 77 | 0.00 | | 0 | 0 | |
seventh spare latch - X parent | 1 | 0.00 | | 0 | 0 | |
sga hash table parent latch | 1 | 0.00 | | 0 | 0 | |
shard latch | 1 | 0.00 | | 0 | 0 | |
shared pool | 27,397 | 0.00 | | 0 | 0 | |
shared pool sim alloc | 12 | 0.00 | | 0 | 0 | |
shared pool simulator | 1,349 | 0.00 | | 0 | 0 | |
sim partition latch | 1 | 0.00 | | 0 | 0 | |
simulator hash latch | 10,668,303 | 0.00 | | 0 | 0 | |
simulator lru latch | 74 | 1.35 | 0.00 | 0 | 10,668,215 | 12.35 |
sixth spare latch - X parent | 1 | 0.00 | | 0 | 0 | |
sort extent pool | 122 | 0.00 | | 0 | 0 | |
space background task latch | 2,268 | 12.92 | 0.72 | 0 | 157 | 0.64 |
state object free list | 2 | 0.00 | | 0 | 0 | |
statistics aggregation | 140 | 0.00 | | 0 | 0 | |
subscriber Ht bkt | 1 | 0.00 | | 0 | 0 | |
tablespace key chain | 1 | 0.00 | | 0 | 0 | |
temp lob duration state obj allocation | 2 | 0.00 | | 0 | 0 | |
temporary table state object allocation | 1 | 0.00 | | 0 | 0 | |
test excl. parent l0 | 1 | 0.00 | | 0 | 0 | |
test excl. parent2 l0 | 1 | 0.00 | | 0 | 0 | |
test excl. parent2 lmid cln | 1 | 0.00 | | 0 | 0 | |
threshold alerts latch | 4 | 0.00 | | 0 | 0 | |
transaction allocation | 52 | 0.00 | | 0 | 0 | |
twelfth spare latch - children | 1 | 0.00 | | 0 | 0 | |
twenty-first spare latch - S par | 1 | 0.00 | | 0 | 0 | |
twenty-second spare latch - S par | 1 | 0.00 | | 0 | 0 | |
undo global data | 614 | 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 | |