| SQL Id | SQL Text |
| 0a7q9v9nd2qc1 | select count(*) from association$ where obj# = :1 |
| 0bjbaw9270kjv |
DECLARE l_last_full_time VARCHAR2(64); l_last_full_age NUMBER; l_last_full_size NUMBER; l_last_exec_full_time VARCHAR2(64); l_last_exec_full_status VARCHAR2(23); l_last_incr_time VARCHAR2(64); l_last_incr_age NUMBER; l_last_incr_size NUMBER; l_last_exec_incr_time VARCHAR2(64); l_last_exec_incr_status VARCHAR2(23); l_last_arch_time VARCHAR2(64); l_last_arch_age NUMBER; l_last_arch_size NUMBER; l_last_exec_arch_time VARCHAR2(64); l_last_exec_arch_status VARCHAR2(23); l_last_complete_backup VARCHAR2(64); l_recovery_window NUMBER; l_unprotected_data_window NUMBER; TYPE data_cursor_type IS REF CURSOR; data_cursor data_cursor_type; v_db_version VARCHAR2(10); db_version_121 CONSTANT VARCHAR2(10) := '12.1.0.0.0'; BEGIN SELECT LPAD(version, 10, '0') INTO v_db_version FROM v$instance; BEGIN SELECT to_char(end_time, 'YYYY-MM-DD HH24:MI:SS'), ROUND((sysdate-end_time)*24, 2), input_bytes INTO l_last_full_time, l_last_full_age, l_last_full_size FROM (SELECT end_time, input_bytes FROM v$rma
n_backup_job_details WHERE status LIKE 'COMPLETED%' AND input_type='DB FULL' AND output_device_type IN ('DISK', '*') ORDER BY end_time DESC) WHERE rownum = 1; EXCEPTION WHEN NO_DATA_FOUND THEN l_last_full_time := NULL; l_last_full_age := NULL; l_last_full_size := NULL; WHEN OTHERS THEN dbms_output.put_line(SQLERRM); END; BEGIN SELECT to_char(end_time, 'YYYY-MM-DD HH24:MI:SS'), status INTO l_last_exec_full_time, l_last_exec_full_status FROM (SELECT end_time, status FROM v$rman_backup_job_details WHERE status NOT LIKE 'RUNNING%' AND input_type='DB FULL' AND output_device_type IN ('DISK', '*') ORDER BY end_time DESC) WHERE rownum = 1; EXCEPTION WHEN NO_DATA_FOUND THEN l_last_exec_full_time := NULL; l_last_exec_full_status := NULL; WHEN OTHERS THEN dbms_output.put_line(SQLERRM); END; BEGIN SELECT to_char(end_time, 'YYYY-MM-DD HH24:MI:SS'), ROUND((sysdate-end_time)*24, 2), input_bytes INTO l_last_incr_time, l_last_incr_age, l_last_incr_size FROM (SELECT end_time, input_bytes FRO
M v$rman_backup_job_details WHERE status LIKE 'COMPLETED%' AND input_type='DB INCR' AND output_device_type IN ('DISK', '*') ORDER BY end_time DESC) WHERE rownum = 1; EXCEPTION WHEN NO_DATA_FOUND THEN l_last_incr_time := NULL; l_last_incr_age := NULL; l_last_incr_size := NULL; WHEN OTHERS THEN dbms_output.put_line(SQLERRM); END; BEGIN SELECT to_char(end_time, 'YYYY-MM-DD HH24:MI:SS'), status INTO l_last_exec_incr_time, l_last_exec_incr_status FROM (SELECT end_time, status FROM v$rman_backup_job_details WHERE status NOT LIKE 'RUNNING%' AND input_type='DB INCR' AND output_device_type IN ('DISK', '*') ORDER BY end_time DESC) WHERE rownum = 1; EXCEPTION WHEN NO_DATA_FOUND THEN l_last_exec_incr_time := NULL; l_last_exec_incr_status := NULL; WHEN OTHERS THEN dbms_output.put_line(SQLERRM); END; BEGIN SELECT to_char(end_time, 'YYYY-MM-DD HH24:MI:SS'), ROUND((sysdate-end_time)*24*60, 2), input_bytes INTO l_last_arch_time, l_last_arch_age, l_last_arch_size FROM (SELECT end_time, inpu
t_bytes FROM v$rman_backup_job_details WHERE status LIKE 'COMPLETED%' AND input_type='ARCHIVELOG' AND output_device_type IN ('DISK', '*') ORDER BY end_time DESC) WHERE rownum = 1; EXCEPTION WHEN NO_DATA_FOUND THEN l_last_arch_time := NULL; l_last_arch_age := NULL; l_last_arch_size := NULL; WHEN OTHERS THEN dbms_output.put_line(SQLERRM); END; BEGIN SELECT to_char(end_time, 'YYYY-MM-DD HH24:MI:SS'), status INTO l_last_exec_arch_time, l_last_exec_arch_status FROM (SELECT end_time, status FROM v$rman_backup_job_details WHERE status NOT LIKE 'RUNNING%' AND input_type='ARCHIVELOG' AND output_device_type IN ('DISK', '*') ORDER BY end_time DESC) WHERE rownum = 1; EXCEPTION WHEN NO_DATA_FOUND THEN l_last_exec_arch_time := NULL; l_last_exec_arch_status := NULL; WHEN OTHERS THEN dbms_output.put_line(SQLERRM); END; BEGIN IF (v_db_version >= db_version_121) THEN EXECUTE IMMEDIATE 'SELECT to_char(low_time, ''YYYY-MM-DD HH24:MI:SS'') as last_complete_backup, ROUND((high_time-low_time)*24*6
0*60, 2) as recovery_window, ROUND((sysdate-high_time)*24*60*60, 2) as unprotected_data_window FROM v$disk_restore_range rr1 WHERE rr1.high_time = (SELECT max(rr2.high_time) FROM v$disk_restore_range rr2 WHERE rr1.db_id = rr2.db_id)' INTO l_last_complete_backup, l_recovery_window, l_unprotected_data_window; END IF; EXCEPTION WHEN NO_DATA_FOUND THEN l_last_complete_backup := NULL; l_recovery_window := NULL; l_unprotected_data_window := NULL; WHEN OTHERS THEN dbms_output.put_line(SQLERRM); END; OPEN data_cursor FOR SELECT l_last_full_time, l_last_full_age, l_last_full_size, l_last_exec_full_time, l_last_exec_full_status, l_last_incr_time, l_last_incr_age, l_last_incr_size, l_last_exec_incr_time, l_last_exec_incr_status, l_last_arch_time, l_last_arch_age, l_last_arch_size, l_last_exec_arch_time, l_last_exec_arch_status, l_last_complete_backup, l_recovery_window, l_unprotected_data_window FROM dual; :1 := data_cursor; END;
|
| 0hhmdwwgxbw0r | select obj#, type#, flags, related, bo, purgeobj, con# from RecycleBin$ where ts#=:1 and to_number(bitand(flags, 16)) = 16 order by dropscn |
| 1gu8t96d0bdmu | select t.ts#, t.file#, t.block#, nvl(t.bobj#, 0), nvl(t.tab#, 0), t.intcols, nvl(t.clucols, 0), t.audit$, t.flags, t.pctfree$, t.pctused$, t.initrans, t.maxtrans, t.rowcnt, t.blkcnt, t.empcnt, t.avgspc, t.chncnt, t.avgrln, t.analyzetime, t.samplesize, t.cols, t.property, nvl(t.degree, 1), nvl(t.instances, 1), t.avgspc_flb, t.flbcnt, t.kernelcols, nvl(t.trigflag, 0), nvl(t.spare1, 0), nvl(t.spare2, 0), t.spare4, t.spare6, ts.cachedblk, ts.cachehit, ts.logicalread from tab$ t, tab_stats$ ts where t.obj#= :1 and t.obj# = ts.obj# (+) |
| 1hxa21sh2kwdw | delete from tc_btx_file WHERE EXISTS(SELECT 1 FROM ima_file WHERE ima01 = tc_btx02 AND ima08 = 'P' AND ima1010 = '1' AND 1 = 1) |
| 1q39a3p6hzp7t | select 'analyze table ', TABLE_NAME, ' compute statistics;' from user_tables where TABLE_NAME like '%\_FILE' escape '\' |
| 2q93zsrvbdw48 | select grantee#, privilege#, nvl(col#, 0), max(mod(nvl(option$, 0), 2))from objauth$ where obj#=:1 group by grantee#, privilege#, nvl(col#, 0) order by grantee# |
| 330q95smuwnv9 | update hist_head$ set bucket_cnt=:3, row_cnt=:4, cache_cnt=:5, null_cnt=:6, timestamp#=:7, sample_size=:8, minimum=:9, maximum=:10, distcnt=:11, lowval=:12, hival=:13, density=:14, spare1=:15, spare2=:16, avgcln=:17, col#=:18 where obj#=:1 and intcol#=:2 |
| 38243c4tqrkxm | select u.name, o.name, o.namespace, o.type#, decode(bitand(i.property, 1024), 0, 0, 1), o.obj# from ind$ i, obj$ o, user$ u where i.obj#=:1 and o.obj#=i.bo# and o.owner#=u.user# |
| 3axxxnjp5jjwj | delete from ind_stats$ where obj#=:1 |
| 3d40u5r2jfcsd | update ind$ set ts#=:2, file#=:3, block#=:4, intcols=:5, type#=:6, flags=:7, property=:8, pctfree$=:9, initrans=:10, maxtrans=:11, blevel=:12, leafcnt=:13, distkey=:14, lblkkey=:15, dblkkey=:16, clufac=:17, cols=:18, analyzetime=:19, samplesize=:20, dataobj#=:21, degree=decode(:22, 1, null, :22), instances=decode(:23, 1, null, :23), rowcnt=:24, pctthres$=:31*256+:25, indmethod#=:26, trunccnt=:27, spare4=:29, spare2=:30, spare6=:32where obj#=:1 |
| 3ktacv9r56b51 | select owner#, name, namespace, remoteowner, linkname, p_timestamp, p_obj#, nvl(property, 0), subname, type#, d_attrs from dependency$ d, obj$ o where d_obj#=:1 and p_obj#=obj#(+) order by order# |
| 3kywng531fcxu | delete from tab_stats$ where obj#=:1 |
| 3qt0dku301xw0 | select u.name, o.name, o.obj#, o.type# from ind$ i, obj$ o, user$ u where i.obj#=:1 and o.obj#=i.bo# and o.owner#=u.user# |
| 5hajs402v7dqg | select i.obj# from ind$ i where i.bo#=:1 order by i.obj# desc |
| 5n1fs4m2n2y0r | select pos#, intcol#, col#, spare1, bo#, spare2, spare3 from icol$ where obj#=:1 |
| 6ajkhukk78nsr | begin prvt_hdm.auto_execute( :dbid, :inst_num , :end_snap_id ); end; |
| 6aq34nj2zb2n7 | select col#, grantee#, privilege#, max(mod(nvl(option$, 0), 2)) from objauth$ where obj#=:1 and col# is not null group by privilege#, col#, grantee# order by col#, grantee# |
| 6q42j0018w7t8 | insert into sys.wri$_optstat_ind_history(obj#, rowcnt, leafcnt, distkey, lblkkey, dblkkey, clufac, blevel, analyzetime, samplesize, guessq, cachedblk, cachehit, logicalread, savtime, flags) values (:1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :12, :13, :14, :15, :16) |
| 7g4rxwbvhdh3q | 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.instance_number = :inst AND endsn.snap_id = :eid AND startsn.dbid = :dbid AND startsn.instance_number = endsn.instance_number AND startsn.snap_id = :bid and endsn.instance_number = :inst GROUP BY startsn.stat_id, smap.keh_id ORDER BY startsn.stat_id ASC |
| 7ng34ruy5awxq | select i.obj#, i.ts#, i.file#, i.block#, i.intcols, i.type#, i.flags, i.property, i.pctfree$, i.initrans, i.maxtrans, i.blevel, i.leafcnt, i.distkey, i.lblkkey, i.dblkkey, i.clufac, i.cols, i.analyzetime, i.samplesize, i.dataobj#, nvl(i.degree, 1), nvl(i.instances, 1), i.rowcnt, mod(i.pctthres$, 256), i.indmethod#, i.trunccnt, nvl(c.unicols, 0), nvl(c.deferrable#+c.valid#, 0), nvl(i.spare1, i.intcols), i.spare4, i.spare2, i.spare6, decode(i.pctthres$, null, null, mod(trunc(i.pctthres$/256), 256)), ist.cachedblk, ist.cachehit, ist.logicalread from ind$ i, ind_stats$ ist, (select enabled, min(cols) unicols, min(to_number(bitand(defer, 1))) deferrable#, min(to_number(bitand(defer, 4))) valid# from cdef$ where obj#=:1 and enabled > 1 group by enabled) c where i.obj#=c.enabled(+) and i.obj# = ist.obj#(+) and i.bo#=:1 order by i.obj# |
| 7tt3tfgb57599 | delete /*+ index(mm) */ from sys.mon_mods_all$ mm where obj# = :1 |
| 833wvjbwufzfa | delete from sys.aud$ where NTIMESTAMP# < to_date(sysdate-30) |
| 83taa7kaw59c1 | select name, intcol#, segcol#, type#, length, nvl(precision#, 0), decode(type#, 2, nvl(scale, -127/*MAXSB1MINAL*/), 178, scale, 179, scale, 180, scale, 181, scale, 182, scale, 183, scale, 231, scale, 0), null$, fixedstorage, nvl(deflength, 0), default$, rowid, col#, property, nvl(charsetid, 0), nvl(charsetform, 0), spare1, spare2, nvl(spare3, 0) from col$ where obj#=:1 order by intcol# |
| 8swypbbr0m372 | select order#, columns, types from access$ where d_obj#=:1 |
| 96g93hntrzjtr | select /*+ rule */ bucket_cnt, row_cnt, cache_cnt, null_cnt, timestamp#, sample_size, minimum, maximum, distcnt, lowval, hival, density, col#, spare1, spare2, avgcln from hist_head$ where obj#=:1 and intcol#=:2 |
| 9dzjush42kmfs | select spare4 from sys.optstat_hist_control$ where sname=:1 |
| 9gkq7rruycsjp | select parttype, partcnt, partkeycols, flags, defts#, defpctfree, defpctused, definitrans, defmaxtrans, deftiniexts, defextsize, defminexts, defmaxexts, defextpct, deflists, defgroups, deflogging, spare1, mod(spare2, 256) subparttype, mod(trunc(spare2/256), 256) subpartkeycols, mod(trunc(spare2/65536), 65536) defsubpartcnt, mod(trunc(spare2/4294967296), 256) defhscflags, mod(spare3, 256) interval_dty, rowid, defmaxsize from partobj$ where obj# = :1 |
| 9nxs1sq5jyyf1 | select count(i.obj#) from ind$ i where i.bo#=:1 |
| 9tgj4g8y4rwy8 | select type#, blocks, extents, minexts, maxexts, extsize, extpct, user#, iniexts, NVL(lists, 65535), NVL(groups, 65535), cachehint, hwmincr, NVL(spare1, 0), NVL(scanhint, 0), NVL(bitmapranges, 0) from seg$ where ts#=:1 and file#=:2 and block#=:3 |
| aujtsaq37rkrh |
DECLARE instance_number NUMBER; latest_task_id NUMBER; start_time VARCHAR2(1024); end_time VARCHAR2(1024); db_id NUMBER; TYPE data_cursor_type IS REF CURSOR; data_cursor data_cursor_type; CURSOR get_latest_task_id IS SELECT TASK_LIST.TASK_ID FROM (SELECT /*+ NO_MERGE(T) ORDERED */ T.TASK_ID FROM (select * from dba_advisor_tasks order by task_id desc) T, dba_advisor_parameters_proj P1, dba_advisor_parameters_proj P2 WHERE T.ADVISOR_NAME='ADDM' AND T.STATUS = 'COMPLETED' AND T.EXECUTION_START >= (sysdate - 1) AND T.HOW_CREATED = 'AUTO' AND T.TASK_ID = P1.TASK_ID AND P1.PARAMETER_NAME = 'INSTANCE' AND P1.PARAMETER_VALUE = SYS_CONTEXT('USERENV', 'INSTANCE') AND T.TASK_ID = P2.TASK_ID AND P2.PARAMETER_NAME = 'DB_ID' AND P2.PARAMETER_VALUE = to_char(db_id) ORDER BY T.TASK_ID DESC) TASK_LIST WHERE ROWNUM = 1; BEGIN SELECT dbid INTO db_id from v$database; OPEN get_latest_task_id; FETCH get_latest_task_id INTO latest_task_id; CLOSE get_latest_task_id; FOR param_info IN (SELECT parameter_v
alue, parameter_name FROM dba_advisor_parameters_proj WHERE task_id= latest_task_id AND (parameter_name='START_TIME' OR parameter_name='END_TIME') ORDER BY 2) LOOP IF param_info.parameter_name = 'END_TIME' THEN end_time := param_info.parameter_value; ELSIF param_info.parameter_name = 'START_TIME' THEN start_time := param_info.parameter_value; END IF; END LOOP; OPEN data_cursor FOR WITH recInfo AS ( SELECT /*+ NO_MERGE */ finding_id, count(r.rec_id) recCount, r.type FROM DBA_ADVISOR_RECOMMENDATIONS r WHERE task_id=latest_task_id GROUP BY r.finding_id, r.type ), f_curr AS ( SELECT /*+ NO_MERGE */ DISTINCT finding_name FROM DBA_ADVISOR_FINDINGS WHERE task_id=latest_task_id ), tasks AS ( SELECT /*+ NO_MERGE */ t.task_id, i.local_task_id, t.end_time, t.begin_time FROM DBA_ADDM_TASKS t, DBA_ADDM_INSTANCES i WHERE t.end_time>sysdate -1 AND t.task_id=i.task_id AND i.instance_number=SYS_CONTEXT('USERENV', 'INSTANCE') AND t.requested_analysis='INSTANCE' ), f_all AS ( SELECT /*+ NO_MERG
E */ COUNT(fa.task_id) finding_count, fa.finding_name FROM tasks, DBA_ADVISOR_FINDINGS fa WHERE fa.task_id=tasks.task_id AND fa.type<>'INFORMATION' AND fa.type<>'WARNING' AND fa.parent=0 GROUP BY fa.finding_name ), history AS ( SELECT /*+ NO_MERGE */ finding_name, finding_count FROM f_all JOIN f_curr USING (finding_name) ) SELECT latest_task_id task_id, f.finding_id finding_id, DECODE(recInfo.type, null, 'Uncategorized', recInfo.type) rec_type, recInfo.recCount rec_count, f.perc_active_sess impact_pct, f.message message, TO_CHAR(TO_DATE(start_time , 'MM-DD-YYYY HH24:MI:SS'), 'YYYY-MM-DD HH24:MI:SS') start_time, TO_CHAR(TO_DATE(end_time, 'MM-DD-YYYY HH24:MI:SS'), 'YYYY-MM-DD HH24:MI:SS') end_time, history.finding_count finding_count, f.finding_name finding_name, f.active_sessions active_sessions FROM DBA_ADDM_FINDINGS f, recInfo, history WHERE f.task_id=latest_task_id AND f.type<>'INFORMATION' AND f.type<>'WARNING' AND f.filtered<>'Y' AND f
.parent=0 AND f.finding_id=recInfo.finding_id (+) AND f.finding_name=history.finding_name ORDER BY f.finding_id; :1 := data_cursor; END; |
| b5cr4hhndmbuf | update tab$ set ts#=:2, file#=:3, block#=:4, bobj#=decode(:5, 0, null, :5), tab#=decode(:6, 0, null, :6), intcols=:7, kernelcols=:8, clucols=decode(:9, 0, null, :9), audit$=:10, flags=:11, pctfree$=:12, pctused$=:13, initrans=:14, maxtrans=:15, rowcnt=:16, blkcnt=:17, empcnt=:18, avgspc=:19, chncnt=:20, avgrln=:21, analyzetime=:22, samplesize=:23, cols=:24, property=:25, degree=decode(:26, 1, null, :26), instances=decode(:27, 1, null, :27), dataobj#=:28, avgspc_flb=:29, flbcnt=:30, trigflag=:31, spare1=:32, spare2=decode(:33, 0, null, :33), spare4=:34, spare6=:35 where obj#=:1 |
| bqfx5q2jas08u | SELECT TASK_LIST.TASK_ID FROM (SELECT /*+ NO_MERGE(T) ORDERED */ T.TASK_ID FROM (SELECT * FROM DBA_ADVISOR_TASKS ORDER BY TASK_ID DESC) T, DBA_ADVISOR_PARAMETERS_PROJ P1, DBA_ADVISOR_PARAMETERS_PROJ P2 WHERE T.ADVISOR_NAME='ADDM' AND T.STATUS = 'COMPLETED' AND T.EXECUTION_START >= (SYSDATE - 1) AND T.HOW_CREATED = 'AUTO' AND T.TASK_ID = P1.TASK_ID AND P1.PARAMETER_NAME = 'INSTANCE' AND P1.PARAMETER_VALUE = SYS_CONTEXT('USERENV', 'INSTANCE') AND T.TASK_ID = P2.TASK_ID AND P2.PARAMETER_NAME = 'DB_ID' AND P2.PARAMETER_VALUE = TO_CHAR(:B1 ) ORDER BY T.TASK_ID DESC) TASK_LIST WHERE ROWNUM = 1 |
| c2tgzxvda0vfn | select type# from ind$ where obj# = :1 |
| cpr1yyzpfkw2a | delete /*+ index(m) */ from sys.mon_mods$ m where obj# = :1 |
| fcwg2b0rszakk | select p.valchar from sys.optstat_user_prefs$ p where p.obj#=:1 and p.pname=:2 |
| gsfnqdfcvy33q | delete from superobj$ where subobj# = :1 |
| gtfzbk4ajr15q | select count(*) from association$ a, coltype$ c, obj$ o where c.obj#= :1 AND c.toid = o.oid$ and o.obj# = a.obj# |
| Statistic | Total | per Second | per Trans |
| Batched IO (bound) vector count | 12 | 0.00 | 0.05 |
| Batched IO (full) vector count | 0 | 0.00 | 0.00 |
| Batched IO (space) vector count | 0 | 0.00 | 0.00 |
| Batched IO block miss count | 60 | 0.02 | 0.23 |
| Batched IO buffer defrag count | 0 | 0.00 | 0.00 |
| Batched IO double miss count | 4 | 0.00 | 0.02 |
| Batched IO same unit count | 32 | 0.01 | 0.12 |
| Batched IO single block count | 9 | 0.00 | 0.03 |
| Batched IO slow jump count | 0 | 0.00 | 0.00 |
| Batched IO vector block count | 19 | 0.01 | 0.07 |
| Batched IO vector read count | 7 | 0.00 | 0.03 |
| Block Cleanout Optim referenced | 240 | 0.07 | 0.91 |
| CCursor + sql area evicted | 9 | 0.00 | 0.03 |
| CPU used by this session | 186,497 | 51.76 | 709.11 |
| CPU used when call started | 185,666 | 51.53 | 705.95 |
| CR blocks created | 2 | 0.00 | 0.01 |
| Cached Commit SCN referenced | 0 | 0.00 | 0.00 |
| Commit SCN cached | 789 | 0.22 | 3.00 |
| DBWR checkpoint buffers written | 163,910 | 45.49 | 623.23 |
| DBWR checkpoints | 8 | 0.00 | 0.03 |
| DBWR object drop buffers written | 3,778 | 1.05 | 14.37 |
| DBWR revisited being-written buffer | 1,267 | 0.35 | 4.82 |
| DBWR tablespace checkpoint buffers written | 6 | 0.00 | 0.02 |
| DBWR thread checkpoint buffers written | 0 | 0.00 | 0.00 |
| DBWR transaction table writes | 724 | 0.20 | 2.75 |
| DBWR undo block writes | 68,679 | 19.06 | 261.14 |
| HSC Heap Segment Block Changes | 1,452,327 | 403.05 | 5,522.16 |
| Heap Segment Array Inserts | 44,149 | 12.25 | 167.87 |
| Heap Segment Array Updates | 410 | 0.11 | 1.56 |
| IMU CR rollbacks | 0 | 0.00 | 0.00 |
| IMU Flushes | 242 | 0.07 | 0.92 |
| IMU Redo allocation size | 215,056 | 59.68 | 817.70 |
| IMU commits | 20 | 0.01 | 0.08 |
| IMU contention | 2 | 0.00 | 0.01 |
| IMU ktichg flush | 0 | 0.00 | 0.00 |
| IMU pool not allocated | 2 | 0.00 | 0.01 |
| IMU recursive-transaction flush | 0 | 0.00 | 0.00 |
| IMU undo allocation size | 387,544 | 107.55 | 1,473.55 |
| IMU- failed to get a private strand | 2 | 0.00 | 0.01 |
| 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 | 607 | 0.17 | 2.31 |
| PX local messages recv'd | 0 | 0.00 | 0.00 |
| PX local messages sent | 0 | 0.00 | 0.00 |
| Requests to/from client | 36,687 | 10.18 | 139.49 |
| RowCR - row contention | 0 | 0.00 | 0.00 |
| 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 undo segment recovery | 0 | 0.00 | 0.00 |
| SMON posted for undo segment shrink | 3 | 0.00 | 0.01 |
| SQL*Net roundtrips to/from client | 36,687 | 10.18 | 139.49 |
| SQL*Net roundtrips to/from dblink | 0 | 0.00 | 0.00 |
| 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 | 4,782 | 1.33 | 18.18 |
| auto extends on undo tablespace | 0 | 0.00 | 0.00 |
| background checkpoints completed | 3 | 0.00 | 0.01 |
| background checkpoints started | 3 | 0.00 | 0.01 |
| background timeouts | 20,022 | 5.56 | 76.13 |
| branch node splits | 0 | 0.00 | 0.00 |
| buffer is not pinned count | 2,945,499 | 817.43 | 11,199.62 |
| buffer is pinned count | 10,538,258 | 2,924.56 | 40,069.42 |
| bytes received via SQL*Net from client | 11,027,490 | 3,060.33 | 41,929.62 |
| bytes received via SQL*Net from dblink | 0 | 0.00 | 0.00 |
| bytes sent via SQL*Net to client | 7,338,821 | 2,036.66 | 27,904.26 |
| bytes sent via SQL*Net to dblink | 0 | 0.00 | 0.00 |
| calls to get snapshot scn: kcmgss | 1,309,230 | 363.33 | 4,978.06 |
| calls to kcmgas | 184,676 | 51.25 | 702.19 |
| calls to kcmgcs | 215,400 | 59.78 | 819.01 |
| cell physical IO interconnect bytes | 67,298,329,600 | 18,676,502.35 | 255,887,184.79 |
| change write time | 2,551 | 0.71 | 9.70 |
| cleanout - number of ktugct calls | 8,694 | 2.41 | 33.06 |
| cleanouts and rollbacks - consistent read gets | 0 | 0.00 | 0.00 |
| cleanouts only - consistent read gets | 3,232 | 0.90 | 12.29 |
| cluster key scan block gets | 172,159 | 47.78 | 654.60 |
| cluster key scans | 150,131 | 41.66 | 570.84 |
| commit batch performed | 0 | 0.00 | 0.00 |
| commit batch requested | 0 | 0.00 | 0.00 |
| commit batch/immediate performed | 6 | 0.00 | 0.02 |
| commit batch/immediate requested | 6 | 0.00 | 0.02 |
| commit cleanout failures: block lost | 0 | 0.00 | 0.00 |
| commit cleanout failures: buffer being written | 1,192 | 0.33 | 4.53 |
| commit cleanout failures: callback failure | 254 | 0.07 | 0.97 |
| commit cleanout failures: cannot pin | 0 | 0.00 | 0.00 |
| commit cleanouts | 215,969 | 59.94 | 821.17 |
| commit cleanouts successfully completed | 214,523 | 59.53 | 815.68 |
| commit immediate performed | 6 | 0.00 | 0.02 |
| commit immediate requested | 6 | 0.00 | 0.02 |
| commit txn count during cleanout | 4,708 | 1.31 | 17.90 |
| consistent changes | 13 | 0.00 | 0.05 |
| consistent gets | 14,802,838 | 4,108.05 | 56,284.56 |
| consistent gets - examination | 2,501,202 | 694.13 | 9,510.27 |
| consistent gets direct | 72,008 | 19.98 | 273.79 |
| consistent gets from cache | 14,730,830 | 4,088.07 | 56,010.76 |
| consistent gets from cache (fastpath) | 8,303,427 | 2,304.35 | 31,571.97 |
| cursor authentications | 739 | 0.21 | 2.81 |
| data blocks consistent reads - undo records applied | 2 | 0.00 | 0.01 |
| db block gets | 5,289,606 | 1,467.96 | 20,112.57 |
| db block gets direct | 16 | 0.00 | 0.06 |
| db block gets from cache | 5,289,590 | 1,467.96 | 20,112.51 |
| db block gets from cache (fastpath) | 1,198,053 | 332.48 | 4,555.33 |
| deferred (CURRENT) block cleanout applications | 157,562 | 43.73 | 599.10 |
| dirty buffers inspected | 18,560 | 5.15 | 70.57 |
| enqueue conversions | 2,439 | 0.68 | 9.27 |
| enqueue deadlocks | 0 | 0.00 | 0.00 |
| enqueue releases | 300,368 | 83.36 | 1,142.08 |
| enqueue requests | 300,366 | 83.36 | 1,142.08 |
| enqueue timeouts | 0 | 0.00 | 0.00 |
| enqueue waits | 209 | 0.06 | 0.79 |
| exchange deadlocks | 0 | 0.00 | 0.00 |
| failed probes on index block reclamation | 55 | 0.02 | 0.21 |
| file io service time | 0 | 0.00 | 0.00 |
| frame signature mismatch | 0 | 0.00 | 0.00 |
| free buffer inspected | 6,770,531 | 1,878.94 | 25,743.46 |
| free buffer requested | 6,794,535 | 1,885.61 | 25,834.73 |
| global undo segment hints helped | 0 | 0.00 | 0.00 |
| global undo segment hints were stale | 0 | 0.00 | 0.00 |
| heap block compress | 15,854 | 4.40 | 60.28 |
| hot buffers moved to head of LRU | 187,567 | 52.05 | 713.18 |
| immediate (CR) block cleanout applications | 3,232 | 0.90 | 12.29 |
| immediate (CURRENT) block cleanout applications | 15,339 | 4.26 | 58.32 |
| index crx upgrade (positioned) | 9,456 | 2.62 | 35.95 |
| index crx upgrade (prefetch) | 0 | 0.00 | 0.00 |
| index fast full scans (full) | 22 | 0.01 | 0.08 |
| index fetch by key | 487,644 | 135.33 | 1,854.16 |
| index scans kdiixs1 | 884,224 | 245.39 | 3,362.07 |
| leaf node 90-10 splits | 126 | 0.03 | 0.48 |
| leaf node splits | 135 | 0.04 | 0.51 |
| lob reads | 0 | 0.00 | 0.00 |
| lob writes | 17 | 0.00 | 0.06 |
| lob writes unaligned | 17 | 0.00 | 0.06 |
| logical read bytes from cache | 164,007,280,640 | 45,514,983.52 | 623,601,827.53 |
| max cf enq hold time | 0 | 0.00 | 0.00 |
| messages received | 80,398 | 22.31 | 305.70 |
| messages sent | 80,398 | 22.31 | 305.70 |
| min active SCN optimization applied on CR | 86 | 0.02 | 0.33 |
| no buffer to keep pinned count | 4 | 0.00 | 0.02 |
| no work - consistent read gets | 9,402,012 | 2,609.23 | 35,749.10 |
| non-idle wait count | 4,137,135 | 1,148.13 | 15,730.55 |
| parse count (describe) | 14 | 0.00 | 0.05 |
| parse count (failures) | 21 | 0.01 | 0.08 |
| parse count (hard) | 34,764 | 9.65 | 132.18 |
| parse time cpu | 2,945 | 0.82 | 11.20 |
| physical read IO requests | 3,936,745 | 1,092.52 | 14,968.61 |
| physical read bytes | 57,733,455,872 | 16,022,077.08 | 219,518,843.62 |
| physical read total IO requests | 3,946,972 | 1,095.36 | 15,007.50 |
| physical read total bytes | 59,270,789,632 | 16,448,714.98 | 225,364,219.13 |
| physical read total multi block requests | 25,051 | 6.95 | 95.25 |
| physical reads cache | 6,668,137 | 1,850.53 | 25,354.13 |
| physical reads cache prefetch | 2,773,914 | 769.81 | 10,547.20 |
| physical reads direct | 379,404 | 105.29 | 1,442.60 |
| physical reads direct (lob) | 0 | 0.00 | 0.00 |
| physical reads direct temporary tablespace | 307,396 | 85.31 | 1,168.81 |
| physical reads prefetch warmup | 0 | 0.00 | 0.00 |
| physical write IO requests | 157,766 | 43.78 | 599.87 |
| physical write bytes | 4,075,544,576 | 1,131,037.25 | 15,496,367.21 |
| physical write total IO requests | 299,894 | 83.23 | 1,140.28 |
| physical write total bytes | 8,027,539,968 | 2,227,787.38 | 30,522,965.66 |
| physical write total multi block requests | 14,524 | 4.03 | 55.22 |
| physical writes direct | 307,412 | 85.31 | 1,168.87 |
| physical writes direct (lob) | 0 | 0.00 | 0.00 |
| physical writes direct temporary tablespace | 307,396 | 85.31 | 1,168.81 |
| physical writes from cache | 190,091 | 52.75 | 722.78 |
| physical writes non checkpoint | 429,017 | 119.06 | 1,631.24 |
| pinned buffers inspected | 2,904 | 0.81 | 11.04 |
| pinned cursors current | 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 | 267 | 0.07 | 1.02 |
| process last non-idle time | 3,465 | 0.96 | 13.17 |
| recursive aborts on index block reclamation | 0 | 0.00 | 0.00 |
| recursive calls | 4,064,222 | 1,127.90 | 15,453.32 |
| recursive cpu usage | 179,754 | 49.88 | 683.48 |
| redo KB read | 1,357,443 | 376.71 | 5,161.38 |
| redo blocks checksummed by FG (exclusive) | 466,121 | 129.36 | 1,772.32 |
| redo blocks written | 2,439,585 | 677.03 | 9,275.99 |
| redo buffer allocation retries | 15 | 0.00 | 0.06 |
| redo entries | 2,829,238 | 785.16 | 10,757.56 |
| redo log space requests | 44 | 0.01 | 0.17 |
| redo ordering marks | 22 | 0.01 | 0.08 |
| redo size for direct writes | 131,648 | 36.53 | 500.56 |
| redo subscn max counts | 32,778 | 9.10 | 124.63 |
| redo synch long waits | 42 | 0.01 | 0.16 |
| redo synch poll writes | 0 | 0.00 | 0.00 |
| redo synch polls | 0 | 0.00 | 0.00 |
| redo synch time | 14,348 | 3.98 | 54.56 |
| redo synch time (usec) | 143,511,298 | 39,826.98 | 545,670.33 |
| redo synch time overhead (usec) | 1,037,095,058 | 287,812.62 | 3,943,327.22 |
| redo synch time overhead count (<128 msec) | 0 | 0.00 | 0.00 |
| redo synch time overhead count (<2 msec) | 32,787 | 9.10 | 124.67 |
| redo synch time overhead count (<32 msec) | 3 | 0.00 | 0.01 |
| redo synch time overhead count (<8 msec) | 9 | 0.00 | 0.03 |
| redo synch time overhead count (>=128 msec) | 1 | 0.00 | 0.00 |
| redo synch writes | 32,811 | 9.11 | 124.76 |
| redo wastage | 17,841,536 | 4,951.35 | 67,838.54 |
| redo write info find | 32,800 | 9.10 | 124.71 |
| redo write info find fail | 0 | 0.00 | 0.00 |
| redo write time | 21,211 | 5.89 | 80.65 |
| redo writes | 67,734 | 18.80 | 257.54 |
| rollback changes - undo records applied | 5 | 0.00 | 0.02 |
| rollbacks only - consistent read gets | 2 | 0.00 | 0.01 |
| root node splits | 0 | 0.00 | 0.00 |
| rows fetched via callback | 65,353 | 18.14 | 248.49 |
| session connect time | 0 | 0.00 | 0.00 |
| shared hash latch upgrades - no wait | 51,339 | 14.25 | 195.21 |
| shared hash latch upgrades - wait | 0 | 0.00 | 0.00 |
| sorts (disk) | 47 | 0.01 | 0.18 |
| sorts (memory) | 149,451 | 41.48 | 568.25 |
| sorts (rows) | 2,707,980,010 | 751,513.38 | 10,296,501.94 |
| sql area evicted | 49,677 | 13.79 | 188.89 |
| sql area purged | 32,693 | 9.07 | 124.31 |
| summed dirty queue length | 38,328 | 10.64 | 145.73 |
| switch current to new buffer | 18,030 | 5.00 | 68.56 |
| table fetch by rowid | 5,664,497 | 1,572.00 | 21,538.01 |
| table fetch continued row | 138,652 | 38.48 | 527.19 |
| table scan blocks gotten | 965,574 | 267.96 | 3,671.38 |
| table scan rows gotten | 96,254,523 | 26,712.37 | 365,986.78 |
| table scans (direct read) | 4 | 0.00 | 0.02 |
| table scans (long tables) | 1 | 0.00 | 0.00 |
| table scans (rowid ranges) | 0 | 0.00 | 0.00 |
| table scans (short tables) | 33,321 | 9.25 | 126.70 |
| temp space allocated (bytes) | 0 | 0.00 | 0.00 |
| total cf enq hold time | 1,350 | 0.37 | 5.13 |
| total number of cf enq holders | 225 | 0.06 | 0.86 |
| total number of times SMON posted | 4 | 0.00 | 0.02 |
| transaction rollbacks | 6 | 0.00 | 0.02 |
| 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 | 511,696,604 | 142,005.05 | 1,945,614.46 |
| user logons cumulative | 45 | 0.01 | 0.17 |
| user logouts cumulative | 46 | 0.01 | 0.17 |
| write clones created in background | 3 | 0.00 | 0.01 |
| write clones created in foreground | 32,792 | 9.10 | 124.68 |
| Latch Name | Get Requests | Pct Get Miss | Avg Slps /Miss | Wait Time (s) | NoWait Requests | Pct NoWait Miss |
| AQ deq hash table latch | 1 | 0.00 | | 0 | 0 | |
| ASM db client latch | 2,839 | 0.00 | | 0 | 0 | |
| ASM map operation hash table | 1 | 0.00 | | 0 | 0 | |
| ASM network state latch | 57 | 0.00 | | 0 | 0 | |
| AWR Alerted Metric Element list | 29,784 | 0.00 | | 0 | 0 | |
| Change Notification Hash table latch | 1,201 | 0.00 | | 0 | 0 | |
| Consistent RBA | 67,744 | 0.00 | 0.00 | 0 | 0 | |
| DML lock allocation | 393,836 | 0.00 | | 0 | 0 | |
| Event Group Locks | 135 | 0.00 | | 0 | 0 | |
| FAL Queue | 150 | 0.00 | | 0 | 0 | |
| FIB s.o chain latch | 62 | 0.00 | | 0 | 0 | |
| FOB s.o list latch | 1,964 | 0.00 | | 0 | 0 | |
| File State Object Pool Parent Latch | 1 | 0.00 | | 0 | 0 | |
| I/O Staticstics latch | 1 | 0.00 | | 0 | 0 | |
| IPC stats buffer allocation latch | 1 | 0.00 | | 0 | 0 | |
| In memory undo latch | 3,465 | 0.00 | | 0 | 1,052 | 0.00 |
| JS Sh mem access | 5 | 0.00 | | 0 | 0 | |
| JS mem alloc latch | 8 | 0.00 | | 0 | 0 | |
| JS queue access latch | 9 | 0.00 | | 0 | 0 | |
| JS queue state obj latch | 21,748 | 0.00 | | 0 | 0 | |
| JS slv state obj latch | 5 | 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 | 1,391 | 0.00 | | 0 | 0 | |
| KMG resize request state object freelist | 16 | 0.00 | | 0 | 0 | |
| KTF sga latch | 20 | 0.00 | | 0 | 1,108 | 0.00 |
| KWQMN job cache list latch | 3 | 0.00 | | 0 | 0 | |
| KWQP Prop Status | 2 | 0.00 | | 0 | 0 | |
| KWQS pqsubs latch | 3 | 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 | 72 | 0.00 |
| Memory Management Latch | 376 | 0.00 | | 0 | 1,391 | 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 | 40 | 0.00 | | 0 | 0 | |
| Mutex | 1 | 0.00 | | 0 | 0 | |
| Mutex Stats | 1 | 0.00 | | 0 | 0 | |
| OS process | 373 | 0.00 | | 0 | 0 | |
| OS process allocation | 7,389 | 0.00 | | 0 | 0 | |
| OS process: request allocation | 133 | 0.00 | | 0 | 0 | |
| PL/SQL warning settings | 640 | 0.00 | | 0 | 0 | |
| PX hash array latch | 1 | 0.00 | | 0 | 0 | |
| QMT | 1 | 0.00 | | 0 | 0 | |
| Real-time plan statistics latch | 460,083 | 0.00 | | 0 | 0 | |
| Reserved Space Latch | 12 | 0.00 | | 0 | 0 | |
| SGA IO buffer pool latch | 1,799 | 0.00 | | 0 | 15,440 | 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 | 121 | 0.00 | | 0 | 1,200 | 0.00 |
| SQL memory manager workarea list latch | 117,824 | 0.00 | 0.00 | 0 | 0 | |
| Shared B-Tree | 145 | 0.00 | | 0 | 0 | |
| Streams Generic | 1 | 0.00 | | 0 | 0 | |
| Testing | 1 | 0.00 | | 0 | 0 | |
| Token Manager | 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 | 255,126 | 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 | 15,680 | 0.23 | 0.00 | 0 | 0 | |
| active service list | 6,985 | 0.00 | | 0 | 2,163 | 0.00 |
| alert log latch | 6 | 0.00 | | 0 | 0 | |
| archive control | 193 | 0.00 | | 0 | 0 | |
| archive process latch | 453 | 0.00 | | 0 | 0 | |
| begin backup scn array | 2 | 0.00 | | 0 | 0 | |
| buffer pool | 49 | 0.00 | | 0 | 0 | |
| business card | 1 | 0.00 | | 0 | 0 | |
| cache buffer handles | 9,042 | 0.00 | | 0 | 0 | |
| cache buffers chains | 54,192,886 | 0.00 | 0.00 | 0 | 12,374,113 | 0.00 |
| cache buffers lru chain | 376,505 | 0.02 | 0.05 | 0 | 9,666,186 | 0.00 |
| cache table scan latch | 39,675 | 0.00 | | 0 | 39,675 | 0.00 |
| call allocation | 3,868 | 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 | 146 | 0.00 | | 0 | 0 | |
| channel operations parent latch | 22,883 | 0.00 | | 0 | 0 | |
| checkpoint queue latch | 1,003,723 | 0.00 | 0.00 | 0 | 199,105 | 0.00 |
| client/application info | 494 | 0.00 | | 0 | 0 | |
| compile environment latch | 68 | 0.00 | | 0 | 0 | |
| corrupted undo seg latch | 21 | 0.00 | | 0 | 0 | |
| cp cmon/server latch | 1 | 0.00 | | 0 | 0 | |
| cp pool latch | 1 | 0.00 | | 0 | 0 | |
| cp server hash latch | 1 | 0.00 | | 0 | 0 | |
| cp sga latch | 57 | 0.00 | | 0 | 0 | |
| cvmap freelist lock | 1 | 0.00 | | 0 | 0 | |
| deferred cleanup latch | 57 | 0.00 | | 0 | 0 | |
| dml lock allocation | 59 | 0.00 | | 0 | 0 | |
| done queue latch | 1 | 0.00 | | 0 | 0 | |
| dummy allocation | 138 | 0.00 | | 0 | 0 | |
| eighth spare latch - X parent | 1 | 0.00 | | 0 | 0 | |
| eleventh spare latch - children | 1 | 0.00 | | 0 | 0 | |
| enqueue freelist latch | 1 | 0.00 | | 0 | 68,475 | 0.00 |
| enqueue hash chains | 603,545 | 0.00 | | 0 | 12 | 0.00 |
| fifteenth spare latch - children | 1 | 0.00 | | 0 | 0 | |
| file cache latch | 2,064 | 0.00 | | 0 | 0 | |
| first Audit Vault latch | 41 | 0.00 | | 0 | 0 | |
| flashback copy | 1 | 0.00 | | 0 | 0 | |
| fourteenth spare latch - children | 1 | 0.00 | | 0 | 0 | |
| fourth Audit Vault latch | 1 | 0.00 | | 0 | 0 | |
| gc element | 1 | 0.00 | | 0 | 0 | |
| gcs commit scn state | 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 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 value block free list | 1 | 0.00 | | 0 | 0 | |
| global KZLD latch for mem in SGA | 41 | 0.00 | | 0 | 0 | |
| global tx hash mapping | 387 | 0.00 | | 0 | 0 | |
| granule operation | 1 | 0.00 | | 0 | 0 | |
| hash table column usage latch | 591 | 0.00 | | 0 | 176,545 | 0.00 |
| hash table modification latch | 103 | 0.00 | | 0 | 0 | |
| heartbeat check | 1 | 0.00 | | 0 | 0 | |
| internal temp table object number allocation latch | 21 | 0.00 | | 0 | 0 | |
| intra txn parallel recovery | 1 | 0.00 | | 0 | 0 | |
| io pool granule metadata list | 1 | 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 | 784 | 0.00 | | 0 | 0 | |
| k2q lock allocation | 1 | 0.00 | | 0 | 0 | |
| kcbtsemkid latch | 3 | 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 | |
| kokc descriptor allocation latch | 8 | 0.00 | | 0 | 0 | |
| krbmrosl | 100 | 0.00 | | 0 | 0 | |
| ksfv messages | 1 | 0.00 | | 0 | 0 | |
| ksim group membership cache | 1 | 0.00 | | 0 | 0 | |
| kss move lock | 39 | 0.00 | | 0 | 0 | |
| ksuosstats global area | 364 | 0.00 | | 0 | 0 | |
| ksv allocation latch | 133 | 0.00 | | 0 | 0 | |
| ksv class latch | 77 | 0.00 | | 0 | 0 | |
| ksv msg queue latch | 1 | 0.00 | | 0 | 0 | |
| ksz_so allocation latch | 133 | 0.00 | | 0 | 0 | |
| ktm global data | 58 | 0.00 | | 0 | 0 | |
| kwqbsn:qsga | 131 | 0.00 | | 0 | 0 | |
| lgwr LWN SCN | 68,484 | 0.00 | 0.00 | 0 | 0 | |
| list of block allocation | 5,711 | 0.00 | | 0 | 0 | |
| loader state object freelist | 110 | 0.00 | | 0 | 0 | |
| lob segment dispenser latch | 1 | 0.00 | | 0 | 0 | |
| lob segment hash table latch | 13 | 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 local | 1 | 0.00 | | 0 | 0 | |
| logminer work area | 1 | 0.00 | | 0 | 0 | |
| longop free list parent | 3 | 0.00 | | 0 | 2 | 0.00 |
| managed standby latch | 147 | 0.00 | | 0 | 0 | |
| mapped buffers lru chain | 1 | 0.00 | | 0 | 0 | |
| message pool operations parent latch | 688 | 0.00 | | 0 | 0 | |
| messages | 287,112 | 0.02 | 0.00 | 0 | 0 | |
| mostly latch-free SCN | 69,038 | 0.62 | 0.02 | 0 | 0 | |
| msg queue latch | 1 | 0.00 | | 0 | 0 | |
| multiblock read objects | 99,814 | 0.00 | | 0 | 0 | |
| name-service namespace bucket | 1 | 0.00 | | 0 | 0 | |
| ncodef allocation latch | 57 | 0.00 | | 0 | 0 | |
| nineth spare latch - X parent | 1 | 0.00 | | 0 | 0 | |
| object queue header heap | 97,478 | 0.00 | | 0 | 71,156 | 0.00 |
| object queue header operation | 14,216,674 | 0.00 | 0.00 | 0 | 9,711 | 0.00 |
| object stats modification | 70,479 | 0.00 | | 0 | 0 | |
| parallel query alloc buffer | 481 | 0.00 | | 0 | 0 | |
| parallel query stats | 1 | 0.00 | | 0 | 0 | |
| parameter list | 245 | 0.00 | | 0 | 0 | |
| parameter table management | 544 | 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 | 76,493 | 0.00 | 0.00 | 0 | 38,035 | 0.00 |
| process allocation | 154 | 0.00 | | 0 | 66 | 0.00 |
| process group creation | 133 | 0.00 | | 0 | 0 | |
| process queue | 1 | 0.00 | | 0 | 0 | |
| process queue reference | 1 | 0.00 | | 0 | 0 | |
| qmn task queue latch | 525 | 0.00 | | 0 | 0 | |
| query server freelists | 1 | 0.00 | | 0 | 0 | |
| queued dump request | 12 | 0.00 | | 0 | 0 | |
| queuing load statistics | 1 | 0.00 | | 0 | 0 | |
| recovery domain hash list | 1 | 0.00 | | 0 | 0 | |
| redo allocation | 218,210 | 0.11 | 0.01 | 0 | 2,829,195 | 0.00 |
| redo copy | 1 | 0.00 | | 0 | 2,829,232 | 0.01 |
| redo writing | 221,064 | 0.01 | 0.00 | 0 | 0 | |
| reservation so alloc latch | 6 | 0.00 | | 0 | 0 | |
| resmgr group change latch | 46 | 0.00 | | 0 | 0 | |
| resmgr:active threads | 138 | 0.00 | | 0 | 0 | |
| resmgr:actses change group | 63 | 0.00 | | 0 | 0 | |
| resmgr:actses change state | 1 | 0.00 | | 0 | 0 | |
| resmgr:free threads list | 137 | 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 | 81 | 0.00 | | 0 | 0 | |
| resmgr:session queuing | 1 | 0.00 | | 0 | 0 | |
| rm cas latch | 1 | 0.00 | | 0 | 0 | |
| row cache objects | 5,355,741 | 0.01 | 0.02 | 0 | 12,349 | 0.05 |
| rules engine rule set statistics | 100 | 0.00 | | 0 | 0 | |
| second Audit Vault latch | 1 | 0.00 | | 0 | 0 | |
| sequence cache | 250 | 0.00 | | 0 | 0 | |
| session allocation | 33,826 | 0.00 | | 0 | 33,452 | 0.00 |
| session idle bit | 174,249 | 0.00 | | 0 | 0 | |
| session queue latch | 1 | 0.00 | | 0 | 0 | |
| session state list latch | 86 | 0.00 | | 0 | 0 | |
| session switching | 125 | 0.00 | | 0 | 0 | |
| session timer | 1,201 | 0.00 | | 0 | 0 | |
| seventh spare latch - X parent | 1 | 0.00 | | 0 | 0 | |
| shared pool | 2,527,257 | 0.00 | 0.57 | 0 | 3,076 | 0.03 |
| shared pool sim alloc | 1 | 0.00 | | 0 | 0 | |
| shared pool simulator | 164,571 | 0.00 | | 0 | 0 | |
| sim partition latch | 2 | 0.00 | | 0 | 2,169 | 0.00 |
| simulator hash latch | 2,810,456 | 0.00 | | 0 | 0 | |
| simulator lru latch | 118,603 | 0.02 | 0.05 | 0 | 1,858,700 | 0.00 |
| sixth spare latch - X parent | 1 | 0.00 | | 0 | 0 | |
| sort extent pool | 2,354 | 0.00 | | 0 | 0 | |
| space background state object latch | 8 | 0.00 | | 0 | 0 | |
| space background task latch | 4,115 | 0.12 | 0.00 | 0 | 2,403 | 0.00 |
| state object free list | 12 | 0.00 | | 0 | 0 | |
| statistics aggregation | 336 | 0.00 | | 0 | 0 | |
| tablespace key chain | 1 | 0.00 | | 0 | 0 | |
| temp lob duration state obj allocation | 2 | 0.00 | | 0 | 0 | |
| tenth spare latch - X parent | 1 | 0.00 | | 0 | 0 | |
| test excl. parent l0 | 1 | 0.00 | | 0 | 0 | |
| test excl. parent2 l0 | 1 | 0.00 | | 0 | 0 | |
| thirteenth spare latch - children | 1 | 0.00 | | 0 | 0 | |
| threshold alerts latch | 216 | 0.00 | | 0 | 0 | |
| transaction allocation | 1,190 | 0.00 | | 0 | 0 | |
| transaction branch allocation | 1,585 | 0.00 | | 0 | 0 | |
| twelfth spare latch - children | 1 | 0.00 | | 0 | 0 | |
| twenty-fifth spare latch - S par | 1 | 0.00 | | 0 | 0 | |
| twenty-first spare latch - S par | 1 | 0.00 | | 0 | 0 | |
| twenty-fourth spare latch - S par | 1 | 0.00 | | 0 | 0 | |
| twenty-second spare latch - S par | 1 | 0.00 | | 0 | 0 | |
| twenty-third spare latch - S par | 1 | 0.00 | | 0 | 0 | |
| undo global data | 285,068 | 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 | |
| write info latch | 0 | | | 0 | 67,737 | 0.00 |