SQL Id | SQL Text |
13t5kwh3tyfhu |
declare TYPE attrs_cur IS REF CURSOR; m_cur attrs_cur; m_event varchar2(512); m_user varchar2(512); m_owner varchar2(512); m_user1 varchar2(512); m_type varchar2(512); m_stmt varchar2(512); m_name varchar2(5120); m_column varchar2(5120); m_cnt NUMBER; m_stmt1 varchar2(512); m_var varchar2(512); m_o_stmt VARCHAR2(5120); PRAGMA AUTONOMOUS_TRANSACTION; begin m_stmt:='select sys.dbms_standard.dictionary_obj_type from dual'; execute immediate m_stmt into m_type; if(not (m_type='TABLE' or m_type='TRIGGER' or m_type='USER' or m_type='TABLESPACE')) then return; end if; m_stmt:='select sys.dbms_standard.sysevent from dual'; execute immediate m_stmt into m_event; m_stmt:='select SYS_CONTEXT(''USERENV'', ''SESSION_USER'') from dual'; execute immediate m_stmt into m_user; m_stmt:='select SYS_CONTEXT(''USERENV'', ''CURRENT_USER'') from dual'; execute immediate m_stmt into m_user1; m_stmt:='select sys.dbms_standard.dictionary_obj_owner from dual'; execute immediate m_stmt into m_owner; m_stmt:='select sys.dbms_standard.dictionary_obj_name from dual'; execute immediate m_stmt into m_name; m_stmt:='select sdo_geor_def.getSqlText from dual'; execute immediate m_stmt into m_o_stmt; if (m_owner!='MDSYS' and m_owner!='SYS' and m_type='TABLE' and m_event='ALTER') then m_stmt:='select column_name from dba_tab_columns where owner=:1 and table_name=:2'; open m_cur for m_stmt using m_owner, m_name; loop fetch m_cur into m_column; exit when m_cur%NOTFOUND; m_stmt:='select sdo_geor_def.isDropColumn(:1) from dual'; execute immediate m_stmt into m_stmt1 using SYS.DBMS_ASSERT.SIMPLE_SQL_NAME(m_column); if (trim(m_stmt1)='TRUE') then m_stmt:='begin sdo_geor_def.doAlterDropColumn(:1, :2, :3); end;'; execute immediate m_stmt using SYS.DBMS_ASSERT.SCHEMA_NAME(m_owner), SYS.DBMS_ASSERT.SIMPLE_SQL_NAME(m_name), SYS.DBMS_ASSERT.SIMPLE_SQL_NAME(m_column); end if; end loop; end if; if ((m_event='DROP' and m_type='USER') or (m_event='DROP' and m_type='TABLESPACE')) then m_stmt:='insert into sdo_geor_ddl__table$$ values (1)'; EXECUTE IMMEDIATE m_stmt; commit; end if; if (m_event='DROP' and m_type='TABLE') then m_stmt:='select count(*) from sdo_geor_sysdata_table where sdo_owner=:1 and RDT_TABLE_NAME=:2'; EXECUTE IMMEDIATE m_stmt into m_cnt using m_owner, m_name; if(m_cnt!=0) then m_stmt:='select count(*) from sdo_geor_ddl__table$$'; EXECUTE IMMEDIATE m_stmt into m_cnt; if((m_cnt=0)and (m_user!='SYS' and m_user!='SYSTEM' and m_user!='MDSYS'and m_owner!='MDSYS' and m_owner!='SYS')) then m_stmt:='call mderr.raise_md_error(''MD'', ''SDO'', -13391, ''The referenced raster data table(RDT) cannot be dropped.'')'; execute immediate m_stmt; end if; end if; m_stmt:='insert into sdo_geor_ddl__table$$ values (2)'; EXECUTE IMMEDIATE m_stmt; commit; end if; if(m_user='SYS' or m_user='SYSTEM' or m_user='MDSYS' or m_owner='MDSYS' or m_owner='SYS') then return; end if; if (m_event='RENAME' and m_type='TABLE') then m_stmt:='select count(*) from sdo_geor_sysdata_table where sdo_owner=:1 and RDT_TABLE_NAME=:2'; EXECUTE IMMEDIATE m_stmt into m_cnt using m_owner, m_name; if(m_cnt!=0) then m_stmt:='select count(*) from sdo_geor_ddl__table$$'; EXECUTE IMMEDIATE m_stmt into m_cnt; if(m_cnt=0) then m_stmt:='call mderr.raise_md_error(''MD'', ''SDO'', -13391, ''The referenced raster data table(RDT) cannot be renamed directly.'')'; execute immediate m_stmt; end if; end if; end if; if (m_type='TRIGGER' and m_event='DROP') then m_stmt:='select REGEXP_SUBSTR(:1, ''GRDMLTR_.+'', 1, 1, ''i'') from dual'; EXECUTE IMMEDIATE m_stmt into m_var using m_name; if(m_var is null) then return; end if; m_stmt:='select count(*) from sdo_geor_ddl__table$$'; EXECUTE IMMEDIATE m_stmt into m_cnt; if(m_cnt=0) then m_stmt:='call mderr.raise_md_error(''MD'', ''SDO'', -13391, ''GeoRaster DML triggers cannot be dropped.'')'; execute immediate m_stmt; end if; end if; if (m_type='TRIGGER' and m_event='ALTER') then m_o_stmt:=upper(trim(m_o_stmt)); if(instr(m_o_stmt, ' COMPILE ')>0 or instr(m_o_stmt, ' ENABLE ')
>0 or substr(m_o_stmt, length(m_o_stmt)-8, 8)=' COMPILE' or substr(m_o_stmt, length(m_o_stmt)-7, 7)=' ENABLE' ) then return; end if; m_stmt:='select REGEXP_SUBSTR(:1, ''GRDMLTR_.+'', 1, 1, ''i'') from dual'; EXECUTE IMMEDIATE m_stmt into m_var using m_name; if(m_var is null) then return; end if; m_stmt:='select count(*) from sdo_geor_ddl__table$$'; EXECUTE IMMEDIATE m_stmt into m_cnt; if(m_cnt=0) then m_stmt:='call mderr.raise_md_error(''MD'', ''SDO'', -13391, ''GeoRaster DML triggers cannot be altered.'')'; execute immediate m_stmt; end if; end if; if (m_type='TRIGGER' and m_event='CREATE') then m_stmt:='select REGEXP_SUBSTR(:1, ''GRDMLTR_.+'', 1, 1, ''i'') from dual'; EXECUTE IMMEDIATE m_stmt into m_var using m_name; if(m_var is null) then return; end if; m_stmt:='select count(*) from sdo_geor_ddl__table$$'; EXECUTE IMMEDIATE m_stmt into m_cnt; if(m_cnt=0) then m_stmt:='call mderr.raise_md_error(''MD'', ''SDO'', -13391, ''GeoRaster reserved names cannot be used to create regular triggers.'')'; execute immediate m_stmt; end if; end if; Exception when others then if(sqlcode=-13391) then m_stmt:=sqlerrm; m_stmt:=substr(m_stmt, 11); m_stmt:='call mderr.raise_md_error(''MD'', ''SDO'', -13391, '''||m_stmt||''')'; execute immediate m_stmt; end if; end; |
2mp99nzd9u1qp | delete from histgrm$ where 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# |
43ruajmwv9fus | insert into histgrm$(obj#, intcol#, row#, bucket, endpoint, col#, epvalue)values(:1, :2, :3, :4, :5, :6, :7) |
480utgnq0t6mf | begin dbms_stats.unlock_partition_stats('SYS', :bind1, :bind2); end; |
53saa2zkr6wc3 | select intcol#, nvl(pos#, 0), col#, nvl(spare1, 0) from ccol$ where con#=:1 |
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; |
6ydy4p7r33m0c | SELECT c FROM sbtest WHERE id = :"SYS_B_0" |
70vs1d7ywk5m0 | begin dbms_stats.copy_table_stats('SYS', :bind1, :bind2, :bind3, flags=>1, force=>TRUE); end; |
7tc5u8t3mmzgf | select cachedblk, cachehit, logicalread from tab_stats$ where obj#=:1 |
8sd37ztuwkyyc | begin dbms_swrf_internal.massage_column_stats('SYS', :bind1, :bind2, :bind3, minval=>:bind4, maxval=>:bind5); end; |
95mpkn5xz9001 | insert into hist_head$(obj#, intcol#, bucket_cnt, row_cnt, cache_cnt, null_cnt, timestamp#, sample_size, minimum, maximum, distcnt, lowval, hival, density, spare1, spare2, avgcln, col#) values(:1, :2, :3, :4, :5, :6, :7, :8, :9, :10, :11, :12, :13, :14, :15, :16, :17, :18) |
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 |
bcuaanyavwv59 | BEGIN DBMS_WORKLOAD_REPOSITORY.CREATE_SNAPSHOT; END; |
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 |
c5j5sa604wfxd | SELECT DISTINCT c FROM sbtest WHERE id BETWEEN :"SYS_B_0" AND :"SYS_B_1" ORDER BY c |
c7h6d8d194m88 | SELECT c FROM sbtest WHERE id BETWEEN :"SYS_B_0" AND :"SYS_B_1" ORDER BY c |
cfxcsauwtg623 | SELECT SUM(k) FROM sbtest WHERE id BETWEEN :"SYS_B_0" AND :"SYS_B_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 |
cvn54b7yz0s8u | select /*+ index(idl_ub1$ i_idl_ub11) +*/ piece#, length, piece from idl_ub1$ where obj#=:1 and part=:2 and version=:3 order by piece# |
d89c1mh5pvbkz | SELECT /*+ rule */ U.NAME, OT.NAME, NULL, NULL, C.NAME, BITAND(H.SPARE2, 2), BITAND(H.SPARE2, 1), H.DISTCNT, H.DENSITY, H.SPARE1, H.SAMPLE_SIZE, H.NULL_CNT, H.TIMESTAMP#, H.AVGCLN, H.LOWVAL, H.HIVAL, H.MINIMUM, H.MAXIMUM, NULL, NULL, H.CACHE_CNT, HG.BUCKET, HG.ENDPOINT, HG.EPVALUE, BITAND(H.SPARE2, 4), NULL FROM SYS.USER$ U, SYS.OBJ$ OT, SYS.COL$ C, SYS.HIST_HEAD$ H, HISTGRM$ HG WHERE :B4 IS NULL AND U.NAME = :B3 AND OT.OWNER# = U.USER# AND OT.NAME = :B2 AND OT.TYPE# = 2 AND C.OBJ# = OT.OBJ# AND (:B1 IS NULL OR C.NAME = :B1 ) AND H.OBJ# = OT.OBJ# AND H.INTCOL# = C.INTCOL# AND HG.OBJ#(+) = H.OBJ# AND HG.INTCOL#(+) = H.INTCOL# UNION ALL SELECT U.NAME, OT.NAME, OP.SUBNAME, NULL, C.NAME, BITAND(H.SPARE2, 2), BITAND(H.SPARE2, 1), H.DISTCNT, H.DENSITY, H.SPARE1, H.SAMPLE_SIZE, H.NULL_CNT, H.TIMESTAMP#, H.AVGCLN, H.LOWVAL, H.HIVAL, H.MINIMUM, H.MAXIMUM, NULL, NULL, H.CACHE_CNT, HG.BUCKET, HG.ENDPOINT, HG.EPVALUE, BITAND(H.SPARE2, 4), NULL FROM SYS.USER$ U, SYS.OBJ$ OT, SYS.COL$ C, SYS.TABPART$ TP, SYS.OBJ$ OP, SYS.HIST_HEAD$ H, HISTGRM$ HG WHERE U.NAME = :B3 AND OT.OWNER# = U.USER# AND OT.NAME = :B2 AND OT.TYPE# = 2 AND C.OBJ# = OT.OBJ# AND (:B1 IS NULL OR C.NAME = :B1 ) AND TP.BO# = OT.OBJ# AND TP.OBJ# = OP.OBJ# AND ((:B4 IS NULL AND :B5 IS NOT NULL) OR OP.SUBNAME = :B4 ) AND H.OBJ# = OP.OBJ# AND H.INTCOL# = C.INTCOL# AND HG.OBJ#(+) = H.OBJ# AND HG.INTCOL#(+) = H.INTCOL# UNION ALL SELECT U.NAME, OP.NAME, OP.SUBNAME, NULL, C.NAME, BITAND(H.SPARE2, 2), BITAND(H.SPARE2, 1), H.DISTCNT, H.DENSITY, H.SPARE1, H.SAMPLE_SIZE, H.NULL_CNT, H.TIMESTAMP#, H.AVGCLN, H.LOWVAL, H.HIVAL, H.MINIMUM, H.MAXIMUM, NULL, NULL, H.CACHE_CNT, HG.BUCKET, HG.ENDPOINT, HG.EPVALUE, BITAND(H.SPARE2, 4), NULL FROM SYS.USER$ U, SYS.COL$ C, SYS.TABCOMPART$ TP, SYS.OBJ$ OP, SYS.HIST_HEAD$ H, HISTGRM$ HG WHERE U.NAME = :B3 AND OP.OWNER# = U.USER# AND OP.NAME = :B2 AND OP.TYPE# = 19 AND ((:B4 IS NULL AND :B5 IS NOT NULL) OR OP.SUBNAME = :B4 ) AND TP.OBJ# = OP.OBJ# AND C.OBJ# = TP.BO# AND (:B1 IS NULL OR C.NAME = :B1 ) AND H.OBJ# = OP.OBJ# AND H.INTCOL# = C.INTCOL# AND HG.OBJ#(+) = H.OBJ# AND HG.INTCOL#(+) = H.INTCOL# UNION ALL SELECT U.NAME, OP.NAME, OP.SUBNAME, OS.SUBNAME, C.NAME, BITAND(H.SPARE2, 2), BITAND(H.SPARE2, 1), H.DISTCNT, H.DENSITY, H.SPARE1, H.SAMPLE_SIZE, H.NULL_CNT, H.TIMESTAMP#, H.AVGCLN, H.LOWVAL, H.HIVAL, H.MINIMUM, H.MAXIMUM, NULL, NULL, H.CACHE_CNT, HG.BUCKET, HG.ENDPOINT, HG.EPVALUE, BITAND(H.SPARE2, 4), NULL FROM SYS.USER$ U, SYS.COL$ C, SYS.TABCOMPART$ TP, SYS.OBJ$ OP, SYS.TABSUBPART$ TS, SYS.OBJ$ OS, SYS.HIST_HEAD$ H, HISTGRM$ HG WHERE U.NAME = :B3 AND OP.OWNER# = U.USER# AND OP.NAME = :B2 AND OP.TYPE# = 19 AND TP.OBJ# = OP.OBJ# AND C.OBJ# = TP.BO# AND (:B1 IS NULL OR C.NAME = :B1 ) AND TS.POBJ# = TP.OBJ# AND TS.OBJ# = OS.OBJ# AND ((:B4 IS NULL AND :B5 IS NOT NULL) OR (OP.SUBNAME = :B4 AND (:B5 IS NOT NULL OR OS.SUBNAME IS NULL)) OR OS.SUBNAME = :B4 ) AND H.OBJ# = OS.OBJ# AND H.INTCOL# = C.INTCOL# AND HG.OBJ#(+) = H.OBJ# AND HG.INTCOL#(+) = H.INTCOL# ORDER BY 1, 2, 3, 4, 5, 22 |
db78fxqxwxt7r | select /*+ rule */ bucket, endpoint, col#, epvalue from histgrm$ where obj#=:1 and intcol#=:2 and row#=:3 order by bucket |
g3bkwtxyy9j4x | SELECT c FROM sbtest WHERE id BETWEEN :"SYS_B_0" AND :"SYS_B_1" |
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 | 0 | 0.00 | 0.00 |
CCursor + sql area evicted | 0 | 0.00 | 0.00 |
CPU used by this session | 66,814 | 111.14 | 0.13 |
CPU used when call started | 66,374 | 110.41 | 0.13 |
CR blocks created | 20 | 0.03 | 0.00 |
Commit SCN cached | 5 | 0.01 | 0.00 |
DB time | 139,680 | 232.35 | 0.27 |
DBWR checkpoint buffers written | 4,848 | 8.06 | 0.01 |
DBWR checkpoints | 82 | 0.14 | 0.00 |
DBWR transaction table writes | 18 | 0.03 | 0.00 |
DBWR undo block writes | 2,377 | 3.95 | 0.00 |
Effective IO time | 0 | 0.00 | 0.00 |
HSC Heap Segment Block Changes | 65,231 | 108.51 | 0.13 |
Heap Segment Array Inserts | 109 | 0.18 | 0.00 |
Heap Segment Array Updates | 277 | 0.46 | 0.00 |
IMU CR rollbacks | 20 | 0.03 | 0.00 |
IMU Flushes | 24 | 0.04 | 0.00 |
IMU Redo allocation size | 81,632 | 135.79 | 0.16 |
IMU commits | 61 | 0.10 | 0.00 |
IMU recursive-transaction flush | 0 | 0.00 | 0.00 |
IMU undo allocation size | 318,720 | 530.17 | 0.61 |
LOB table id lookup cache misses | 1 | 0.00 | 0.00 |
Number of read IOs issued | 0 | 0.00 | 0.00 |
Requests to/from client | 9,347,477 | 15,548.91 | 18.00 |
RowCR attempts | 8 | 0.01 | 0.00 |
RowCR hits | 8 | 0.01 | 0.00 |
SQL*Net roundtrips to/from client | 9,347,493 | 15,548.94 | 18.00 |
active txn count during cleanout | 207 | 0.34 | 0.00 |
application wait time | 2 | 0.00 | 0.00 |
background timeouts | 2,917 | 4.85 | 0.01 |
buffer is not pinned count | 6,236,814 | 10,374.53 | 12.01 |
buffer is pinned count | 68,169 | 113.39 | 0.13 |
bytes received via SQL*Net from client | 446,094,557 | 742,048.88 | 858.88 |
bytes sent via SQL*Net to client | 1,590,880,113 | 2,646,324.17 | 3,062.98 |
calls to get snapshot scn: kcmgss | 3,662,868 | 6,092.94 | 7.05 |
calls to kcmgas | 5,181 | 8.62 | 0.01 |
calls to kcmgcs | 2,946 | 4.90 | 0.01 |
cell physical IO interconnect bytes | 153,643,008 | 255,575.01 | 295.81 |
change write time | 289 | 0.48 | 0.00 |
cleanout - number of ktugct calls | 227 | 0.38 | 0.00 |
cleanouts and rollbacks - consistent read gets | 1 | 0.00 | 0.00 |
cleanouts only - consistent read gets | 8 | 0.01 | 0.00 |
cluster key scan block gets | 6,612 | 11.00 | 0.01 |
cluster key scans | 4,853 | 8.07 | 0.01 |
commit batch/immediate performed | 10 | 0.02 | 0.00 |
commit batch/immediate requested | 10 | 0.02 | 0.00 |
commit cleanout failures: callback failure | 7 | 0.01 | 0.00 |
commit cleanout failures: cannot pin | 3 | 0.00 | 0.00 |
commit cleanouts | 5,374 | 8.94 | 0.01 |
commit cleanouts successfully completed | 5,364 | 8.92 | 0.01 |
commit immediate performed | 10 | 0.02 | 0.00 |
commit immediate requested | 10 | 0.02 | 0.00 |
commit txn count during cleanout | 48 | 0.08 | 0.00 |
concurrency wait time | 10,037 | 16.70 | 0.02 |
consistent changes | 45 | 0.07 | 0.00 |
consistent gets | 16,132,063 | 26,834.62 | 31.06 |
consistent gets - examination | 9,903,409 | 16,473.67 | 19.07 |
consistent gets direct | 0 | 0.00 | 0.00 |
consistent gets from cache | 16,132,063 | 26,834.62 | 31.06 |
consistent gets from cache (fastpath) | 6,223,024 | 10,351.59 | 11.98 |
cursor authentications | 219 | 0.36 | 0.00 |
data blocks consistent reads - undo records applied | 34 | 0.06 | 0.00 |
db block changes | 270,829 | 450.51 | 0.52 |
db block gets | 252,145 | 419.43 | 0.49 |
db block gets from cache | 252,145 | 419.43 | 0.49 |
db block gets from cache (fastpath) | 65,801 | 109.46 | 0.13 |
deferred (CURRENT) block cleanout applications | 2,795 | 4.65 | 0.01 |
enqueue conversions | 1,108 | 1.84 | 0.00 |
enqueue releases | 10,645 | 17.71 | 0.02 |
enqueue requests | 10,645 | 17.71 | 0.02 |
enqueue timeouts | 0 | 0.00 | 0.00 |
enqueue waits | 105 | 0.17 | 0.00 |
execute count | 3,654,484 | 6,078.99 | 7.04 |
file io wait time | 12,845,360 | 21,367.41 | 24.73 |
free buffer inspected | 0 | 0.00 | 0.00 |
free buffer requested | 10,706 | 17.81 | 0.02 |
heap block compress | 40 | 0.07 | 0.00 |
immediate (CR) block cleanout applications | 9 | 0.01 | 0.00 |
immediate (CURRENT) block cleanout applications | 1,441 | 2.40 | 0.00 |
in call idle wait time | 1,533,811 | 2,551.39 | 2.95 |
index crx upgrade (positioned) | 0 | 0.00 | 0.00 |
index crx upgrade (prefetch) | 0 | 0.00 | 0.00 |
index fast full scans (full) | 22 | 0.04 | 0.00 |
index fetch by key | 2,614,846 | 4,349.62 | 5.03 |
index scans kdiixs1 | 1,057,809 | 1,759.60 | 2.04 |
leaf node 90-10 splits | 18 | 0.03 | 0.00 |
leaf node splits | 28 | 0.05 | 0.00 |
lob reads | 0 | 0.00 | 0.00 |
lob writes | 43 | 0.07 | 0.00 |
lob writes unaligned | 43 | 0.07 | 0.00 |
logical read bytes from cache | 134,219,431,936 | 223,265,174.57 | 258,417.93 |
logons cumulative | 53 | 0.09 | 0.00 |
max cf enq hold time | 10 | 0.02 | 0.00 |
messages received | 3,274 | 5.45 | 0.01 |
messages sent | 3,274 | 5.45 | 0.01 |
min active SCN optimization applied on CR | 0 | 0.00 | 0.00 |
no buffer to keep pinned count | 67 | 0.11 | 0.00 |
no work - consistent read gets | 6,224,634 | 10,354.27 | 11.98 |
non-idle wait count | 9,424,850 | 15,677.62 | 18.15 |
non-idle wait time | 12,781 | 21.26 | 0.02 |
opened cursors cumulative | 3,653,019 | 6,076.56 | 7.03 |
parse count (describe) | 0 | 0.00 | 0.00 |
parse count (failures) | 3 | 0.00 | 0.00 |
parse count (hard) | 621 | 1.03 | 0.00 |
parse count (total) | 3,653,811 | 6,077.87 | 7.03 |
parse time cpu | 16,793 | 27.93 | 0.03 |
parse time elapsed | 23,649 | 39.34 | 0.05 |
physical read IO requests | 4,247 | 7.06 | 0.01 |
physical read bytes | 57,442,304 | 95,551.48 | 110.60 |
physical read total IO requests | 4,782 | 7.95 | 0.01 |
physical read total bytes | 66,174,976 | 110,077.71 | 127.41 |
physical read total multi block requests | 111 | 0.18 | 0.00 |
physical reads | 7,012 | 11.66 | 0.01 |
physical reads cache | 7,012 | 11.66 | 0.01 |
physical reads cache prefetch | 2,765 | 4.60 | 0.01 |
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 | 1,865 | 3.10 | 0.00 |
physical write bytes | 40,386,560 | 67,180.38 | 77.76 |
physical write total IO requests | 3,313 | 5.51 | 0.01 |
physical write total bytes | 87,468,032 | 145,497.30 | 168.41 |
physical write total multi block requests | 193 | 0.32 | 0.00 |
physical writes | 4,930 | 8.20 | 0.01 |
physical writes direct | 0 | 0.00 | 0.00 |
physical writes direct temporary tablespace | 0 | 0.00 | 0.00 |
physical writes from cache | 4,930 | 8.20 | 0.01 |
physical writes non checkpoint | 4,538 | 7.55 | 0.01 |
pinned buffers inspected | 0 | 0.00 | 0.00 |
pinned cursors current | 1 | 0.00 | 0.00 |
recursive calls | 618,633 | 1,029.06 | 1.19 |
recursive cpu usage | 870 | 1.45 | 0.00 |
redo blocks checksummed by FG (exclusive) | 2,207 | 3.67 | 0.00 |
redo blocks written | 76,340 | 126.99 | 0.15 |
redo entries | 137,857 | 229.32 | 0.27 |
redo ordering marks | 2,434 | 4.05 | 0.00 |
redo size | 37,458,836 | 62,310.30 | 72.12 |
redo subscn max counts | 3,164 | 5.26 | 0.01 |
redo synch long waits | 9 | 0.01 | 0.00 |
redo synch time | 59 | 0.10 | 0.00 |
redo synch time (usec) | 602,431 | 1,002.10 | 1.16 |
redo synch writes | 47 | 0.08 | 0.00 |
redo wastage | 236,068 | 392.68 | 0.45 |
redo write time | 148 | 0.25 | 0.00 |
redo writes | 951 | 1.58 | 0.00 |
rollback changes - undo records applied | 10 | 0.02 | 0.00 |
rollbacks only - consistent read gets | 18 | 0.03 | 0.00 |
rows fetched via callback | 3,036 | 5.05 | 0.01 |
session logical reads | 16,384,208 | 27,254.05 | 31.55 |
shared hash latch upgrades - no wait | 1,933 | 3.22 | 0.00 |
sorts (memory) | 524,400 | 872.30 | 1.01 |
sorts (rows) | 51,958,554 | 86,429.63 | 100.04 |
sql area evicted | 766 | 1.27 | 0.00 |
sql area purged | 43 | 0.07 | 0.00 |
switch current to new buffer | 1,202 | 2.00 | 0.00 |
table fetch by rowid | 29,124 | 48.45 | 0.06 |
table fetch continued row | 358 | 0.60 | 0.00 |
table scan blocks gotten | 6,297 | 10.47 | 0.01 |
table scan rows gotten | 465,876 | 774.95 | 0.90 |
table scans (long tables) | 40 | 0.07 | 0.00 |
table scans (short tables) | 516 | 0.86 | 0.00 |
total cf enq hold time | 60 | 0.10 | 0.00 |
total number of cf enq holders | 11 | 0.02 | 0.00 |
total number of times SMON posted | 5 | 0.01 | 0.00 |
transaction rollbacks | 10 | 0.02 | 0.00 |
undo change vector size | 18,027,676 | 29,987.85 | 34.71 |
user I/O wait time | 1,089 | 1.81 | 0.00 |
user calls | 12,982,731 | 21,595.92 | 25.00 |
user commits | 86 | 0.14 | 0.00 |
user rollbacks | 519,303 | 863.83 | 1.00 |
workarea executions - optimal | 521,972 | 868.27 | 1.00 |
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 | 728 | 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,342 | 0.00 | | 0 | 0 | |
Change Notification Hash table latch | 201 | 0.00 | | 0 | 0 | |
Consistent RBA | 951 | 0.00 | | 0 | 0 | |
DML lock allocation | 4,806 | 0.00 | | 0 | 0 | |
Event Group Locks | 96 | 0.00 | | 0 | 0 | |
FOB s.o list latch | 39 | 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,087 | 0.00 | | 0 | 213 | 0.00 |
JS Sh mem access | 3 | 0.00 | | 0 | 0 | |
JS mem alloc latch | 0 | | | 0 | 2 | 0.00 |
JS queue access latch | 1 | 0.00 | | 0 | 0 | |
JS queue state obj latch | 4,356 | 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 | 4 | 0.00 | | 0 | 187 | 0.00 |
KWQMN job cache list latch | 5 | 0.00 | | 0 | 0 | |
KWQS pqueue ctx latch | 10 | 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 | 286 | 0.00 | | 0 | 0 | |
OS process allocation | 1,373 | 0.00 | | 0 | 0 | |
OS process: request allocation | 83 | 0.00 | | 0 | 0 | |
PL/SQL warning settings | 312 | 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 | 2 | 0.00 |
SGA blob parent | 1 | 0.00 | | 0 | 0 | |
SGA bucket locks | 1 | 0.00 | | 0 | 0 | |
SGA heap locks | 1 | 0.00 | | 0 | 0 | |
SGA pool locks | 1 | 0.00 | | 0 | 0 | |
SQL memory manager latch | 1 | 0.00 | | 0 | 200 | 0.00 |
SQL memory manager workarea list latch | 13,682 | 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 | 3,323 | 0.00 | | 0 | 2 | 0.00 |
active service list | 1,516 | 0.00 | | 0 | 771 | 0.00 |
alert log latch | 0 | | | 0 | 2 | 0.00 |
buffer pool | 1 | 0.00 | | 0 | 0 | |
business card | 1 | 0.00 | | 0 | 0 | |
cache buffer handles | 684 | 0.00 | | 0 | 0 | |
cache buffers chains | 23,353,229 | 0.09 | 0.00 | 0 | 15,171 | 0.00 |
cache buffers lru chain | 8,208 | 0.01 | 0.00 | 0 | 17,235 | 0.00 |
cache table scan latch | 348 | 0.00 | | 0 | 348 | 0.00 |
call allocation | 1,496 | 0.07 | 1.00 | 0 | 0 | |
cas latch | 1 | 0.00 | | 0 | 0 | |
change notification client cache latch | 1 | 0.00 | | 0 | 0 | |
channel handle pool latch | 92 | 0.00 | | 0 | 0 | |
channel operations parent latch | 5,368 | 0.00 | | 0 | 0 | |
checkpoint queue latch | 26,123 | 0.00 | | 0 | 4,548 | 0.00 |
client/application info | 225 | 0.00 | | 0 | 0 | |
compile environment latch | 53 | 0.00 | | 0 | 0 | |
corrupted undo seg latch | 40 | 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 | 91 | 0.00 | | 0 | 0 | |
done queue latch | 1 | 0.00 | | 0 | 0 | |
dummy allocation | 106 | 0.00 | | 0 | 0 | |
enqueue freelist latch | 1 | 0.00 | | 0 | 13,691 | 0.00 |
enqueue hash chains | 22,711 | 0.00 | 0.00 | 0 | 0 | |
enqueues | 809 | 0.00 | | 0 | 0 | |
fifth spare latch | 1 | 0.00 | | 0 | 0 | |
file cache latch | 335 | 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 | 17 | 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 | 446 | 0.00 | | 0 | 25,461 | 0.00 |
hash table modification latch | 89 | 0.00 | | 0 | 2 | 0.00 |
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 | 2 | 0.00 |
job_queue_processes parameter latch | 142 | 0.00 | | 0 | 0 | |
k2q lock allocation | 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 | 64 | 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 | 24 | 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 | 83 | 0.00 | | 0 | 0 | |
ktm global data | 21 | 0.00 | | 0 | 0 | |
kwqbsn:qsga | 22 | 0.00 | | 0 | 0 | |
lgwr LWN SCN | 1,120 | 0.00 | | 0 | 0 | |
list of block allocation | 164 | 0.00 | | 0 | 0 | |
loader state object freelist | 42 | 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 | 493 | 0.00 | | 0 | 0 | |
messages | 14,425 | 0.01 | 0.00 | 0 | 0 | |
mostly latch-free SCN | 1,124 | 0.00 | | 0 | 0 | |
msg queue latch | 1 | 0.00 | | 0 | 0 | |
multiblock read objects | 804 | 0.00 | | 0 | 2 | 0.00 |
name-service namespace bucket | 1 | 0.00 | | 0 | 0 | |
ncodef allocation latch | 9 | 0.00 | | 0 | 0 | |
object queue header heap | 5,464 | 0.00 | | 0 | 250 | 0.00 |
object queue header operation | 31,372 | 0.00 | 1.00 | 0 | 0 | |
object stats modification | 801 | 0.00 | | 0 | 0 | |
parallel query alloc buffer | 81 | 0.00 | | 0 | 0 | |
parallel query stats | 1 | 0.00 | | 0 | 0 | |
parameter list | 178 | 0.00 | | 0 | 0 | |
parameter table management | 242 | 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 | 672 | 0.00 | | 0 | 668 | 0.00 |
process allocation | 107 | 0.00 | | 0 | 42 | 0.00 |
process group creation | 83 | 0.00 | | 0 | 0 | |
process queue | 1 | 0.00 | | 0 | 0 | |
process queue reference | 1 | 0.00 | | 0 | 0 | |
qmn task queue latch | 88 | 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 | 3,610 | 0.00 | | 0 | 137,878 | 0.00 |
redo copy | 1 | 0.00 | | 0 | 137,879 | 0.03 |
redo writing | 5,778 | 0.02 | 0.00 | 0 | 0 | |
resmgr group change latch | 41 | 0.00 | | 0 | 0 | |
resmgr:active threads | 106 | 0.00 | | 0 | 0 | |
resmgr:actses change group | 34 | 0.00 | | 0 | 0 | |
resmgr:actses change state | 1 | 0.00 | | 0 | 0 | |
resmgr:free threads list | 105 | 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 | 1 | 0.00 | | 0 | 0 | |
resmgr:session queuing | 1 | 0.00 | | 0 | 0 | |
rm cas latch | 1 | 0.00 | | 0 | 0 | |
row cache objects | 112,526 | 0.00 | 0.00 | 0 | 1,743 | 0.00 |
rules engine evaluation context statistics | 0 | | | 0 | 2 | 0.00 |
second Audit Vault latch | 1 | 0.00 | | 0 | 0 | |
second spare latch | 1 | 0.00 | | 0 | 0 | |
sequence cache | 106 | 0.00 | | 0 | 0 | |
session allocation | 519,496 | 0.02 | 0.05 | 0 | 519,399 | 0.01 |
session idle bit | 26,484,807 | 0.06 | 0.10 | 1 | 0 | |
session queue latch | 1 | 0.00 | | 0 | 0 | |
session state list latch | 118 | 0.00 | | 0 | 0 | |
session switching | 51 | 0.00 | | 0 | 0 | |
session timer | 200 | 0.00 | | 0 | 0 | |
shared pool | 17,963,313 | 1.64 | 0.15 | 25 | 0 | |
shared pool sim alloc | 31 | 0.00 | | 0 | 0 | |
shared pool simulator | 4,055 | 0.00 | | 0 | 0 | |
sim partition latch | 1 | 0.00 | | 0 | 0 | |
simulator hash latch | 4,651,038 | 0.00 | 0.07 | 0 | 0 | |
simulator lru latch | 3,102 | 0.16 | 0.00 | 0 | 4,646,814 | 0.12 |
sort extent pool | 24 | 0.00 | | 0 | 0 | |
space background state object latch | 3 | 0.00 | | 0 | 0 | |
space background task latch | 1,560 | 0.13 | 0.00 | 0 | 404 | 0.00 |
state object free list | 2 | 0.00 | | 0 | 0 | |
statistics aggregation | 560 | 0.00 | | 0 | 0 | |
tablespace key chain | 461 | 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 | 20 | 0.00 | | 0 | 0 | |
transaction allocation | 641 | 0.00 | | 0 | 0 | |
undo global data | 6,901 | 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 | |