SQL Id | SQL Text |
0k8522rmdzg4k | select privilege# from sysauth$ where (grantee#=:1 or grantee#=1) and privilege#>0 |
0ws7ahf1d78qa | select SYS_CONTEXT('USERENV', 'SERVER_HOST'), SYS_CONTEXT('USERENV', 'DB_UNIQUE_NAME'), SYS_CONTEXT('USERENV', 'INSTANCE_NAME'), SYS_CONTEXT('USERENV', 'SERVICE_NAME'), INSTANCE_NUMBER, STARTUP_TIME, SYS_CONTEXT('USERENV', 'DB_DOMAIN') from v$instance where INSTANCE_NAME=SYS_CONTEXT('USERENV', 'INSTANCE_NAME') |
1cq3qr774cu45 | insert into WRH$_IOSTAT_FILETYPE (snap_id, dbid, instance_number, filetype_id, small_read_megabytes, small_write_megabytes, large_read_megabytes, large_write_megabytes, small_read_reqs, small_write_reqs, small_sync_read_reqs, large_read_reqs, large_write_reqs, small_read_servicetime, small_write_servicetime, small_sync_read_latency, large_read_servicetime, large_write_servicetime, retries_on_error) (select :snap_id, :dbid, :instance_number, filetype_id, sum(small_read_megabytes) small_read_megabytes, sum(small_write_megabytes) small_write_megabytes, sum(large_read_megabytes) large_read_megabytes, sum(large_write_megabytes) large_write_megabytes, sum(small_read_reqs) small_read_reqs, sum(small_write_reqs) small_write_reqs, sum(small_sync_read_reqs) small_sync_read_reqs, sum(large_read_reqs) large_read_reqs, sum(large_write_reqs) large_write_reqs, sum(small_read_servicetime) small_read_servicetime, sum(small_write_servicetime) small_write_servicetime, sum(small_sync_read_latency) small_sync_read_latency, sum(large_read_servicetime) large_read_servicetime, sum(large_write_servicetime) large_write_servicetime, sum(retries_on_error) retries_on_error from v$iostat_file group by filetype_id) |
3s58mgk0uy2ws | insert into wrm$_snapshot_details (snap_id, dbid, instance_number, table_id, begin_time, end_time) values (:snap_id, :dbid, :instance_number, :bind1, :bind2, :bind3) |
459f3z9u4fb3u | select value$ from props$ where name = 'GLOBAL_DB_NAME' |
4r8b8x2am8d9z | SELECT SUM(k) FROM sbtest WHERE id BETWEEN :1 AND :2 |
53saa2zkr6wc3 | select intcol#, nvl(pos#, 0), col#, nvl(spare1, 0) from ccol$ where con#=:1 |
5h7w8ykwtb2xt | INSERT INTO SYS.WRI$_ADV_PARAMETERS (TASK_ID, NAME, DATATYPE, VALUE, FLAGS, DESCRIPTION) VALUES (:B6 , :B5 , :B4 , :B3 , :B2 , :B1 ) |
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 |
66gs90fyynks7 | insert into wrh$_instance_recovery (snap_id, dbid, instance_number, recovery_estimated_ios, actual_redo_blks, target_redo_blks, log_file_size_redo_blks, log_chkpt_timeout_redo_blks, log_chkpt_interval_redo_blks, fast_start_io_target_redo_blks, target_mttr, estimated_mttr, ckpt_block_writes, optimal_logfile_size, estd_cluster_available_time, writes_mttr, writes_logfile_size, writes_log_checkpoint_settings, writes_other_settings, writes_autotune, writes_full_thread_ckpt) select :snap_id, :dbid, :instance_number, recovery_estimated_ios, actual_redo_blks, target_redo_blks, log_file_size_redo_blks, log_chkpt_timeout_redo_blks, log_chkpt_interval_redo_blks, fast_start_io_target_redo_blks, target_mttr, estimated_mttr, ckpt_block_writes, optimal_logfile_size, estd_cluster_available_time, writes_mttr, writes_logfile_size, writes_log_checkpoint_settings, writes_other_settings, writes_autotune, writes_full_thread_ckpt from v$instance_recovery |
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; |
84k66tf2s7y1c | insert into wrh$_bg_event_summary (snap_id, dbid, instance_number, event_id, total_waits, total_timeouts, time_waited_micro) select :snap_id, :dbid, :instance_number, event_id, total_waits - total_waits_fg, total_timeouts - total_timeouts_fg, time_waited_micro - time_waited_micro_fg from v$system_event where (total_waits - total_waits_fg) > 0 order by event_id |
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 |
bunssq950snhf | insert into wrh$_sga_target_advice (snap_id, dbid, instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS) select :snap_id, :dbid, :instance_number, SGA_SIZE, SGA_SIZE_FACTOR, ESTD_DB_TIME, ESTD_PHYSICAL_READS from v$sga_target_advice |
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 | 1 | 0.00 | 0.00 |
CPU used by this session | 41,121 | 68.42 | 0.38 |
CPU used when call started | 39,446 | 65.63 | 0.36 |
CR blocks created | 48 | 0.08 | 0.00 |
Cached Commit SCN referenced | 0 | 0.00 | 0.00 |
Commit SCN cached | 0 | 0.00 | 0.00 |
DB time | 128,300 | 213.46 | 1.17 |
DBWR checkpoint buffers written | 4,972 | 8.27 | 0.05 |
DBWR checkpoints | 1 | 0.00 | 0.00 |
DBWR transaction table writes | 16 | 0.03 | 0.00 |
DBWR undo block writes | 2,031 | 3.38 | 0.02 |
Effective IO time | 0 | 0.00 | 0.00 |
HSC Heap Segment Block Changes | 220,353 | 366.62 | 2.01 |
Heap Segment Array Inserts | 87 | 0.14 | 0.00 |
Heap Segment Array Updates | 36 | 0.06 | 0.00 |
IMU CR rollbacks | 20 | 0.03 | 0.00 |
IMU Flushes | 29 | 0.05 | 0.00 |
IMU Redo allocation size | 87,892 | 146.23 | 0.80 |
IMU commits | 61 | 0.10 | 0.00 |
IMU recursive-transaction flush | 0 | 0.00 | 0.00 |
IMU undo allocation size | 335,552 | 558.28 | 3.07 |
Number of read IOs issued | 0 | 0.00 | 0.00 |
Requests to/from client | 4,156,548 | 6,915.56 | 37.98 |
RowCR attempts | 9 | 0.01 | 0.00 |
RowCR hits | 9 | 0.01 | 0.00 |
SQL*Net roundtrips to/from client | 4,156,548 | 6,915.56 | 37.98 |
active txn count during cleanout | 943 | 1.57 | 0.01 |
background checkpoints started | 1 | 0.00 | 0.00 |
background timeouts | 2,915 | 4.85 | 0.03 |
buffer is not pinned count | 9,477,900 | 15,769.09 | 86.59 |
buffer is pinned count | 83,525,091 | 138,966.91 | 763.13 |
bytes received via SQL*Net from client | 317,827,432 | 528,793.17 | 2,903.83 |
bytes sent via SQL*Net to client | 926,743,998 | 1,541,893.01 | 8,467.20 |
calls to get snapshot scn: kcmgss | 2,412,498 | 4,013.85 | 22.04 |
calls to kcmgas | 224,388 | 373.33 | 2.05 |
calls to kcmgcs | 445,957 | 741.97 | 4.07 |
cell physical IO interconnect bytes | 277,232,128 | 461,251.74 | 2,532.93 |
change write time | 1,049 | 1.75 | 0.01 |
cleanout - number of ktugct calls | 3,841 | 6.39 | 0.04 |
cleanouts only - consistent read gets | 0 | 0.00 | 0.00 |
cluster key scan block gets | 393 | 0.65 | 0.00 |
cluster key scans | 338 | 0.56 | 0.00 |
commit batch/immediate performed | 11 | 0.02 | 0.00 |
commit batch/immediate requested | 11 | 0.02 | 0.00 |
commit cleanout failures: callback failure | 16 | 0.03 | 0.00 |
commit cleanout failures: cannot pin | 2,923 | 4.86 | 0.03 |
commit cleanouts | 219,928 | 365.91 | 2.01 |
commit cleanouts successfully completed | 216,989 | 361.02 | 1.98 |
commit immediate performed | 11 | 0.02 | 0.00 |
commit immediate requested | 11 | 0.02 | 0.00 |
commit txn count during cleanout | 2,923 | 4.86 | 0.03 |
concurrency wait time | 3,710 | 6.17 | 0.03 |
consistent changes | 42 | 0.07 | 0.00 |
consistent gets | 11,334,258 | 18,857.65 | 103.56 |
consistent gets - examination | 5,592,389 | 9,304.47 | 51.09 |
consistent gets direct | 0 | 0.00 | 0.00 |
consistent gets from cache | 11,334,258 | 18,857.65 | 103.56 |
consistent gets from cache (fastpath) | 5,741,357 | 9,552.32 | 52.46 |
cursor authentications | 156 | 0.26 | 0.00 |
data blocks consistent reads - undo records applied | 31 | 0.05 | 0.00 |
db block changes | 909,339 | 1,512.94 | 8.31 |
db block gets | 685,061 | 1,139.79 | 6.26 |
db block gets direct | 0 | 0.00 | 0.00 |
db block gets from cache | 685,061 | 1,139.79 | 6.26 |
db block gets from cache (fastpath) | 1,384 | 2.30 | 0.01 |
deferred (CURRENT) block cleanout applications | 111,545 | 185.59 | 1.02 |
enqueue conversions | 124 | 0.21 | 0.00 |
enqueue releases | 663,425 | 1,103.79 | 6.06 |
enqueue requests | 663,425 | 1,103.79 | 6.06 |
enqueue timeouts | 0 | 0.00 | 0.00 |
enqueue waits | 49 | 0.08 | 0.00 |
execute count | 2,411,537 | 4,012.25 | 22.03 |
file io wait time | 936,384 | 1,557.93 | 8.56 |
free buffer inspected | 0 | 0.00 | 0.00 |
free buffer requested | 9,141 | 15.21 | 0.08 |
heap block compress | 15 | 0.02 | 0.00 |
immediate (CR) block cleanout applications | 0 | 0.00 | 0.00 |
immediate (CURRENT) block cleanout applications | 142 | 0.24 | 0.00 |
in call idle wait time | 1,270,556 | 2,113.92 | 11.61 |
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,098,835 | 1,828.21 | 10.04 |
index scans kdiixs1 | 880,547 | 1,465.03 | 8.05 |
leaf node 90-10 splits | 14 | 0.02 | 0.00 |
leaf node splits | 19 | 0.03 | 0.00 |
lob reads | 0 | 0.00 | 0.00 |
lob writes | 3 | 0.00 | 0.00 |
lob writes unaligned | 3 | 0.00 | 0.00 |
logical read bytes from cache | 98,462,261,248 | 163,818,996.72 | 899,601.29 |
logons cumulative | 109,420 | 182.05 | 1.00 |
max cf enq hold time | 50 | 0.08 | 0.00 |
messages received | 166,109 | 276.37 | 1.52 |
messages sent | 166,109 | 276.37 | 1.52 |
no buffer to keep pinned count | 5 | 0.01 | 0.00 |
no work - consistent read gets | 5,297,988 | 8,814.66 | 48.41 |
non-idle wait count | 4,774,179 | 7,943.16 | 43.62 |
non-idle wait time | 64,941 | 108.05 | 0.59 |
opened cursors cumulative | 2,520,153 | 4,192.97 | 23.03 |
parse count (describe) | 0 | 0.00 | 0.00 |
parse count (hard) | 133 | 0.22 | 0.00 |
parse count (total) | 2,520,391 | 4,193.36 | 23.03 |
parse time cpu | 4,124 | 6.86 | 0.04 |
parse time elapsed | 5,229 | 8.70 | 0.05 |
physical read IO requests | 73 | 0.12 | 0.00 |
physical read bytes | 598,016 | 994.96 | 5.46 |
physical read total IO requests | 691 | 1.15 | 0.01 |
physical read total bytes | 10,658,816 | 17,733.87 | 97.38 |
physical read total multi block requests | 0 | 0.00 | 0.00 |
physical reads | 73 | 0.12 | 0.00 |
physical reads cache | 73 | 0.12 | 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 | 686 | 1.14 | 0.01 |
physical write bytes | 40,730,624 | 67,766.57 | 372.14 |
physical write total IO requests | 166,517 | 277.05 | 1.52 |
physical write total bytes | 266,573,312 | 443,517.87 | 2,435.55 |
physical write total multi block requests | 269 | 0.45 | 0.00 |
physical writes | 4,972 | 8.27 | 0.05 |
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 | 4,972 | 8.27 | 0.05 |
physical writes non checkpoint | 4,572 | 7.61 | 0.04 |
pinned cursors current | 0 | 0.00 | 0.00 |
recursive calls | 12,501,068 | 20,798.96 | 114.22 |
recursive cpu usage | 11,964 | 19.91 | 0.11 |
redo blocks checksummed by FG (exclusive) | 19,259 | 32.04 | 0.18 |
redo blocks written | 423,113 | 703.96 | 3.87 |
redo buffer allocation retries | 1 | 0.00 | 0.00 |
redo entries | 462,663 | 769.77 | 4.23 |
redo log space requests | 2 | 0.00 | 0.00 |
redo log space wait time | 2 | 0.00 | 0.00 |
redo ordering marks | 4,896 | 8.15 | 0.04 |
redo size | 170,136,096 | 283,068.09 | 1,554.45 |
redo size for direct writes | 0 | 0.00 | 0.00 |
redo subscn max counts | 9,044 | 15.05 | 0.08 |
redo synch long waits | 2,364 | 3.93 | 0.02 |
redo synch time | 28,013 | 46.61 | 0.26 |
redo synch time (usec) | 440,188,217 | 732,373.92 | 4,021.78 |
redo synch writes | 218,789 | 364.02 | 2.00 |
redo wastage | 39,719,880 | 66,084.92 | 362.90 |
redo write time | 16,408 | 27.30 | 0.15 |
redo writes | 165,147 | 274.77 | 1.51 |
rollback changes - undo records applied | 10 | 0.02 | 0.00 |
rollbacks only - consistent read gets | 15 | 0.02 | 0.00 |
rows fetched via callback | 1,095,627 | 1,822.88 | 10.01 |
session logical reads | 12,019,319 | 19,997.44 | 109.81 |
shared hash latch upgrades - no wait | 761 | 1.27 | 0.01 |
sorts (memory) | 658,466 | 1,095.54 | 6.02 |
sorts (rows) | 21,887,686 | 36,416.17 | 199.98 |
sql area evicted | 64 | 0.11 | 0.00 |
sql area purged | 0 | 0.00 | 0.00 |
switch current to new buffer | 37 | 0.06 | 0.00 |
table fetch by rowid | 44,857,325 | 74,632.47 | 409.84 |
table fetch continued row | 126 | 0.21 | 0.00 |
table scan blocks gotten | 329,683 | 548.52 | 3.01 |
table scan rows gotten | 12,544,720 | 20,871.58 | 114.61 |
table scans (short tables) | 219,100 | 364.53 | 2.00 |
total cf enq hold time | 220 | 0.37 | 0.00 |
total number of cf enq holders | 19 | 0.03 | 0.00 |
total number of times SMON posted | 5 | 0.01 | 0.00 |
transaction rollbacks | 11 | 0.02 | 0.00 |
undo change vector size | 30,069,356 | 50,028.63 | 274.73 |
user I/O wait time | 20 | 0.03 | 0.00 |
user calls | 5,906,796 | 9,827.58 | 53.97 |
user commits | 68 | 0.11 | 0.00 |
user rollbacks | 109,383 | 181.99 | 1.00 |
workarea executions - optimal | 219,732 | 365.58 | 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 | 398 | 0.00 | | 0 | 0 | |
ASM map operation hash table | 1 | 0.00 | | 0 | 0 | |
ASM network state latch | 11 | 0.00 | | 0 | 0 | |
AWR Alerted Metric Element list | 4,510 | 0.00 | | 0 | 0 | |
Change Notification Hash table latch | 200 | 0.00 | | 0 | 0 | |
Consistent RBA | 165,154 | 0.00 | 0.00 | 0 | 0 | |
DML lock allocation | 439,108 | 0.01 | 0.08 | 0 | 0 | |
Event Group Locks | 109,447 | 0.00 | 0.00 | 0 | 0 | |
FOB s.o list latch | 60 | 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,071 | 0.00 | | 0 | 217 | 0.00 |
JS Sh mem access | 1 | 0.00 | | 0 | 0 | |
JS mem alloc latch | 3 | 0.00 | | 0 | 0 | |
JS queue access latch | 2 | 0.00 | | 0 | 0 | |
JS queue state obj latch | 3,604 | 0.00 | | 0 | 0 | |
JS slv state obj latch | 43 | 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 | 4 | 0.00 | | 0 | 0 | |
KWQS pqsubs latch | 3 | 0.00 | | 0 | 0 | |
KWQS pqueue ctx latch | 13 | 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 | 227 | 0.00 | | 0 | 0 | |
OS process allocation | 1,343 | 0.00 | | 0 | 0 | |
OS process: request allocation | 51 | 0.00 | | 0 | 0 | |
PL/SQL warning settings | 109,435 | 0.00 | 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 | 199 | 0.00 |
SQL memory manager workarea list latch | 13,723 | 0.00 | | 0 | 0 | |
Shared B-Tree | 58 | 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 | 888 | 0.00 | | 0 | 0 | |
active service list | 657,776 | 0.10 | 0.03 | 0 | 833 | 0.00 |
address list | 109,383 | 0.17 | 0.06 | 0 | 0 | |
buffer pool | 1 | 0.00 | | 0 | 0 | |
business card | 1 | 0.00 | | 0 | 0 | |
cache buffer handles | 61 | 0.00 | | 0 | 0 | |
cache buffers chains | 19,846,641 | 0.07 | 0.00 | 0 | 9,093 | 0.00 |
cache buffers lru chain | 5,050 | 0.00 | | 0 | 14,125 | 0.00 |
call allocation | 219,245 | 0.47 | 0.07 | 0 | 0 | |
cas latch | 1 | 0.00 | | 0 | 0 | |
change notification client cache latch | 1 | 0.00 | | 0 | 0 | |
channel handle pool latch | 56 | 0.00 | | 0 | 0 | |
channel operations parent latch | 3,349 | 0.00 | | 0 | 0 | |
checkpoint queue latch | 17,299 | 0.00 | | 0 | 9,224 | 0.00 |
client/application info | 765,783 | 0.04 | 0.03 | 0 | 0 | |
compile environment latch | 109,420 | 0.00 | 0.00 | 0 | 0 | |
corrupted undo seg latch | 41 | 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 | 11 | 0.00 | | 0 | 0 | |
cvmap freelist lock | 1 | 0.00 | | 0 | 0 | |
deferred cleanup latch | 11 | 0.00 | | 0 | 0 | |
dml lock allocation | 11 | 0.00 | | 0 | 0 | |
done queue latch | 1 | 0.00 | | 0 | 0 | |
dummy allocation | 218,840 | 0.13 | 0.01 | 0 | 0 | |
enqueue freelist latch | 10 | 0.00 | | 0 | 230,083 | 0.08 |
enqueue hash chains | 1,327,005 | 0.10 | 0.02 | 0 | 0 | |
enqueues | 5,287 | 0.00 | | 0 | 0 | |
fifth spare latch | 1 | 0.00 | | 0 | 0 | |
file cache latch | 80 | 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 | 109,383 | 0.00 | 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 | 363 | 0.00 | | 0 | 20,172 | 0.00 |
hash table modification latch | 1 | 0.00 | | 0 | 0 | |
heartbeat check | 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 | 12 | 0.00 | | 0 | 11 | 0.00 |
job_queue_processes free list latch | 22 | 0.00 | | 0 | 0 | |
job_queue_processes parameter latch | 141 | 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 | 68 | 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 | 26 | 0.00 | | 0 | 0 | |
ksv class latch | 15 | 0.00 | | 0 | 0 | |
ksv msg queue latch | 1 | 0.00 | | 0 | 0 | |
ksz_so allocation latch | 51 | 0.00 | | 0 | 0 | |
ktm global data | 20 | 0.00 | | 0 | 0 | |
kwqbsn:qsga | 21 | 0.00 | | 0 | 0 | |
lgwr LWN SCN | 165,405 | 0.00 | 0.00 | 0 | 0 | |
list of block allocation | 218,815 | 0.02 | 0.00 | 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 | 521,435 | 0.00 | 0.17 | 0 | 0 | |
mostly latch-free SCN | 165,657 | 0.03 | 0.07 | 0 | 0 | |
msg queue latch | 1 | 0.00 | | 0 | 0 | |
name-service namespace bucket | 1 | 0.00 | | 0 | 0 | |
ncodef allocation latch | 11 | 0.00 | | 0 | 0 | |
object queue header heap | 1,777 | 0.00 | | 0 | 2 | 0.00 |
object queue header operation | 30,047 | 0.00 | | 0 | 0 | |
object stats modification | 18 | 0.00 | | 0 | 0 | |
parallel query alloc buffer | 77 | 0.00 | | 0 | 0 | |
parallel query stats | 1 | 0.00 | | 0 | 0 | |
parameter list | 109,787 | 0.05 | 0.04 | 0 | 0 | |
parameter table management | 437,708 | 0.07 | 0.14 | 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 | 267,266 | 0.00 | 0.25 | 0 | 218,284 | 0.03 |
process allocation | 76 | 0.00 | | 0 | 26 | 0.00 |
process group creation | 51 | 0.00 | | 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 | 500,020 | 0.02 | 0.07 | 0 | 462,536 | 0.05 |
redo copy | 1 | 0.00 | | 0 | 462,628 | 0.30 |
redo writing | 496,849 | 0.00 | | 0 | 0 | |
resmgr group change latch | 109,407 | 0.00 | 0.00 | 0 | 0 | |
resmgr:active threads | 218,840 | 0.00 | | 0 | 0 | |
resmgr:actses change group | 109,400 | 0.00 | | 0 | 0 | |
resmgr:actses change state | 1 | 0.00 | | 0 | 0 | |
resmgr:free threads list | 218,839 | 0.26 | 0.01 | 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 | 6,073,961 | 0.30 | 0.01 | 0 | 156 | 0.00 |
rules engine aggregate statistics | 3 | 0.00 | | 0 | 0 | |
rules engine rule set statistics | 6 | 0.00 | | 0 | 0 | |
second Audit Vault latch | 1 | 0.00 | | 0 | 0 | |
second spare latch | 1 | 0.00 | | 0 | 0 | |
sequence cache | 328,222 | 0.07 | 0.00 | 0 | 0 | |
session allocation | 656,437 | 0.01 | 0.05 | 0 | 437,606 | 0.04 |
session idle bit | 12,141,777 | 0.03 | 0.04 | 0 | 0 | |
session queue latch | 1 | 0.00 | | 0 | 0 | |
session state list latch | 218,848 | 0.27 | 0.00 | 0 | 0 | |
session switching | 37 | 0.00 | | 0 | 0 | |
session timer | 202 | 0.00 | | 0 | 0 | |
shared pool | 12,504,499 | 1.31 | 0.03 | 5 | 0 | |
shared pool sim alloc | 1 | 0.00 | | 0 | 0 | |
shared pool simulator | 663 | 0.00 | | 0 | 0 | |
sim partition latch | 1 | 0.00 | | 0 | 0 | |
simulator hash latch | 1,172,961 | 0.00 | 0.00 | 0 | 0 | |
simulator lru latch | 4,587 | 0.02 | 0.00 | 0 | 1,167,240 | 0.09 |
sort extent pool | 25 | 0.00 | | 0 | 0 | |
space background state object latch | 5 | 0.00 | | 0 | 0 | |
space background task latch | 1,287 | 0.00 | | 0 | 404 | 0.00 |
state object free list | 2 | 0.00 | | 0 | 0 | |
statistics aggregation | 420 | 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 | 23 | 0.00 | | 0 | 0 | |
trace latch | 1 | 0.00 | | 0 | 0 | |
transaction allocation | 222,129 | 0.02 | 0.06 | 0 | 0 | |
undo global data | 666,262 | 0.01 | 0.07 | 0 | 0 | |
virtual circuit buffers | 45,503,689 | 0.00 | 0.14 | 0 | 0 | |
virtual circuit holder | 9,188,173 | 0.11 | 0.03 | 0 | 0 | |
virtual circuit queues | 9,201,956 | 0.18 | 0.15 | 4 | 8,959,776 | 0.52 |
virtual circuits | 218,766 | 0.03 | 0.11 | 0 | 0 | |