SQL Id | SQL Text |
0dygnuq0gp9vw | UPDATE GK_T_CARINFO SET LAST_LONGITUDE=:B11 , LAST_LATITUDE = :B10 , LAST_REPORT_TIME = :B1 , LAST_SPEED = :B9 , HEIGH = :B8 , LAST_DIRCTION = :B7 , LAST_STATUS_ID = :B6 , LAST_ALARM_ID = :B5 , RECEIVE_TIME = :B4 , MILEAGE = :B3 , ACC_OPEN_TIME = :B1 WHERE CAR_ID=:B2 AND ( (LAST_REPORT_TIME IS NULL) OR (LAST_REPORT_TIME < :B1 )) |
0fr8zhn4ymu3v | select intcol#, type, flags, lobcol, objcol, extracol, schemaoid, elemnum from opqtype$ where obj# = :1 order by intcol# asc |
0h6b2sajwb74n | select privilege#, level from sysauth$ connect by grantee#=prior privilege# and privilege#>0 start with grantee#=:1 and privilege#>0 |
1gu8t96d0bdmu | select t.ts#, t.file#, t.block#, nvl(t.bobj#, 0), nvl(t.tab#, 0), t.intcols, nvl(t.clucols, 0), t.audit$, t.flags, t.pctfree$, t.pctused$, t.initrans, t.maxtrans, t.rowcnt, t.blkcnt, t.empcnt, t.avgspc, t.chncnt, t.avgrln, t.analyzetime, t.samplesize, t.cols, t.property, nvl(t.degree, 1), nvl(t.instances, 1), t.avgspc_flb, t.flbcnt, t.kernelcols, nvl(t.trigflag, 0), nvl(t.spare1, 0), nvl(t.spare2, 0), t.spare4, t.spare6, ts.cachedblk, ts.cachehit, ts.logicalread from tab$ t, tab_stats$ ts where t.obj#= :1 and t.obj# = ts.obj# (+) |
1mjd9xp80vuqa | select node, owner, name from syn$ where obj#=:1 |
2c5shu0nbp9zh | INSERT INTO GJ_T_ALARM(CAR_ID, MOBIL_NO, EQUIPMENT_NO, TRACK_TIME, LONGITUDE, LATITUDE, SPEED, DIRECTION, ALARM, COMPUTER_TIME, HEIGH) VALUES ( :B10 , :B9 , :B8 , :B7 , :B6 , :B5 , :B4 , :B3 , :B2 , SYSDATE, :B1 ) |
2jfqzrxhrm93b | select /*+ rule */ c.name, u.name from con$ c, cdef$ cd, user$ u where c.con# = cd.con# and cd.enabled = :1 and c.owner# = u.user# |
2q93zsrvbdw48 | select grantee#, privilege#, nvl(col#, 0), max(mod(nvl(option$, 0), 2))from objauth$ where obj#=:1 group by grantee#, privilege#, nvl(col#, 0) order by grantee# |
2xwt70smzrmhw | SELECT /*+NESTED_TABLE_GET_REFS+*/ "FJDXGPS"."GJ_T_VIDICONTRACK_2".* FROM "FJDXGPS"."GJ_T_VIDICONTRACK_2" |
2ym6hhaq30r73 | select type#, blocks, extents, minexts, maxexts, extsize, extpct, user#, iniexts, NVL(lists, 65535), NVL(groups, 65535), cachehint, hwmincr, NVL(spare1, 0), NVL(scanhint, 0) from seg$ where ts#=:1 and file#=:2 and block#=:3 |
32bhha21dkv0v | select col#, intcol#, charsetid, charsetform from col$ where obj#=:1 order by intcol# asc |
35wjzadkfuqvm | INSERT INTO CW_T_GPSERROR ( ERROR_ID , MDT_ID , GPS_TIME , IS_VALID , LONGITUDE , LATITUDE , HEIGHT , DIRECTION , SPEED , RECEIVE_TIME , ERROR_REMARK , INPUT_TIME ) VALUES( CW_S_GPSERROR.NEXTVAL, :B10 , :B9 , :B8 , :B7 , :B6 , :B5 , :B4 , :B3 , :B2 , :B1 , SYSDATE ) |
39m4sx9k63ba2 | select /*+ index(idl_ub2$ i_idl_ub21) +*/ piece#, length, piece from idl_ub2$ where obj#=:1 and part=:2 and version=:3 order by piece# |
3g7sxtj9d6zd3 | select privilege#, nvl(col#, 0), max(mod(nvl(option$, 0), 2))from objauth$ where obj#=:1 and grantee#=:2 group by privilege#, nvl(col#, 0) |
3xzgv2bh0cxbx |
/* OracleOEM */ SELECT d.status "Status", d.tablespace_name "Name", d.contents "Type", d.extent_management "Extent Management", TO_CHAR(NVL(a.bytes / 1024 / 1024, 0), '99, 999, 990.900') "Size (M)", TO_CHAR(NVL(a.bytes - NVL(f.bytes, 0), 0)/1024/1024, '99999999.999') ||'/'||TO_CHAR(NVL(a.bytes/1024/1024, 0), '99999999.999') "Used (M)", TO_CHAR(NVL((a.bytes - NVL(f.bytes, 0)) / a.bytes * 100, 0), '990.00') "Used %" FROM sys.dba_tablespaces d, (select tablespace_name, sum(bytes) bytes from dba_data_files group by tablespace_name) a, (select tablespace_name, sum(bytes) bytes from dba_free_space group by tablespace_name) f WHERE d.tablespace_name = a.tablespace_name(+) AND d.tablespace_name = f.tablespace_name(+) AND NOT (d.extent_management like 'LOCAL' AND d.contents like 'TEMPORARY') UNION ALL SELECT d.status "Status", d.tablespace_name "Name", d.contents "Type", d.extent_management "Extent Management", TO_CHAR(NVL(a.bytes / 1024 / 1024, 0), '99, 999, 990.900') "Size (M)", TO_CHAR(NVL(t.bytes, 0)/1024/1024, '99999999.999') ||'/'||TO_CHAR(NVL(a.bytes/1024/1024, 0), '99999999.999') "Used (M)", TO_CHAR(NVL(t.bytes / a.bytes * 100, 0), '990.00') "Used %" FROM sys.dba_tablespaces d, (select tablespace_name, sum(bytes) bytes from dba_temp_files group by tablespace_name) a, (select tablespace_name, sum(bytes_cache
d) bytes from v$temp_extent_pool group by tablespace_name) t WHERE d.tablespace_name = a.tablespace_name(+) AND d.tablespace_name = t.tablespace_name(+) AND d.extent_management like 'LOCAL' AND d.contents like 'TEMPORARY' |
451q2032pshqm | 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# |
49s332uhbnsma | declare
vsn varchar2(20);
begin
vsn := dbms_rcvman.getPackageVersion;
:pkg_vsn:pkg_vsn_i := vsn;
if vsn is not null then
:pkg_vsnub4 :=
to_number(substr(vsn, 1, 2) || substr(vsn, 4, 2) ||
substr(vsn, 7, 2) || nvl(substr(vsn, 10, 2), '00'));
end if;
end; |
4uurfxq566psq | INSERT INTO GJ_T_ONLINE_STATUS(STATUS_TYPE, CAR_ID, MOBIL_NO, EQUIPMENT_NO, TRACK_TIME, LONGITUDE, LATITUDE, SPEED, DIRECTION, STATUS, COMPUTER_TIME, RECEIVE_TIME, ACC, MILE_SUM, STATUS_PARAM) VALUES ('0', :B13 , :B12 , :B11 , :B10 , :B9 , :B8 , :B7 , :B6 , :B5 , SYSDATE, :B4 , :B3 , :B2 , :B1 ) |
520mkxqpf15q8 | select 1 from dual |
53saa2zkr6wc3 | select intcol#, nvl(pos#, 0), col#, nvl(spare1, 0) from ccol$ where con#=:1 |
5apg832cgnd59 | INSERT INTO GJ_T_STATUS_CHANGE(TRACK_TIME, STATUS_TYPE, PRE_VALUE, CUR_VALUE, CAR_ID, LNG, LAT, STATUS, MILEAGE, SPEED) VALUES(:B8 , '005', TO_CHAR(:B7 ), TO_CHAR(:B3 ), :B6 , :B5 , :B4 , :B3 , :B2 , :B1 ) |
5ngzsfstg8tmy | select o.owner#, o.name, o.namespace, o.remoteowner, o.linkname, o.subname, o.dataobj#, o.flags from obj$ o where o.obj#=:1 |
5wc2915k44m38 | select user#, type# from user$ where name=:1 |
6769wyy3yf66f | select pos#, intcol#, col#, spare1, bo#, spare2 from icol$ where obj#=:1 |
6aq34nj2zb2n7 | select col#, grantee#, privilege#, max(mod(nvl(option$, 0), 2)) from objauth$ where obj#=:1 and col# is not null group by privilege#, col#, grantee# order by col#, grantee# |
6m5hvtwhjcwun | UPDATE GK_T_CARINFO SET RECEIVE_TIME = :B1 WHERE CAR_ID=:B2 AND ( (RECEIVE_TIME IS NULL) OR (RECEIVE_TIME < :B1 )) |
70h58q9d0z5u8 |
select ROWNUM, d.dept_type, d.FATHER_DEPARTMENT prior_node, G.middle_no||'-'||G.middle_ip||':'||G.middle_port as AccessInfo, A.CAR_ANOTHER_NO as carAnotherNo, A.Car_ID as CarID, B.MDT_NO as MDTNO, A.Car_No, case when a.video_type is null then G.middle_no else a.video_type end as videoType, case when A.CAR_ANOTHER_NO is not null then a.CAR_ANOTHER_NO||'-'||A.Car_No else A.Car_No end as CarNo, A.Sim_Phone_NO as SIM, to_char(A.RECEIVE_TIME, 'YYYY-MM-DD hh24:mi:ss') as ReportTime, A.MDT_ID as MDTID, to_char(A.Last_Report_Time, 'YYYY-MM-DD hh24:mi:ss') As GPSTIME, sf_GetHeight(Trunc(A.Heigh)) as Height, To_Char(Trunc(A.Last_longitude, 6)) as Longitude, To_Char(Trunc(A.Last_latitude, 6)) as Latitude, case when A.Last_Speed is null then 0.0 else Trunc(A.Last_Speed, 1) end as Speed, sf_GetDirection(Trunc(A.Last_DirCtion)) as Direction, A.Color as Color, ' ' as Remark, A.Company_ID as CompanyID, to_Char(sf_FilterStatusID(A.Last_Status_id)) as StatusID, 0 Status2, A.Vidicon_No as VidiconNo, a.camera, a.video, G.Middle_No as MiddleNo, D.Department_name as DepartMentName, D.Connect_Phone_NO as AttnPhone, D.Cnnnect_man as Attn, A.CarType_id, E.Car_Type as CarType, sf_FilterStatusName(F.Status_name) as StatusName, A.Last_DirCtion as Direction1, trunc(a.mileage, 1) mileage, a.driver_no driver_nbr, a.last_alarm_id from GK_T_CarInfo A left join GK_T_MDTInfo B on a.mdt_id=b.mdt_id left join CL_T_User_Privilege c on a.car_id=c.car_id left join RS_T_Department D on a.company_id=d.departm
ent_id left join GK_T_CarType E on a.cartype_id=e.type_id left join GJ_T_status_info F on f.status_id=a.last_status_id left join GK_T_Middle_Part G on B.Middle_ID=G.Middle_ID where(C.User_ID=84304)AND(C.SEE_REMARK='0')and(A.Delete_Flag='0') order by dept_type, prior_node, car_type, CarNo
|
7ng34ruy5awxq | select i.obj#, i.ts#, i.file#, i.block#, i.intcols, i.type#, i.flags, i.property, i.pctfree$, i.initrans, i.maxtrans, i.blevel, i.leafcnt, i.distkey, i.lblkkey, i.dblkkey, i.clufac, i.cols, i.analyzetime, i.samplesize, i.dataobj#, nvl(i.degree, 1), nvl(i.instances, 1), i.rowcnt, mod(i.pctthres$, 256), i.indmethod#, i.trunccnt, nvl(c.unicols, 0), nvl(c.deferrable#+c.valid#, 0), nvl(i.spare1, i.intcols), i.spare4, i.spare2, i.spare6, decode(i.pctthres$, null, null, mod(trunc(i.pctthres$/256), 256)), ist.cachedblk, ist.cachehit, ist.logicalread from ind$ i, ind_stats$ ist, (select enabled, min(cols) unicols, min(to_number(bitand(defer, 1))) deferrable#, min(to_number(bitand(defer, 4))) valid# from cdef$ where obj#=:1 and enabled > 1 group by enabled) c where i.obj#=c.enabled(+) and i.obj# = ist.obj#(+) and i.bo#=:1 order by i.obj# |
83taa7kaw59c1 | select name, intcol#, segcol#, type#, length, nvl(precision#, 0), decode(type#, 2, nvl(scale, -127/*MAXSB1MINAL*/), 178, scale, 179, scale, 180, scale, 181, scale, 182, scale, 183, scale, 231, scale, 0), null$, fixedstorage, nvl(deflength, 0), default$, rowid, col#, property, nvl(charsetid, 0), nvl(charsetform, 0), spare1, spare2, nvl(spare3, 0) from col$ where obj#=:1 order by intcol# |
8bk9w5wcukytd | UPDATE GK_T_CARINFO SET LAST_LONGITUDE=:B11 , LAST_LATITUDE = :B10 , LAST_REPORT_TIME = :B1 , LAST_SPEED = :B9 , HEIGH = :B8 , LAST_DIRCTION = :B7 , LAST_STATUS_ID = :B6 , LAST_ALARM_ID = :B5 , RECEIVE_TIME = :B4 , MILEAGE = :B3 WHERE CAR_ID=:B2 AND ( (LAST_REPORT_TIME IS NULL) OR (LAST_REPORT_TIME < :B1 )) |
8mrg623amm8rx |
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, 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, v$instance i where bitand(a.job_status, 515) = 1 and ( i.logins = 'ALLOWED' or bitand(a.flags, 2147483648) <> 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.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))) 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 <= :4 and c.next_start_date + c.duration > :5 and i.logins = 'AL
LOWED' union all select d.obj#, 0, d.next_start_date + d.duration, 0, 3, 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 <= :6 and d.next_start_date + d.duration > :7 and i.logins = 'ALLOWED' union all select f.obj#, 0, e.attr_tstamp, 0, decode(bitand(e.flags, 131072), 0, 2, 4), 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.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, 3, 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 ik.logins = 'ALLOWED' 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) order by RUNTIME, CLSOID, PRI, WT DESC, OBJOID
|
8yxsjn42s9ua5 | SELECT STATUS_ID AS STATUSID FROM GJ_T_STATUS_INFO WHERE STATUS_NAME=:B1 |
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 |
9z14zjbkzywfy | INSERT INTO CL_T_USER_OPERATIONLOG(OPERATION_ID, USER_ID, OPERATION_DESC, OPERATION_TYPEID) VALUES(CL_S_USER_OPERATIONLOG.NEXTVAL, TO_NUMBER(:B3 ), :B2 , :B1 ) |
a73wbv1yu8x5c | select con#, type#, condlength, intcols, robj#, rcon#, match#, refact, nvl(enabled, 0), rowid, cols, nvl(defer, 0), mtime, nvl(spare1, 0) from cdef$ where obj#=:1 |
axmdf8vq7k1rh | select increment$, minvalue, maxvalue, cycle#, order$, cache, highwater, audit$, flags from seq$ where obj#=:1 |
b98p5y022pun6 | select distinct D.Middle_No || C.MDT_NO MDTNO
from CL_T_User_Privilege A, GK_T_CarInfo B, gk_t_mdtinfo C, gk_t_middle_part D
where A.USER_ID = 83333
and A.CAR_ID = B.CAR_ID
and B.last_report_time >=sysdate-60
AND B.MDT_ID = C.MDT_ID
AND c.middle_id = d.middle_id
AND B.DELETE_FLAG = '0'
and a.see_remark = '0'
order by MDTNO
|
bqfk75b3knc9u | BEGIN SP_INSERT_TRCK_LOG(:1, :2, :3); END; |
bu26wuua3354u | SELECT B.CAR_ID , B.SIM_PHONE_NO, A.MDT_ID, B.LAST_REPORT_TIME, B.LAST_LONGITUDE, B.LAST_LATITUDE, B.RECEIVE_TIME, B.FIRST_BACK, B.SERVICE_DATE, B.MILEAGE, B.LAST_ALARM_ID FROM GK_T_MDTINFO A, GK_T_CARINFO B , GK_T_MIDDLE_PART C WHERE C.MIDDLE_NO = :B2 AND A.MDT_NO = :B1 AND C.MIDDLE_ID = A.MIDDLE_ID AND A.MDT_ID = B.MDT_ID AND B.DELETE_FLAG = '0' AND ROWNUM = 1 |
d2t1z75cp894w | select A.EMPLOYEE_DEPARTMENT, A.User_ID, A.Is_Valid, B.DEPARTMENT_NAME, c.log_remark, B.CONNECT_PHONE_NO, A.BIND_MACHINE from rs_t_employee A, RS_T_Department B, (select * from SF_T_department_stop_log where SF_T_department_stop_log.Log_Remark = 1) C
where A.EMPLOYEE_NO = 'gstsdx' and A.USER_PASSWORD= 'cldwyyzx' AND A.EMPLOYEE_DEPARTMENT=B.DEPARTMENT_ID and a.employee_department = c.log_department(+)
|
db78fxqxwxt7r | select /*+ rule */ bucket, endpoint, col#, epvalue from histgrm$ where obj#=:1 and intcol#=:2 and row#=:3 order by bucket |
f3g84j69n0tjh | select col#, intcol#, ntab# from ntab$ where obj#=:1 order by intcol# asc |
f8pavn1bvsj7t | select con#, obj#, rcon#, enabled, nvl(defer, 0) from cdef$ where robj#=:1 |
g3wrkmxkxzhf2 | select cols, audit$, textlength, intcols, property, flags, rowid from view$ where obj#=:1 |
gx95dv43tmzhm | begin SP_EXEC_OPERATION(:V00001, :V00002, :V00003); end; |
Statistic | Total | per Second | per Trans |
CPU used by this session | 154,421 | 42.86 | 0.58 |
CPU used when call started | 153,979 | 42.74 | 0.57 |
CR blocks created | 5,105 | 1.42 | 0.02 |
Cached Commit SCN referenced | 533 | 0.15 | 0.00 |
Commit SCN cached | 1 | 0.00 | 0.00 |
DB time | 560,732 | 155.65 | 2.09 |
DBWR checkpoint buffers written | 220,385 | 61.18 | 0.82 |
DBWR checkpoints | 2 | 0.00 | 0.00 |
DBWR object drop buffers written | 0 | 0.00 | 0.00 |
DBWR thread checkpoint buffers written | 0 | 0.00 | 0.00 |
DBWR transaction table writes | 119 | 0.03 | 0.00 |
DBWR undo block writes | 170,197 | 47.24 | 0.63 |
IMU CR rollbacks | 542 | 0.15 | 0.00 |
IMU Flushes | 171,571 | 47.63 | 0.64 |
IMU Redo allocation size | 197,085,000 | 54,707.42 | 734.00 |
IMU commits | 247,602 | 68.73 | 0.92 |
IMU contention | 50 | 0.01 | 0.00 |
IMU ktichg flush | 0 | 0.00 | 0.00 |
IMU pool not allocated | 4,470 | 1.24 | 0.02 |
IMU recursive-transaction flush | 11 | 0.00 | 0.00 |
IMU undo allocation size | 1,239,798,120 | 344,146.70 | 4,617.34 |
IMU- failed to get a private strand | 4,470 | 1.24 | 0.02 |
Misses for writing mapping | 0 | 0.00 | 0.00 |
RowCR - row contention | 0 | 0.00 | 0.00 |
RowCR attempts | 3,543 | 0.98 | 0.01 |
RowCR hits | 3,676 | 1.02 | 0.01 |
SMON posted for undo segment shrink | 0 | 0.00 | 0.00 |
SQL*Net roundtrips to/from client | 4,023,743 | 1,116.92 | 14.99 |
active txn count during cleanout | 468 | 0.13 | 0.00 |
application wait time | 4 | 0.00 | 0.00 |
auto extends on undo tablespace | 0 | 0.00 | 0.00 |
background checkpoints completed | 2 | 0.00 | 0.00 |
background checkpoints started | 2 | 0.00 | 0.00 |
background timeouts | 11,486 | 3.19 | 0.04 |
branch node splits | 16 | 0.00 | 0.00 |
buffer is not pinned count | 5,289,216 | 1,468.20 | 19.70 |
buffer is pinned count | 1,161,419 | 322.39 | 4.33 |
bytes received via SQL*Net from client | 628,690,517 | 174,513.71 | 2,341.41 |
bytes sent via SQL*Net to client | 7,040,882,118 | 1,954,428.15 | 26,222.15 |
calls to get snapshot scn: kcmgss | 6,846,338 | 1,900.43 | 25.50 |
calls to kcmgas | 513,294 | 142.48 | 1.91 |
calls to kcmgcs | 1,432 | 0.40 | 0.01 |
change write time | 2,919 | 0.81 | 0.01 |
cleanout - number of ktugct calls | 10,221 | 2.84 | 0.04 |
cleanouts and rollbacks - consistent read gets | 390 | 0.11 | 0.00 |
cleanouts only - consistent read gets | 21 | 0.01 | 0.00 |
cluster key scan block gets | 232,400 | 64.51 | 0.87 |
cluster key scans | 212,941 | 59.11 | 0.79 |
commit batch performed | 0 | 0.00 | 0.00 |
commit batch requested | 0 | 0.00 | 0.00 |
commit batch/immediate performed | 155,135 | 43.06 | 0.58 |
commit batch/immediate requested | 155,135 | 43.06 | 0.58 |
commit cleanout failures: block lost | 0 | 0.00 | 0.00 |
commit cleanout failures: buffer being written | 0 | 0.00 | 0.00 |
commit cleanout failures: callback failure | 17 | 0.00 | 0.00 |
commit cleanout failures: cannot pin | 16 | 0.00 | 0.00 |
commit cleanouts | 1,072,536 | 297.72 | 3.99 |
commit cleanouts successfully completed | 1,072,503 | 297.71 | 3.99 |
commit immediate performed | 155,135 | 43.06 | 0.58 |
commit immediate requested | 155,135 | 43.06 | 0.58 |
commit txn count during cleanout | 218,543 | 60.66 | 0.81 |
concurrency wait time | 163 | 0.05 | 0.00 |
consistent changes | 6,346 | 1.76 | 0.02 |
consistent gets | 12,092,291 | 3,356.61 | 45.03 |
consistent gets - examination | 5,295,894 | 1,470.05 | 19.72 |
consistent gets direct | 937,665 | 260.28 | 3.49 |
consistent gets from cache | 11,154,626 | 3,096.33 | 41.54 |
current blocks converted for CR | 0 | 0.00 | 0.00 |
cursor authentications | 9,659 | 2.68 | 0.04 |
data blocks consistent reads - undo records applied | 6,043 | 1.68 | 0.02 |
db block changes | 3,764,866 | 1,045.06 | 14.02 |
db block gets | 5,786,229 | 1,606.16 | 21.55 |
db block gets direct | 10,518 | 2.92 | 0.04 |
db block gets from cache | 5,775,711 | 1,603.24 | 21.51 |
deferred (CURRENT) block cleanout applications | 662,505 | 183.90 | 2.47 |
dirty buffers inspected | 0 | 0.00 | 0.00 |
enqueue conversions | 732 | 0.20 | 0.00 |
enqueue releases | 1,713,046 | 475.51 | 6.38 |
enqueue requests | 1,713,048 | 475.51 | 6.38 |
enqueue timeouts | 0 | 0.00 | 0.00 |
enqueue waits | 6 | 0.00 | 0.00 |
exchange deadlocks | 0 | 0.00 | 0.00 |
execute count | 1,999,691 | 555.08 | 7.45 |
failed probes on index block reclamation | 1 | 0.00 | 0.00 |
free buffer inspected | 15,215 | 4.22 | 0.06 |
free buffer requested | 198,627 | 55.14 | 0.74 |
global undo segment hints helped | 0 | 0.00 | 0.00 |
heap block compress | 51,848 | 14.39 | 0.19 |
hot buffers moved to head of LRU | 202 | 0.06 | 0.00 |
immediate (CR) block cleanout applications | 411 | 0.11 | 0.00 |
immediate (CURRENT) block cleanout applications | 11,422 | 3.17 | 0.04 |
index crx upgrade (found) | 0 | 0.00 | 0.00 |
index crx upgrade (positioned) | 6,034 | 1.67 | 0.02 |
index fast full scans (full) | 7,347 | 2.04 | 0.03 |
index fetch by key | 2,057,265 | 571.06 | 7.66 |
index scans kdiixs1 | 620,493 | 172.24 | 2.31 |
leaf node 90-10 splits | 241 | 0.07 | 0.00 |
leaf node splits | 3,778 | 1.05 | 0.01 |
lob reads | 749,734 | 208.11 | 2.79 |
lob writes | 4,623 | 1.28 | 0.02 |
lob writes unaligned | 75 | 0.02 | 0.00 |
logons cumulative | 43 | 0.01 | 0.00 |
messages received | 472,097 | 131.05 | 1.76 |
messages sent | 472,097 | 131.05 | 1.76 |
no buffer to keep pinned count | 0 | 0.00 | 0.00 |
no work - consistent read gets | 5,153,716 | 1,430.58 | 19.19 |
opened cursors cumulative | 300,564 | 83.43 | 1.12 |
parse count (failures) | 78 | 0.02 | 0.00 |
parse count (hard) | 410,578 | 113.97 | 1.53 |
parse count (total) | 634,905 | 176.24 | 2.36 |
parse time cpu | 20,179 | 5.60 | 0.08 |
parse time elapsed | 19,862 | 5.51 | 0.07 |
physical read IO requests | 936,410 | 259.93 | 3.49 |
physical read bytes | 7,841,562,624 | 2,176,683.32 | 29,204.10 |
physical read total IO requests | 938,836 | 260.60 | 3.50 |
physical read total bytes | 7,880,690,688 | 2,187,544.60 | 29,349.82 |
physical read total multi block requests | 4,664 | 1.29 | 0.02 |
physical reads | 957,222 | 265.71 | 3.56 |
physical reads cache | 22,701 | 6.30 | 0.08 |
physical reads cache prefetch | 17,334 | 4.81 | 0.06 |
physical reads direct | 934,521 | 259.41 | 3.48 |
physical reads direct (lob) | 929,975 | 258.15 | 3.46 |
physical reads direct temporary tablespace | 0 | 0.00 | 0.00 |
physical reads prefetch warmup | 0 | 0.00 | 0.00 |
physical write IO requests | 58,885 | 16.35 | 0.22 |
physical write bytes | 1,891,557,376 | 525,063.89 | 7,044.67 |
physical write total IO requests | 909,833 | 252.55 | 3.39 |
physical write total bytes | 3,689,022,464 | 1,024,009.38 | 13,738.92 |
physical write total multi block requests | 859,798 | 238.67 | 3.20 |
physical writes | 230,903 | 64.09 | 0.86 |
physical writes direct | 10,518 | 2.92 | 0.04 |
physical writes direct (lob) | 10,498 | 2.91 | 0.04 |
physical writes direct temporary tablespace | 0 | 0.00 | 0.00 |
physical writes from cache | 220,385 | 61.18 | 0.82 |
physical writes non checkpoint | 191,706 | 53.21 | 0.71 |
pinned buffers inspected | 0 | 0.00 | 0.00 |
pinned cursors current | 5 | 0.00 | 0.00 |
prefetch warmup blocks aged out before use | 0 | 0.00 | 0.00 |
prefetched blocks aged out before use | 0 | 0.00 | 0.00 |
process last non-idle time | 4,404 | 1.22 | 0.02 |
recursive aborts on index block reclamation | 0 | 0.00 | 0.00 |
recursive calls | 4,969,217 | 1,379.37 | 18.51 |
recursive cpu usage | 83,253 | 23.11 | 0.31 |
redo blocks written | 1,700,343 | 471.99 | 6.33 |
redo buffer allocation retries | 5 | 0.00 | 0.00 |
redo entries | 963,073 | 267.33 | 3.59 |
redo log space requests | 5 | 0.00 | 0.00 |
redo log space wait time | 15 | 0.00 | 0.00 |
redo ordering marks | 73,861 | 20.50 | 0.28 |
redo size | 725,795,136 | 201,468.28 | 2,703.06 |
redo subscn max counts | 86,782 | 24.09 | 0.32 |
redo synch time | 132,942 | 36.90 | 0.50 |
redo synch writes | 423,631 | 117.59 | 1.58 |
redo wastage | 117,499,872 | 32,615.95 | 437.60 |
redo write time | 128,384 | 35.64 | 0.48 |
redo writer latching time | 3 | 0.00 | 0.00 |
redo writes | 423,572 | 117.58 | 1.58 |
rollback changes - undo records applied | 157,936 | 43.84 | 0.59 |
rollbacks only - consistent read gets | 4,676 | 1.30 | 0.02 |
root node splits | 0 | 0.00 | 0.00 |
rows fetched via callback | 1,471,270 | 408.40 | 5.48 |
session connect time | 0 | 0.00 | 0.00 |
session cursor cache hits | 271,716 | 75.42 | 1.01 |
session logical reads | 17,878,518 | 4,962.77 | 66.58 |
shared hash latch upgrades - no wait | 12,070 | 3.35 | 0.04 |
shared hash latch upgrades - wait | 0 | 0.00 | 0.00 |
sorts (disk) | 0 | 0.00 | 0.00 |
sorts (memory) | 129,795 | 36.03 | 0.48 |
sorts (rows) | 11,439,242 | 3,175.34 | 42.60 |
sql area evicted | 412,898 | 114.61 | 1.54 |
sql area purged | 78 | 0.02 | 0.00 |
summed dirty queue length | 0 | 0.00 | 0.00 |
switch current to new buffer | 72 | 0.02 | 0.00 |
table fetch by rowid | 2,332,562 | 647.48 | 8.69 |
table fetch continued row | 5,953 | 1.65 | 0.02 |
table scan blocks gotten | 3,567,366 | 990.24 | 13.29 |
table scan rows gotten | 274,128,492 | 76,093.37 | 1,020.93 |
table scans (long tables) | 1 | 0.00 | 0.00 |
table scans (short tables) | 64,731 | 17.97 | 0.24 |
total number of times SMON posted | 0 | 0.00 | 0.00 |
transaction rollbacks | 155,135 | 43.06 | 0.58 |
transaction tables consistent read rollbacks | 0 | 0.00 | 0.00 |
transaction tables consistent reads - undo records applied | 0 | 0.00 | 0.00 |
undo change vector size | 195,144,676 | 54,168.82 | 726.77 |
user I/O wait time | 86,133 | 23.91 | 0.32 |
user calls | 4,048,627 | 1,123.83 | 15.08 |
user commits | 268,500 | 74.53 | 1.00 |
user rollbacks | 9 | 0.00 | 0.00 |
workarea executions - onepass | 0 | 0.00 | 0.00 |
workarea executions - optimal | 91,301 | 25.34 | 0.34 |
write clones created in background | 0 | 0.00 | 0.00 |
write clones created in foreground | 110 | 0.03 | 0.00 |