SQL Id | SQL Text |
089dbukv1aanh | SELECT SYS_EXTRACT_UTC(SYSTIMESTAMP) FROM DUAL |
08bqjmf8490s2 | SELECT PARAMETER_VALUE FROM MGMT_PARAMETERS WHERE PARAMETER_NAME = :B1 |
0k8522rmdzg4k | select privilege# from sysauth$ where (grantee#=:1 or grantee#=1) and privilege#>0 |
0v3dvmc22qnam | insert into sys.col_usage$ (obj#, intcol#, equality_preds, equijoin_preds, nonequijoin_preds, range_preds, like_preds, null_preds, timestamp) values ( :objn, :coln, decode(bitand(:flag, 1), 0, 0, 1), decode(bitand(:flag, 2), 0, 0, 1), decode(bitand(:flag, 4), 0, 0, 1), decode(bitand(:flag, 8), 0, 0, 1), decode(bitand(:flag, 16), 0, 0, 1), decode(bitand(:flag, 32), 0, 0, 1), :time) |
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') |
0xqn4sx1ytghr | select /*+ first_rows(1) no_expand */ tab.msgid from "SYSMAN"."AQ$_MGMT_TASK_QTABLE_F" tab where q_name = :1 and (state = :2 ) and queue_id = :3 and ( tab.user_data.scheduled_time <= CAST(SYS_EXTRACT_UTC(SYSTIMESTAMP) AS DATE) AND (tab.user_data.message_code = 0 OR tab.user_data.message_code = 1)) |
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) |
3am9cfkvx7gq1 | CALL MGMT_ADMIN_DATA.EVALUATE_MGMT_METRICS(:target_guid, :metric_guid, :metric_values) |
459f3z9u4fb3u | select value$ from props$ where name = 'GLOBAL_DB_NAME' |
4r8b8x2am8d9z | SELECT SUM(k) FROM sbtest WHERE id BETWEEN :1 AND :2 |
5ur69atw3vfhj | select decode(failover_method, NULL, 0 , 'BASIC', 1, 'PRECONNECT', 2 , 'PREPARSE', 4 , 0), decode(failover_type, NULL, 1 , 'NONE', 1 , 'SESSION', 2, 'SELECT', 4, 1), failover_retries, failover_delay, flags from service$ where name = :1 |
62rcbfrcyrg3k | SELECT c FROM sbtest WHERE id BETWEEN :1 AND :2 ORDER BY c |
6ajkhukk78nsr | begin prvt_hdm.auto_execute( :dbid, :inst_num , :end_snap_id ); end; |
6gvch1xu9ca3g | DECLARE job BINARY_INTEGER := :job; next_date DATE := :mydate; broken BOOLEAN := FALSE; BEGIN EMD_MAINTENANCE.EXECUTE_EM_DBMS_JOB_PROCS(); :mydate := next_date; IF broken THEN :b := 1; ELSE :b := 0; END IF; END; |
8vwv6hx92ymmm | UPDATE MGMT_CURRENT_METRICS SET COLLECTION_TIMESTAMP = :B1 , VALUE = :B6 , STRING_VALUE = :B5 WHERE TARGET_GUID = :B4 AND METRIC_GUID = :B3 AND KEY_VALUE = :B2 AND COLLECTION_TIMESTAMP < :B1 |
9ctt1scmwbmbg | begin dbsnmp.bsln_internal.maintain_thresholds; end; |
9dhn1b8d88dpf |
select OBJOID, CLSOID, RUNTIME, PRI, JOBTYPE, SCHLIM, WT, INST, RUNNOW, ENQ_SCHLIM from ( select a.obj# OBJOID, a.class_oid CLSOID, decode(bitand(a.flags, 16384), 0, a.next_run_date, a.last_enabled_time) RUNTIME, (2*a.priority + decode(bitand(a.job_status, 4), 0, 0, decode(a.running_instance, :1, -1, 1))) PRI, 1 JOBTYPE, decode(a.schedule_limit, NULL, decode(bitand(a.flags, 4194304), 4194304, p.schedule_limit, NULL), a.schedule_limit) SCHLIM, a.job_weight WT, decode(a.running_instance, NULL, 0, a.running_instance) INST, decode(bitand(a.flags, 16384), 0, 0, 1) RUNNOW, decode(bitand(a.job_status, 8388608), 0, 0, 1) ENQ_SCHLIM from sys.scheduler$_job a, sys.scheduler$_program p, v$database v, v$instance i where a.program_oid = p.obj#(+) and bitand(a.job_status, 515) = 1 and bitand(a.flags, 1048576) = 0 and ((bitand(a.flags, 134217728 + 268435456) = 0) or (bitand(a.job_status, 1024) <> 0)) and bitand(a.flags, 4096) = 0 and (a.next_run_date <= :2 or bitand(a.flags, 16384) <> 0) and a.instance_id is null and (a.class_oid is null or (a.class_oid is not null and a.class_oid in (select b.obj# from sys.scheduler$_class b where b.affinity is null))) and (a.database_role = v.database_role or (a.database_role is null and v.database_role = 'PRIMARY')) and ( i.logins = 'ALLOWED' or bitand(a.flags, 17179869184) <> 0 ) union all select l.obj#, l.class_oid, decode(bitand(l.flags, 16384), 0, l.next_run_date, l.last_enabled_time), (2*decode(bitand(l.flags, 8589934592), 0, q.priority, pj.priority) + decode(bitand(l.job_status, 4), 0, 0, decode(l.running_instance, :3, -1, 1))), 1, decode(bitand(l.flags, 8589934592), 0, q.schedule_limit, decode(pj.schedule_limit, NULL, q.schedule_limit, pj.schedule_limit)), decode(bitand(l.flags, 8589934592), 0, q.job_weight, pj.job_weight), decode(l.running_instance, NULL, 0, l.running_instance), decode(bitand(l.flags, 16384), 0, 0, 1), decode(bitand(l.job_status, 8388608), 0, 0, 1) from sys.scheduler$_lightweight_job l, sys.scheduler$_program q, (select sl.obj# obj#, decode(bitand(sl.flags, 8589934592), 0, sl.program_oid, spj.program_oid) program_oid, decode(bitand(sl.flags, 8589934592), 0, NULL, spj.priority) priority, decode(bitand(sl.flags, 8589934592), 0, NULL, spj.job_weight) job_weight, decode(bitand(sl.flags, 8589934592), 0, NULL, spj.schedule_limit) schedule_limit from sys.scheduler$_lightweight_job sl, scheduler$_job spj where sl.program_oid = spj.obj#(+)) pj , v$instance i where pj.obj# = l.obj# and pj.program_oid = q.obj#(+) and (:4 = 0 or l.running_instance = :5) and bitand(l.job_status, 515) = 1 and ((bitand(l.flags, 134217728 + 268435456) = 0) or (bitand(l.job_status, 1024) <> 0)) and bitand(l.flags, 4096) = 0 and (l.next_run_date <= :6 or bitand(l.flags, 16384) <> 0) and l.instance_id is null and (l.class_oid is null or (l.class_oid is not null and l.class_oid in (select w.obj# from sys.scheduler$_class w where w.affinity is null))) and ( i.logins = 'ALLOWED' or bitand(l.flags, 17179869184) <> 0 ) union all select c.obj#, 0, c.next_start_date, 0, 2, c.duration, 1, 0, 0, 0 from sys.scheduler$_window c , v$instance i where bitand(c.flags, 1) <> 0 and bitand(c.flags, 2) = 0 and bitand(c.flags, 64) = 0 and c.next_start_date <= :7 and i.logins = 'ALLOWED' union all select d.obj#, 0, d.next_start_date + d.duration, 0, 4, numtodsinterval(0, 'minute'), 1, 0, 0, 0 from sys.scheduler$_window d , v$instance i where bitand(d.flags, 1) <> 0 and bitand(d.flags, 2) = 0 and bitand(d.flags, 64) = 0 and d.next_start_date <= :8 and i.logins = 'ALLOWED' union all select f.obj#, 0, e.attr_tstamp, 0, decode(bitand(e.flags, 131072), 0, 2, 3), e.attr_intv, 1, 0, 0, 0 from sys.scheduler$_global_attribute e, sys.obj$ f, sys.obj$ g, v$instance i where e.obj# = g.obj# and g.owner# = 0 and g.name
= 'CURRENT_OPEN_WINDOW' and e.value = f.name and f.type# = 69 and e.attr_tstamp is not null and e.attr_intv is not null and i.logins = 'ALLOWED' union all select i.obj#, 0, h.attr_tstamp + h.attr_intv, 0, decode(bitand(h.flags, 131072), 0, 4, 5), numtodsinterval(0, 'minute'), 1, 0, 0, 0 from sys.scheduler$_global_attribute h, sys.obj$ i, sys.obj$ j, v$instance ik where h.obj# = j.obj# and j.owner# = 0 and j.name = 'CURRENT_OPEN_WINDOW' and h.value = i.name and i.type# = 69 and h.attr_tstamp is not null and h.attr_intv is not null and ik.logins = 'ALLOWED') order by RUNTIME, JOBTYPE, CLSOID, PRI, WT DESC, OBJOID |
bcuaanyavwv59 | BEGIN DBMS_WORKLOAD_REPOSITORY.CREATE_SNAPSHOT; END; |
bn4b3vjw2mj3u | SELECT OBJOID, CLSOID, DECODE(BITAND(FLAGS, 16384), 0, RUNTIME, LETIME), (2*PRI + DECODE(BITAND(STATUS, 4), 0, 0, decode(INST, :1, -1, 1))), JOBTYPE, SCHLIM, WT, INST, RUNNOW, ENQ_SCHLIM, INST_ID FROM ( select a.obj# OBJOID, a.class_oid CLSOID, a.next_run_date RUNTIME, a.last_enabled_time LETIME, a.flags FLAGS, a.job_status STATUS, 1 JOBTYPE, a.priority PRI, decode(a.schedule_limit, NULL, decode(bitand(a.flags, 4194304), 4194304, b.schedule_limit, NULL), a.schedule_limit) SCHLIM, a.job_weight WT, decode(a.running_instance, NULL, 0, a.running_instance) INST, decode(bitand(a.flags, 16384), 0, 0, 1) RUNNOW, decode(bitand(a.job_status, 8388608), 0, 0, 1) ENQ_SCHLIM, a.instance_id INST_ID from sys.scheduler$_job a, sys.scheduler$_program b, v$database v , v$instance i where a.program_oid = b.obj#(+) and (a.database_role = v.database_role or (a.database_role is null and v.database_role = 'PRIMARY')) and ( i.logins = 'ALLOWED' or bitand(a.flags, 17179869184) <> 0 ) union all select c.obj#, c.class_oid, c.next_run_date, c.last_enabled_time, c.flags, c.job_status, 1, decode(bitand(c.flags, 8589934592), 0, d.priority, pj.priority), decode(bitand(c.flags, 8589934592), 0, d.schedule_limit, decode(pj.schedule_limit, NULL, d.schedule_limit, pj.schedule_limit)), decode(bitand(c.flags, 8589934592), 0, d.job_weight, pj.job_weight), decode(c.running_instance, NULL, 0, c.running_instance), decode(bitand(c.flags, 16384), 0, 0, 1) RUNNOW, decode(bitand(c.job_status, 8388608), 0, 0, 1) ENQ_SCHLIM, c.instance_id INST_ID from sys.scheduler$_lightweight_job c, sys.scheduler$_program d, (select sl.obj# obj#, decode(bitand(sl.flags, 8589934592), 0, sl.program_oid, spj.program_oid) program_oid, decode(bitand(sl.flags, 8589934592), 0, NULL, spj.priority) priority, decode(bitand(sl.flags, 8589934592), 0, NULL, spj.job_weight) job_weight, decode(bitand(sl.flags, 8589934592), 0, NULL, spj.schedule_limit) schedule_limit from sys.scheduler$_lightweight_job sl, scheduler$_job spj where sl.program_oid = spj.obj#(+)) pj, v$instance i where pj.obj# = c.obj# and pj.program_oid = d.obj#(+) and ( i.logins = 'ALLOWED' or bitand(c.flags, 17179869184) <> 0 ) and (:2 = 0 or c.running_instance = :3)) WHERE BITAND(STATUS, 515) = 1 AND BITAND(FLAGS, 1048576) = 0 AND ((BITAND(FLAGS, 134217728 + 268435456) = 0) OR (BITAND(STATUS, 1024) <> 0)) AND BITAND(FLAGS, 4096) = 0 AND (RUNTIME <= :4 OR BITAND(FLAGS, 16384) <> 0) and ((CLSOID is not null and INST_ID is null and CLSOID in (select e.obj# from sys.scheduler$_class e where bitand(e.flags, :5) <> 0 and lower(e.affinity) = lower(:6))) or (INST_ID is not null and INST_ID = :7)) ORDER BY 3, 2, 4, 7 DESC, 1 |
cm5vu20fhtnq1 | select /*+ connect_by_filtering */ privilege#, level from sysauth$ connect by grantee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0 |
cpq5z20uqma8a | SELECT c FROM sbtest WHERE id = :1 |
dub3tnumhnt2d | SELECT c FROM sbtest WHERE id BETWEEN :1 AND :2 |
f711myt0q6cma | insert into sys.aud$( sessionid, entryid, statement, ntimestamp#, userid, userhost, terminal, action#, returncode, logoff$lread, logoff$pread, logoff$lwrite, logoff$dead, logoff$time, comment$text, spare1, clientid, sessioncpu, proxy$sid, user$guid, instance#, process#, auditid, dbid) values(:1, :2, :3, SYS_EXTRACT_UTC(SYSTIMESTAMP), :4, :5, :6, :7, :8, :9, :10, :11, :12, cast(SYS_EXTRACT_UTC(systimestamp) as date), :13, :14, :15, :16, :17, :18, :19, :20, :21, :22) |
gsk525600smxq | SELECT DISTINCT c FROM sbtest WHERE id BETWEEN :1 AND :2 ORDER BY c |
Statistic | Total | per Second | per Trans |
Batched IO (bound) vector count | 0 | 0.00 | 0.00 |
Batched IO (full) vector count | 0 | 0.00 | 0.00 |
Batched IO block miss count | 0 | 0.00 | 0.00 |
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 | 0 | 0.00 | 0.00 |
Batched IO single block count | 0 | 0.00 | 0.00 |
Batched IO vector block count | 0 | 0.00 | 0.00 |
Batched IO vector read count | 0 | 0.00 | 0.00 |
Block Cleanout Optim referenced | 3 | 0.00 | 0.00 |
CCursor + sql area evicted | 0 | 0.00 | 0.00 |
CPU used by this session | 26,320 | 43.79 | 0.64 |
CPU used when call started | 24,875 | 41.38 | 0.60 |
CR blocks created | 49 | 0.08 | 0.00 |
Cached Commit SCN referenced | 0 | 0.00 | 0.00 |
Commit SCN cached | 3 | 0.00 | 0.00 |
DB time | 122,515 | 203.82 | 2.98 |
DBWR checkpoint buffers written | 5,982 | 9.95 | 0.15 |
DBWR checkpoints | 1 | 0.00 | 0.00 |
DBWR transaction table writes | 19 | 0.03 | 0.00 |
DBWR undo block writes | 2,376 | 3.95 | 0.06 |
Effective IO time | 0 | 0.00 | 0.00 |
HSC Heap Segment Block Changes | 83,587 | 139.06 | 2.03 |
Heap Segment Array Inserts | 87 | 0.14 | 0.00 |
Heap Segment Array Updates | 34 | 0.06 | 0.00 |
IMU CR rollbacks | 20 | 0.03 | 0.00 |
IMU Flushes | 25 | 0.04 | 0.00 |
IMU Redo allocation size | 101,484 | 168.83 | 2.47 |
IMU commits | 83 | 0.14 | 0.00 |
IMU recursive-transaction flush | 0 | 0.00 | 0.00 |
IMU undo allocation size | 453,784 | 754.94 | 11.03 |
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 | 1,559,525 | 2,594.50 | 37.92 |
RowCR attempts | 11 | 0.02 | 0.00 |
RowCR hits | 11 | 0.02 | 0.00 |
SQL*Net roundtrips to/from client | 1,559,525 | 2,594.50 | 37.92 |
active txn count during cleanout | 728 | 1.21 | 0.02 |
application wait time | 0 | 0.00 | 0.00 |
background checkpoints completed | 0 | 0.00 | 0.00 |
background checkpoints started | 1 | 0.00 | 0.00 |
background timeouts | 2,919 | 4.86 | 0.07 |
buffer is not pinned count | 1,230,904 | 2,047.79 | 29.93 |
buffer is pinned count | 8,496 | 14.13 | 0.21 |
bytes received via SQL*Net from client | 119,247,727 | 198,385.81 | 2,899.29 |
bytes sent via SQL*Net to client | 335,162,237 | 557,590.77 | 8,148.85 |
calls to get snapshot scn: kcmgss | 907,370 | 1,509.54 | 22.06 |
calls to kcmgas | 84,653 | 140.83 | 2.06 |
calls to kcmgcs | 168,138 | 279.72 | 4.09 |
cell physical IO interconnect bytes | 177,602,048 | 295,466.65 | 4,318.07 |
change write time | 1,360 | 2.26 | 0.03 |
cleanout - number of ktugct calls | 1,795 | 2.99 | 0.04 |
cleanouts and rollbacks - consistent read gets | 0 | 0.00 | 0.00 |
cleanouts only - consistent read gets | 1 | 0.00 | 0.00 |
cluster key scan block gets | 227 | 0.38 | 0.01 |
cluster key scans | 197 | 0.33 | 0.00 |
commit batch/immediate performed | 12 | 0.02 | 0.00 |
commit batch/immediate requested | 12 | 0.02 | 0.00 |
commit cleanout failures: callback failure | 122 | 0.20 | 0.00 |
commit cleanout failures: cannot pin | 994 | 1.65 | 0.02 |
commit cleanouts | 83,382 | 138.72 | 2.03 |
commit cleanouts successfully completed | 82,266 | 136.86 | 2.00 |
commit immediate performed | 12 | 0.02 | 0.00 |
commit immediate requested | 12 | 0.02 | 0.00 |
commit txn count during cleanout | 1,120 | 1.86 | 0.03 |
concurrency wait time | 8,575 | 14.27 | 0.21 |
consistent changes | 45 | 0.07 | 0.00 |
consistent gets | 3,253,277 | 5,412.30 | 79.10 |
consistent gets - examination | 1,691,166 | 2,813.50 | 41.12 |
consistent gets direct | 0 | 0.00 | 0.00 |
consistent gets from cache | 3,253,277 | 5,412.30 | 79.10 |
consistent gets from cache (fastpath) | 1,561,582 | 2,597.92 | 37.97 |
cursor authentications | 69 | 0.11 | 0.00 |
data blocks consistent reads - undo records applied | 33 | 0.05 | 0.00 |
db block changes | 345,600 | 574.96 | 8.40 |
db block gets | 260,836 | 433.94 | 6.34 |
db block gets direct | 0 | 0.00 | 0.00 |
db block gets from cache | 260,836 | 433.94 | 6.34 |
db block gets from cache (fastpath) | 1,534 | 2.55 | 0.04 |
deferred (CURRENT) block cleanout applications | 42,484 | 70.68 | 1.03 |
enqueue conversions | 127 | 0.21 | 0.00 |
enqueue releases | 255,033 | 424.28 | 6.20 |
enqueue requests | 255,033 | 424.28 | 6.20 |
enqueue timeouts | 0 | 0.00 | 0.00 |
enqueue waits | 79 | 0.13 | 0.00 |
execute count | 907,301 | 1,509.43 | 22.06 |
file io wait time | 344,490 | 573.11 | 8.38 |
free buffer inspected | 0 | 0.00 | 0.00 |
free buffer requested | 3,605 | 6.00 | 0.09 |
heap block compress | 12 | 0.02 | 0.00 |
immediate (CR) block cleanout applications | 1 | 0.00 | 0.00 |
immediate (CURRENT) block cleanout applications | 254 | 0.42 | 0.01 |
in call idle wait time | 1,510,417 | 2,512.80 | 36.72 |
index crx upgrade (positioned) | 0 | 0.00 | 0.00 |
index crx upgrade (prefetch) | 1 | 0.00 | 0.00 |
index fast full scans (full) | 11 | 0.02 | 0.00 |
index fetch by key | 414,312 | 689.27 | 10.07 |
index scans kdiixs1 | 332,490 | 553.15 | 8.08 |
leaf node 90-10 splits | 11 | 0.02 | 0.00 |
leaf node splits | 16 | 0.03 | 0.00 |
lob reads | 0 | 0.00 | 0.00 |
lob writes | 5 | 0.01 | 0.00 |
lob writes unaligned | 5 | 0.01 | 0.00 |
logical read bytes from cache | 28,787,613,696 | 47,892,351.72 | 699,917.67 |
logons cumulative | 41,077 | 68.34 | 1.00 |
max cf enq hold time | 40 | 0.07 | 0.00 |
messages received | 82,936 | 137.98 | 2.02 |
messages sent | 82,936 | 137.98 | 2.02 |
min active SCN optimization applied on CR | 0 | 0.00 | 0.00 |
no buffer to keep pinned count | 11 | 0.02 | 0.00 |
no work - consistent read gets | 1,394,730 | 2,320.33 | 33.91 |
non-idle wait count | 1,751,996 | 2,914.70 | 42.60 |
non-idle wait time | 23,330 | 38.81 | 0.57 |
opened cursors cumulative | 947,555 | 1,576.39 | 23.04 |
parse count (describe) | 0 | 0.00 | 0.00 |
parse count (failures) | 0 | 0.00 | 0.00 |
parse count (hard) | 42 | 0.07 | 0.00 |
parse count (total) | 947,669 | 1,576.58 | 23.04 |
parse time cpu | 3,438 | 5.72 | 0.08 |
parse time elapsed | 7,883 | 13.11 | 0.19 |
physical read IO requests | 8 | 0.01 | 0.00 |
physical read bytes | 65,536 | 109.03 | 1.59 |
physical read total IO requests | 687 | 1.14 | 0.02 |
physical read total bytes | 11,092,992 | 18,454.79 | 269.71 |
physical read total multi block requests | 0 | 0.00 | 0.00 |
physical reads | 8 | 0.01 | 0.00 |
physical reads cache | 8 | 0.01 | 0.00 |
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 | 746 | 1.24 | 0.02 |
physical write bytes | 49,004,544 | 81,526.13 | 1,191.45 |
physical write total IO requests | 83,423 | 138.79 | 2.03 |
physical write total bytes | 166,509,056 | 277,011.86 | 4,048.36 |
physical write total multi block requests | 356 | 0.59 | 0.01 |
physical writes | 5,982 | 9.95 | 0.15 |
physical writes direct | 0 | 0.00 | 0.00 |
physical writes direct (lob) | 0 | 0.00 | 0.00 |
physical writes direct temporary tablespace | 0 | 0.00 | 0.00 |
physical writes from cache | 5,982 | 9.95 | 0.15 |
physical writes non checkpoint | 5,527 | 9.19 | 0.13 |
pinned buffers inspected | 0 | 0.00 | 0.00 |
pinned cursors current | 0 | 0.00 | 0.00 |
recursive calls | 4,701,446 | 7,821.53 | 114.31 |
recursive cpu usage | 6,748 | 11.23 | 0.16 |
redo blocks checksummed by FG (exclusive) | 1,992 | 3.31 | 0.05 |
redo blocks written | 168,795 | 280.81 | 4.10 |
redo buffer allocation retries | 0 | 0.00 | 0.00 |
redo entries | 175,883 | 292.61 | 4.28 |
redo log space requests | 0 | 0.00 | 0.00 |
redo log space wait time | 0 | 0.00 | 0.00 |
redo ordering marks | 1,875 | 3.12 | 0.05 |
redo size | 66,052,672 | 109,888.16 | 1,605.95 |
redo size for direct writes | 0 | 0.00 | 0.00 |
redo subscn max counts | 3,578 | 5.95 | 0.09 |
redo synch long waits | 3,658 | 6.09 | 0.09 |
redo synch time | 7,761 | 12.91 | 0.19 |
redo synch time (usec) | 95,788,156 | 159,357.43 | 2,328.91 |
redo synch writes | 82,098 | 136.58 | 2.00 |
redo wastage | 17,609,064 | 29,295.22 | 428.13 |
redo write time | 4,260 | 7.09 | 0.10 |
redo writes | 82,009 | 136.43 | 1.99 |
rollback changes - undo records applied | 12 | 0.02 | 0.00 |
rollbacks only - consistent read gets | 17 | 0.03 | 0.00 |
rows fetched via callback | 998 | 1.66 | 0.02 |
session logical reads | 3,514,113 | 5,846.23 | 85.44 |
shared hash latch upgrades - no wait | 701 | 1.17 | 0.02 |
sorts (memory) | 248,166 | 412.86 | 6.03 |
sorts (rows) | 8,217,482 | 13,670.97 | 199.79 |
sql area evicted | 20 | 0.03 | 0.00 |
sql area purged | 0 | 0.00 | 0.00 |
switch current to new buffer | 97 | 0.16 | 0.00 |
table fetch by rowid | 6,201 | 10.32 | 0.15 |
table fetch continued row | 23 | 0.04 | 0.00 |
table scan blocks gotten | 124,494 | 207.11 | 3.03 |
table scan rows gotten | 4,750,390 | 7,902.96 | 115.50 |
table scans (long tables) | 0 | 0.00 | 0.00 |
table scans (short tables) | 82,362 | 137.02 | 2.00 |
total cf enq hold time | 80 | 0.13 | 0.00 |
total number of cf enq holders | 32 | 0.05 | 0.00 |
total number of times SMON posted | 2 | 0.00 | 0.00 |
transaction rollbacks | 12 | 0.02 | 0.00 |
undo change vector size | 11,628,528 | 19,345.74 | 282.73 |
user I/O wait time | 15 | 0.02 | 0.00 |
user calls | 2,216,273 | 3,687.09 | 53.88 |
user commits | 90 | 0.15 | 0.00 |
user rollbacks | 41,040 | 68.28 | 1.00 |
workarea executions - optimal | 82,845 | 137.82 | 2.01 |
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 | 400 | 0.00 | | 0 | 0 | |
ASM map operation hash table | 1 | 0.00 | | 0 | 0 | |
ASM network state latch | 9 | 0.00 | | 0 | 0 | |
AWR Alerted Metric Element list | 4,204 | 0.00 | | 0 | 0 | |
Change Notification Hash table latch | 200 | 0.00 | | 0 | 0 | |
Consistent RBA | 82,010 | 0.00 | | 0 | 0 | |
DML lock allocation | 165,722 | 0.01 | 0.50 | 0 | 0 | |
Event Group Locks | 82,143 | 0.00 | 0.00 | 0 | 0 | |
FIB s.o chain latch | 4 | 0.00 | | 0 | 0 | |
FOB s.o list latch | 3,690 | 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 | 1,344 | 0.00 | | 0 | 240 | 0.00 |
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 | 4,410 | 0.00 | | 0 | 0 | |
JS slv state obj latch | 41 | 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 | 200 | 0.00 | | 0 | 0 | |
KTF sga latch | 3 | 0.00 | | 0 | 201 | 0.00 |
KWQMN job cache list latch | 2 | 0.00 | | 0 | 0 | |
KWQS pqsubs latch | 2 | 0.00 | | 0 | 0 | |
KWQS pqueue ctx latch | 11 | 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 | 12 | 0.00 |
Memory Management Latch | 1 | 0.00 | | 0 | 200 | 0.00 |
Memory Queue | 1 | 0.00 | | 0 | 0 | |
Memory Queue Message Subscriber #1 | 1 | 0.00 | | 0 | 0 | |
Memory Queue Message Subscriber #2 | 1 | 0.00 | | 0 | 0 | |
Memory Queue Message Subscriber #3 | 1 | 0.00 | | 0 | 0 | |
Memory Queue Message Subscriber #4 | 1 | 0.00 | | 0 | 0 | |
Memory Queue Subscriber | 1 | 0.00 | | 0 | 0 | |
MinActiveScn Latch | 6 | 0.00 | | 0 | 0 | |
Mutex | 1 | 0.00 | | 0 | 0 | |
Mutex Stats | 1 | 0.00 | | 0 | 0 | |
OS process | 164,420 | 0.00 | | 0 | 0 | |
OS process allocation | 83,435 | 0.09 | 0.76 | 1 | 0 | |
OS process: request allocation | 82,143 | 0.07 | 0.81 | 0 | 0 | |
PL/SQL warning settings | 41,093 | 0.00 | | 0 | 0 | |
PX hash array latch | 1 | 0.00 | | 0 | 0 | |
QMT | 1 | 0.00 | | 0 | 0 | |
Real-time plan statistics latch | 10 | 0.00 | | 0 | 0 | |
SGA blob parent | 1 | 0.00 | | 0 | 0 | |
SGA bucket locks | 1 | 0.00 | | 0 | 0 | |
SGA heap locks | 1 | 0.00 | | 0 | 0 | |
SGA pool locks | 1 | 0.00 | | 0 | 0 | |
SQL memory manager latch | 1 | 0.00 | | 0 | 200 | 0.00 |
SQL memory manager workarea list latch | 13,734 | 0.00 | | 0 | 0 | |
Shared B-Tree | 53 | 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 | 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 | 948 | 0.00 | | 0 | 0 | |
active service list | 247,843 | 0.08 | 0.27 | 0 | 857 | 0.00 |
buffer pool | 1 | 0.00 | | 0 | 0 | |
business card | 1 | 0.00 | | 0 | 0 | |
cache buffer handles | 75 | 1.33 | 0.00 | 0 | 0 | |
cache buffers chains | 5,885,275 | 0.06 | 0.03 | 0 | 3,608 | 0.00 |
cache buffers lru chain | 6,184 | 0.00 | | 0 | 9,588 | 0.00 |
call allocation | 164,468 | 0.52 | 0.79 | 4 | 0 | |
cas latch | 1 | 0.00 | | 0 | 0 | |
change notification client cache latch | 1 | 0.00 | | 0 | 0 | |
channel handle pool latch | 82,150 | 0.05 | 0.43 | 0 | 0 | |
channel operations parent latch | 126,480 | 0.01 | 0.18 | 0 | 0 | |
checkpoint queue latch | 18,610 | 0.00 | | 0 | 3,778 | 0.00 |
client/application info | 287,406 | 0.01 | 0.24 | 0 | 0 | |
compile environment latch | 41,077 | 0.00 | 0.00 | 0 | 0 | |
corrupted undo seg latch | 48 | 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 | 9 | 0.00 | | 0 | 0 | |
cvmap freelist lock | 1 | 0.00 | | 0 | 0 | |
deferred cleanup latch | 9 | 0.00 | | 0 | 0 | |
dml lock allocation | 9 | 0.00 | | 0 | 0 | |
done queue latch | 1 | 0.00 | | 0 | 0 | |
dummy allocation | 82,153 | 0.08 | 0.56 | 0 | 0 | |
enqueue freelist latch | 1 | 0.00 | | 0 | 96,966 | 0.03 |
enqueue hash chains | 510,319 | 0.11 | 0.32 | 1 | 0 | |
enqueues | 79 | 0.00 | | 0 | 0 | |
fifth spare latch | 1 | 0.00 | | 0 | 0 | |
file cache latch | 35 | 0.00 | | 0 | 0 | |
flashback copy | 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 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,040 | 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 | 358 | 0.00 | | 0 | 9,339 | 0.00 |
hash table modification latch | 2 | 0.00 | | 0 | 0 | |
heartbeat check | 1 | 0.00 | | 0 | 0 | |
internal temp table object number allocation latch | 1 | 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 | 13 | 0.00 | | 0 | 12 | 0.00 |
job_queue_processes free list latch | 26 | 0.00 | | 0 | 0 | |
job_queue_processes parameter latch | 143 | 0.00 | | 0 | 0 | |
k2q lock allocation | 1 | 0.00 | | 0 | 0 | |
kcbtsemkid latch | 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 | |
kokc descriptor allocation latch | 60 | 0.00 | | 0 | 0 | |
ksfv messages | 1 | 0.00 | | 0 | 0 | |
ksim group membership cache | 1 | 0.00 | | 0 | 0 | |
kss move lock | 9 | 0.00 | | 0 | 0 | |
ksuosstats global area | 63 | 0.00 | | 0 | 0 | |
ksv allocation latch | 23 | 0.00 | | 0 | 0 | |
ksv class latch | 13 | 0.00 | | 0 | 0 | |
ksv msg queue latch | 1 | 0.00 | | 0 | 0 | |
ksz_so allocation latch | 82,143 | 0.06 | 0.73 | 0 | 0 | |
ktm global data | 19 | 0.00 | | 0 | 0 | |
kwqbsn:qsga | 21 | 0.00 | | 0 | 0 | |
lgwr LWN SCN | 82,164 | 0.00 | | 0 | 0 | |
list of block allocation | 82,136 | 0.01 | 0.63 | 0 | 0 | |
lob segment dispenser latch | 1 | 0.00 | | 0 | 0 | |
lob segment hash table latch | 3 | 0.00 | | 0 | 0 | |
lob segment query latch | 1 | 0.00 | | 0 | 0 | |
lock DBA buffer during media recovery | 1 | 0.00 | | 0 | 0 | |
logical standby cache | 1 | 0.00 | | 0 | 0 | |
logminer context allocation | 1 | 0.00 | | 0 | 0 | |
logminer work area | 1 | 0.00 | | 0 | 0 | |
longop free list parent | 1 | 0.00 | | 0 | 0 | |
mapped buffers lru chain | 1 | 0.00 | | 0 | 0 | |
message pool operations parent latch | 1 | 0.00 | | 0 | 0 | |
messages | 298,062 | 0.02 | 0.58 | 0 | 0 | |
mostly latch-free SCN | 82,239 | 0.00 | 0.00 | 0 | 0 | |
msg queue latch | 1 | 0.00 | | 0 | 0 | |
name-service namespace bucket | 1 | 0.00 | | 0 | 0 | |
ncodef allocation latch | 9 | 0.00 | | 0 | 0 | |
object queue header heap | 1,897 | 0.00 | | 0 | 2 | 0.00 |
object queue header operation | 21,253 | 0.00 | | 0 | 0 | |
object stats modification | 11 | 0.00 | | 0 | 0 | |
parallel query alloc buffer | 81 | 0.00 | | 0 | 0 | |
parallel query stats | 1 | 0.00 | | 0 | 0 | |
parameter list | 369,932 | 0.03 | 0.11 | 0 | 0 | |
parameter table management | 164,352 | 0.06 | 0.52 | 1 | 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 | 71,649 | 0.01 | 0.00 | 0 | 47,929 | 0.01 |
process allocation | 82,167 | 0.60 | 1.12 | 6 | 41,035 | 0.07 |
process group creation | 82,143 | 0.03 | 0.63 | 0 | 0 | |
process queue | 1 | 0.00 | | 0 | 0 | |
process queue reference | 1 | 0.00 | | 0 | 0 | |
qmn task queue latch | 84 | 0.00 | | 0 | 0 | |
query server freelists | 1 | 0.00 | | 0 | 0 | |
queued dump request | 2 | 0.00 | | 0 | 0 | |
queuing load statistics | 1 | 0.00 | | 0 | 0 | |
recovery domain hash list | 1 | 0.00 | | 0 | 0 | |
redo allocation | 250,452 | 0.03 | 0.43 | 0 | 175,943 | 0.02 |
redo copy | 1 | 0.00 | | 0 | 175,964 | 0.23 |
redo writing | 247,419 | 0.00 | 0.00 | 0 | 0 | |
resmgr group change latch | 41,065 | 0.00 | | 0 | 0 | |
resmgr:active threads | 82,153 | 0.00 | | 0 | 0 | |
resmgr:actses change group | 41,058 | 0.00 | | 0 | 0 | |
resmgr:actses change state | 1 | 0.00 | | 0 | 0 | |
resmgr:free threads list | 82,152 | 0.23 | 0.38 | 0 | 0 | |
resmgr:plan CPU method | 1 | 0.00 | | 0 | 0 | |
resmgr:resource group CPU method | 1 | 0.00 | | 0 | 0 | |
resmgr:schema config | 1 | 0.00 | | 0 | 0 | |
resmgr:session queuing | 1 | 0.00 | | 0 | 0 | |
rm cas latch | 1 | 0.00 | | 0 | 0 | |
row cache objects | 2,867,266 | 0.11 | 0.07 | 2 | 38 | 0.00 |
rules engine aggregate statistics | 2 | 0.00 | | 0 | 0 | |
rules engine rule set statistics | 4 | 0.00 | | 0 | 0 | |
second Audit Vault latch | 1 | 0.00 | | 0 | 0 | |
second spare latch | 1 | 0.00 | | 0 | 0 | |
sequence cache | 123,181 | 0.01 | 0.60 | 0 | 0 | |
session allocation | 246,371 | 0.02 | 0.53 | 0 | 164,228 | 0.07 |
session idle bit | 4,555,694 | 0.01 | 0.22 | 0 | 0 | |
session queue latch | 1 | 0.00 | | 0 | 0 | |
session state list latch | 82,170 | 0.10 | 0.13 | 0 | 0 | |
session switching | 41,088 | 0.00 | 0.50 | 0 | 0 | |
session timer | 200 | 0.00 | | 0 | 0 | |
shared pool | 2,741,496 | 0.61 | 0.14 | 11 | 0 | |
shared pool sim alloc | 1 | 0.00 | | 0 | 0 | |
shared pool simulator | 255 | 0.00 | | 0 | 0 | |
sim partition latch | 1 | 0.00 | | 0 | 0 | |
simulator hash latch | 820,974 | 0.00 | 0.00 | 0 | 0 | |
simulator lru latch | 5,558 | 0.11 | 0.33 | 0 | 814,978 | 0.31 |
sort extent pool | 23 | 0.00 | | 0 | 0 | |
space background state object latch | 2 | 0.00 | | 0 | 0 | |
space background task latch | 1,458 | 0.07 | 0.00 | 0 | 403 | 0.00 |
state object free list | 2 | 0.00 | | 0 | 0 | |
statistics aggregation | 560 | 0.00 | | 0 | 0 | |
tablespace key chain | 1 | 0.00 | | 0 | 0 | |
temp lob duration state obj allocation | 2 | 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 | 22 | 0.00 | | 0 | 0 | |
trace latch | 11 | 0.00 | | 0 | 0 | |
transaction allocation | 83,380 | 0.02 | 0.67 | 0 | 0 | |
undo global data | 251,634 | 0.01 | 0.31 | 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 | |