enq:TX-CONTENTION

killdb关于 enq: TX - row lock contention的总结
1. 其原因一般有如下几种:
1) 表上存在主键或唯一性约束,多个会话操作同一条记录
2) 表存在主外键读情况,主表不提交,子表那么必须进行等待.
3) 表上存在位图Index,这跟uniqeue index中存在重复值是一样的道理,其中一个会话操作,其他会话必须等待.
4) 表进行自我外键关联,前面的事务不提交,那么会导致后面的会话一直等待.

2. 对于网上说的enq: TX – row lock contention也有可能是在等待index block分裂的情况,我没有进行测试,   从理论上来讲,如果是在等待index block分裂,那么应该还伴有enq: TX – index contention等待事件产生.

3. 对于enq: TX – row lock contention,通过v$session视图查询时,等待会话带lock mode通常为4,而blocker   会话带lock mode通常为6,并且一般查询blocker会话的sql_id都为空。这是正常现象,v$session显示是当前状态,   而非历史数据.

 

场景1 主外键关系导致的TX-row lock等待。

select * from v$mystat;
select * from v$session where sid=388;
select * From v$process where addr='000007FF1DB5C010'
insert into t1 select * from t1;
SQL> oradebug setospid 4652;
Oracle pid: 59, Windows thread id: 4652, image: ORACLE.EXE (SHAD)
SQL> oradebug event 10046 trace name context forever,level 12
已处理的语句
SQL> oradebug tracefile_name
D:\APP\ADMINISTRATOR\VIRTUAL\diag\rdbms\prod\prod\trace\prod_ora_4652.trc
SQL>

TRC 文件:

 

 

create table t3 (id number primary key,name varchar2(20),product_id number);
create table t2 (id number primary key,name varchar2(20));


alter table t3 add constraint FK_PRODUCTSTAT_PRODUCTID foreign key (PRODUCT_id) references t2 (ID);

insert into t2 values(1,'dh');
insert into t2 values(2,'cc');
 insert into t2 values(3,'cc');
COMMIT;


SESSION 1
SQL> select * from t2; 

    ID NAME
---------- --------------------
     1 dh
     2 cc
     3 cc

SQL> insert into t2 values(4,'cc'); 

1 row created.

SQL> 

SESSION 2 
SQL> insert into t3 values(1,'tt',4); 

SQL> select * from v$mystat where rownum=1;

       SID STATISTIC#       VALUE     CON_ID
---------- ---------- ---------- ----------
    32        0           0      0

SQL> select sid,blocking_session from v$session where blocking_session is not null;

       SID   BLOCKING_SESSION
---------- ----------------
       54         32

SQL> 

 

 

 

 

 

 

场景2 插入数据主键重复导致的TX-ROW LOCk等待

CREATE TABLE T1(ID NUMBER PRIMARY KEY,NAME VARCHAR2(100);

SESSION 1 

INSERT INTO T1(1,'123');  ---不提交

SESSION 2

INSERT INTO T1(1,'123');  --- TX-ROW LOCK等待

 

 

 

 

 

 

 

Trace file D:\APP\ADMINISTRATOR\VIRTUAL\diag\rdbms\prod\prod\trace\prod_ora_4652.trc
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
Build label:    RDBMS_12.2.0.1.0_WINDOWS.X64_170210.4
Windows NT Version V6.1 Service Pack 1 
ORACLE_HOME =  D:\app\Administrator\virtual\product\12.2.0\dbhome_1
Node name           : UP57VFMG5AH8GDS
CPU                 : 4 - type 8664, 2 Physical Cores
Process Affinity    : 0x0x0000000000000000
Memory (Ava
Instance name: prod
Redo thread mounted by this instance: 0
Oracle process number: 8
Windows thread id: 4652, image: ORACLE.EXE (SHAD)


*** 2019-08-05T10:42:42.369586+08:00
*** SESSION ID:(2.35811) 2019-08-05T10:42:42.369586+08:00
*** CLIENT ID:() 2019-08-05T10:42:42.369586+08:00
*** SERVICE NAME:() 2019-08-05T10:42:42.369586+08:00
*** MODULE NAME:(oradim.exe) 2019-08-05T10:42:42.369586+08:00
*** ACTION NAME:() 2019-08-05T10:42:42.369586+08:00
*** CLIENT DRIVER:() 2019-08-05T10:42:42.369586+08:00
 
*** 2019-08-05 10:42:42.369586 5634 krsh.c
Network throttle feature is disabled as mount time
krsd_cb_role_change: role 1
krsd_eval_sad: 7: Using STANDBY_ARCHIVE_DEST parameter default value as USE_DB_RECOVERY_FILE_DEST
Successfully allocated 3 recovery slaves
Using 45 overflow buffers per recovery slave
Thread 1 checkpoint: logseq 120, block 2, scn 0x0000000000f640b6
kctdrsrt: on-disk rba 120.70333.0
  cache-low rba: logseq 120, block 70305
    on-disk rba: logseq 120, block 70333, scn 0x0000000000f672f2
Synchronized sync destination connectivity mask for thread 1 is 0x0
  start recovery at logseq 120, block 70305, scn 0
Using largest hash table of 262144 entries (2Mb), htbl_size = 2097232, max_alloc = 2147467264

*** 2019-08-05T10:42:42.806386+08:00
Started writing zeroblks thread 1 seq 120 blocks 70333-70340

*** 2019-08-05T10:42:42.806386+08:00
Completed writing zeroblks thread 1 seq 120

*** 2019-08-05T10:42:42.821986+08:00
==== Redo read statistics for thread 1 ====
Total physical reads (from disk and memory): 4096Kb
-- Redo read_disk statistics --
Read rate (ASYNC): 14Kb in 0.04s => 0.34 Mb/sec
Longest record: 1Kb, moves: 0/46 (0%)
Change moves: 1/15 (6%), moved: 0Mb
Longest LWN: 6Kb, moves: 0/9 (0%), moved: 0Mb
Last redo scn: 0x0000000000f672f0 (16151280)
----------------------------------------------
----- Recovery Hash Table Statistics ---------
Hash table buckets = 262144
Longest hash chain = 1
Average hash chain = 24/24 = 1.0
Max compares per lookup = 1
Avg compares per lookup = 34/75 = 0.5
----------------------------------------------

*** 2019-08-05T10:42:42.821986+08:00
KCRA: start recovery claims for 24 data blocks

*** 2019-08-05T10:42:42.837586+08:00
KCRA: blocks processed = 24/24, claimed = 24, eliminated = 0

*** 2019-08-05T10:42:42.837586+08:00
Recovery of Online Redo Log: Thread 1 Group 3 Seq 120 Reading mem 0

*** 2019-08-05T10:42:42.837586+08:00
Completed redo application of 0.01MB

*** 2019-08-05T10:42:42.853186+08:00
Completed recovery checkpoint
----- Recovery Hash Table Statistics ---------
Hash table buckets = 262144
Longest hash chain = 1
Average hash chain = 24/24 = 1.0
Max compares per lookup = 1
Avg compares per lookup = 55/58 = 0.9
----------------------------------------------
Recovery sets nab of thread 1 seq 120 to 70333 with 8 zeroblks

*** 2019-08-05T10:42:45.754791+08:00
Count of ofsmtab$: 0 entries

*** 2019-08-05T10:42:46.222792+08:00
 08/05/2019 10:42:45 08/05/2019 10:42:462019-08-05 10:42:46.222 : [ default][ default]ut_read_reg:2:ocr registry key SOFTWARE\Oracle\olr cannot be opened. error 2
2019-08-05 10:42:46.222 : [ default][ default]ut_read_reg:2:ocr registry key SOFTWARE\Oracle\ocr cannot be opened. error 2
2019-08-05 10:42:46.222 : [ default][ default]ut_read_reg:2:ocr registry key SOFTWARE\Oracle\olr cannot be opened. error 2
2019-08-05 10:42:46.222 : [ default][ default]ut_read_reg:2:ocr registry key SOFTWARE\Oracle\ocr cannot be opened. error 2
Trace file D:\APP\ADMINISTRATOR\VIRTUAL\diag\rdbms\prod\prod\trace\prod_ora_4652.trc
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
Build label:    RDBMS_12.2.0.1.0_WINDOWS.X64_170210.4
Windows NT Version V6.1 Service Pack 1 
ORACLE_HOME =  D:\app\Administrator\virtual\product\12.2.0\dbhome_1
Node name           : UP57VFMG5AH8GDS
CPU                 : 4 - type 8664, 2 Physical Cores
Process Affinity    : 0x0x0000000000000000
Memory (Ava
Instance name: prod
Redo thread mounted by this instance: 1
Oracle process number: 59
Windows thread id: 4652, image: ORACLE.EXE (SHAD)


*** 2019-08-23T17:54:51.487825+08:00
*** SESSION ID:(388.44619) 2019-08-23T17:54:51.487825+08:00
*** CLIENT ID:() 2019-08-23T17:54:51.487825+08:00
*** SERVICE NAME:(SYS$USERS) 2019-08-23T17:54:51.487825+08:00
*** MODULE NAME:(PL/SQL Developer) 2019-08-23T17:54:51.487825+08:00
*** ACTION NAME:(SQL Window) 2019-08-23T17:54:51.487825+08:00
*** CLIENT DRIVER:() 2019-08-23T17:54:51.487825+08:00
 
Received ORADEBUG command (#1) 'event 10046 trace name context forever,level 12' from process '5676'

*** 2019-08-23T17:54:51.503425+08:00
Finished processing ORADEBUG command (#1) 'event 10046 trace name context forever,level 12'

*** 2019-08-23T17:54:56.370634+08:00
Received ORADEBUG command (#2) 'tracefile_name' from process '5676'

*** 2019-08-23T17:54:56.370634+08:00
Finished processing ORADEBUG command (#2) 'tracefile_name'

*** 2019-08-23T17:54:57.837036+08:00
WAIT #764279664: nam='SQL*Net message from client' ela= 46849246 driver id=1111838976 #bytes=1 p3=0 obj#=68 tim=136271295
CLOSE #764279664:c=0,e=17,dep=0,type=1,tim=136271801
=====================
PARSING IN CURSOR #765597736 len=61 dep=0 uid=0 oct=47 lid=0 tim=136272075 hv=356401299 ad='7ff108d87d8' sqlid='9m7787camwh4m'
begin :id := sys.dbms_transaction.local_transaction_id; end;

END OF STMT
PARSE #765597736:c=0,e=222,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=136272071
BINDS #765597736:

 Bind#0
  oacdty=01 mxl=2000(2000) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=2000 off=0
  kxsbbbfp=2d8e87b0  bln=2000  avl=00  flg=05
WAIT #765597736: nam='SQL*Net message to client' ela= 2 driver id=1111838976 #bytes=1 p3=0 obj#=68 tim=136272341
EXEC #765597736:c=0,e=208,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=0,tim=136272365
WAIT #765597736: nam='Disk file operations I/O' ela= 181 FileOperation=8 fileno=0 filetype=8 obj#=68 tim=136272576

*** 2019-08-23T17:56:53.359240+08:00
WAIT #765597736: nam='SQL*Net message from client' ela= 115512784 driver id=1111838976 #bytes=1 p3=0 obj#=68 tim=251785422
CLOSE #765597736:c=0,e=38,dep=0,type=3,tim=251785699
=====================
PARSING IN CURSOR #764163192 len=21 dep=0 uid=0 oct=3 lid=0 tim=251791575 hv=2564406738 ad='7ff10940798' sqlid='cf06fwacdmgfk'
select 'x' from dual

END OF STMT
PARSE #764163192:c=0,e=5767,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,plh=1388734953,tim=251791571
EXEC #764163192:c=0,e=491,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=1388734953,tim=251792368
WAIT #764163192: nam='Disk file operations I/O' ela= 487 FileOperation=8 fileno=0 filetype=8 obj#=68 tim=251793033
WAIT #764163192: nam='SQL*Net message to client' ela= 2 driver id=1111838976 #bytes=1 p3=0 obj#=68 tim=251793176
WAIT #764163192: nam='SQL*Net message from client' ela= 329 driver id=1111838976 #bytes=1 p3=0 obj#=68 tim=251793632
WAIT #764163192: nam='SQL*Net message to client' ela= 2 driver id=1111838976 #bytes=1 p3=0 obj#=68 tim=251793803
FETCH #764163192:c=0,e=86,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=1388734953,tim=251793867
STAT #764163192 id=1 cnt=1 pid=0 pos=1 obj=0 op='FAST DUAL  (cr=0 pr=0 pw=0 str=1 time=3 us cost=2 size=0 card=1)'
WAIT #764163192: nam='SQL*Net message from client' ela= 517 driver id=1111838976 #bytes=1 p3=0 obj#=68 tim=251794701
CLOSE #764163192:c=0,e=16,dep=0,type=0,tim=251794845
=====================
PARSING IN CURSOR #790494032 len=114 dep=0 uid=0 oct=47 lid=0 tim=251795031 hv=2538660186 ad='7ff0f990da8' sqlid='fnj6cnubp1sau'
begin
  if :enable = 0 then
    sys.dbms_output.disable;
  else
    sys.dbms_output.enable(:size);
  end if;
end;

END OF STMT
PARSE #790494032:c=0,e=61,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=251795027
BINDS #790494032:

 Bind#0
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1000000 frm=00 csi=00 siz=48 off=0
  kxsbbbfp=2d8e8f50  bln=22  avl=02  flg=05
  value=1
 Bind#1
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1000000 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=2d8e8f68  bln=22  avl=02  flg=01
  value=10000
WAIT #790494032: nam='SQL*Net message to client' ela= 1 driver id=1111838976 #bytes=1 p3=0 obj#=68 tim=251795920
EXEC #790494032:c=0,e=586,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=0,tim=251795988
WAIT #790494032: nam='Disk file operations I/O' ela= 539 FileOperation=8 fileno=0 filetype=8 obj#=68 tim=251796724
WAIT #790494032: nam='SQL*Net message from client' ela= 37406 driver id=1111838976 #bytes=1 p3=0 obj#=68 tim=251834328
CLOSE #790494032:c=0,e=29,dep=0,type=3,tim=251834496
PARSE #765597736:c=0,e=48,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=251834611
BINDS #765597736:

 Bind#0
  oacdty=01 mxl=2000(2000) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=2000 off=0
  kxsbbbfp=2d8e87b0  bln=2000  avl=00  flg=05
WAIT #765597736: nam='SQL*Net message to client' ela= 1 driver id=1111838976 #bytes=1 p3=0 obj#=68 tim=251834885
EXEC #765597736:c=0,e=259,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=0,tim=251834924
WAIT #765597736: nam='Disk file operations I/O' ela= 271 FileOperation=8 fileno=0 filetype=8 obj#=68 tim=251835248
WAIT #765597736: nam='SQL*Net message from client' ela= 202 driver id=1111838976 #bytes=1 p3=0 obj#=68 tim=251835553
CLOSE #765597736:c=0,e=25,dep=0,type=3,tim=251835640
=====================
PARSING IN CURSOR #765331304 len=90 dep=1 uid=0 oct=3 lid=0 tim=251836058 hv=3433193208 ad='7ff10735808' sqlid='cn6hhn36a4rrs'
select con#,obj#,rcon#,enabled,nvl(defer,0),spare2,spare3,refact from cdef$ where robj#=:1
END OF STMT
BINDS #765331304:

 Bind#0
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
  kxsbbbfp=2d8e8f68  bln=22  avl=04  flg=05
  value=78781
EXEC #765331304:c=0,e=239,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,plh=3845132125,tim=251836267
FETCH #765331304:c=0,e=14,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,plh=3845132125,tim=251836312
CLOSE #765331304:c=0,e=4,dep=1,type=3,tim=251836361
=====================
PARSING IN CURSOR #765621744 len=160 dep=1 uid=0 oct=3 lid=0 tim=251836427 hv=2880999359 ad='7ff107e71d8' sqlid='gx4mv66pvj3xz'
select con#,type#,condlength,intcols,robj#,rcon#,match#,refact,nvl(enabled,0),rowid,cols,nvl(defer,0),mtime,nvl(spare1,0),spare2,spare3 from cdef$ where obj#=:1
END OF STMT
BINDS #765621744:

 Bind#0
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
  kxsbbbfp=2d8e8f68  bln=22  avl=04  flg=05
  value=78781
EXEC #765621744:c=0,e=209,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,plh=2570921597,tim=251836610
FETCH #765621744:c=0,e=8,p=0,cr=2,cu=0,mis=0,r=0,dep=1,og=4,plh=2570921597,tim=251836646
CLOSE #765621744:c=0,e=2,dep=1,type=3,tim=251836682
=====================
PARSING IN CURSOR #764157184 len=32 dep=0 uid=0 oct=2 lid=0 tim=251838307 hv=1707240314 ad='7ff0d869fc8' sqlid='1hdpgrjkw4uvu'
insert into t1 select * from t1

END OF STMT
PARSE #764157184:c=0,e=2609,p=0,cr=3,cu=0,mis=1,r=0,dep=0,og=1,plh=3617692013,tim=251838305
WAIT #764157184: nam='db file sequential read' ela= 306 file#=1 block#=196081 blocks=1 obj#=78821 tim=251839305
WAIT #764157184: nam='db file sequential read' ela= 215 file#=1 block#=195614 blocks=1 obj#=78821 tim=251839622
WAIT #764157184: nam='Disk file operations I/O' ela= 765 FileOperation=2 fileno=5 filetype=2 obj#=78821 tim=251843879
WAIT #764157184: nam='db file sequential read' ela= 215 file#=1 block#=196080 blocks=1 obj#=78821 tim=251844326
WAIT #764157184: nam='db file sequential read' ela= 198 file#=1 block#=195615 blocks=1 obj#=78821 tim=251845509
WAIT #764157184: nam='db file sequential read' ela= 178 file#=1 block#=289497 blocks=1 obj#=78975 tim=251846771
WAIT #764157184: nam='db file sequential read' ela= 164 file#=1 block#=289362 blocks=1 obj#=78975 tim=251847024
WAIT #764157184: nam='db file sequential read' ela= 167 file#=1 block#=289321 blocks=1 obj#=78975 tim=251847340
WAIT #764157184: nam='db file sequential read' ela= 193 file#=1 block#=289288 blocks=1 obj#=78975 tim=251847668
WAIT #764157184: nam='db file sequential read' ela= 171 file#=1 block#=289323 blocks=1 obj#=78975 tim=251847977
WAIT #764157184: nam='db file sequential read' ela= 167 file#=1 block#=289363 blocks=1 obj#=78975 tim=251848284
WAIT #764157184: nam='db file sequential read' ela= 163 file#=1 block#=289324 blocks=1 obj#=78975 tim=251848587
WAIT #764157184: nam='db file sequential read' ela= 188 file#=1 block#=289286 blocks=1 obj#=78975 tim=251848976
WAIT #764157184: nam='db file sequential read' ela= 173 file#=1 block#=289322 blocks=1 obj#=78975 tim=251849393
WAIT #764157184: nam='db file sequential read' ela= 684 file#=1 block#=195580 blocks=1 obj#=78975 tim=251850523
WAIT #764157184: nam='db file sequential read' ela= 518 file#=1 block#=289348 blocks=1 obj#=78975 tim=251851813
WAIT #764157184: nam='db file sequential read' ela= 299 file#=1 block#=289341 blocks=1 obj#=78975 tim=251852678
WAIT #764157184: nam='db file sequential read' ela= 194 file#=1 block#=289287 blocks=1 obj#=78975 tim=251853308
WAIT #764157184: nam='db file sequential read' ela= 226 file#=1 block#=289337 blocks=1 obj#=78975 tim=251853932
WAIT #764157184: nam='db file sequential read' ela= 165 file#=1 block#=289310 blocks=1 obj#=78975 tim=251855132
WAIT #764157184: nam='db file sequential read' ela= 332 file#=1 block#=289317 blocks=1 obj#=78975 tim=251856532
WAIT #764157184: nam='db file sequential read' ela= 178 file#=1 block#=289394 blocks=1 obj#=78976 tim=251857623
WAIT #764157184: nam='db file sequential read' ela= 171 file#=1 block#=289395 blocks=1 obj#=78976 tim=251858380
WAIT #764157184: nam='db file sequential read' ela= 148 file#=1 block#=289975 blocks=1 obj#=78977 tim=251858973
WAIT #764157184: nam='db file sequential read' ela= 145 file#=1 block#=289794 blocks=1 obj#=78977 tim=251859236
WAIT #764157184: nam='db file sequential read' ela= 154 file#=1 block#=289802 blocks=1 obj#=78977 tim=251859512
WAIT #764157184: nam='db file sequential read' ela= 179 file#=1 block#=290222 blocks=1 obj#=78978 tim=251861648
WAIT #764157184: nam='db file sequential read' ela= 248 file#=1 block#=195491 blocks=1 obj#=78821 tim=251862336
WAIT #764157184: nam='db file sequential read' ela= 219 file#=1 block#=289306 blocks=1 obj#=78975 tim=251862898
WAIT #764157184: nam='db file sequential read' ela= 218 file#=1 block#=195570 blocks=1 obj#=78975 tim=251863339
WAIT #764157184: nam='db file sequential read' ela= 211 file#=1 block#=289350 blocks=1 obj#=78975 tim=251863955
WAIT #764157184: nam='db file sequential read' ela= 241 file#=1 block#=289372 blocks=1 obj#=78975 tim=251864324
WAIT #764157184: nam='db file sequential read' ela= 245 file#=1 block#=289332 blocks=1 obj#=78975 tim=251865023
WAIT #764157184: nam='db file sequential read' ela= 241 file#=1 block#=289336 blocks=1 obj#=78975 tim=251865650
WAIT #764157184: nam='db file sequential read' ela= 615 file#=1 block#=289343 blocks=1 obj#=78975 tim=251866459
WAIT #764157184: nam='db file sequential read' ela= 403 file#=1 block#=289338 blocks=1 obj#=78975 tim=251867420
WAIT #764157184: nam='db file sequential read' ela= 174 file#=1 block#=289308 blocks=1 obj#=78975 tim=251868296
WAIT #764157184: nam='db file sequential read' ela= 145 file#=1 block#=289351 blocks=1 obj#=78975 tim=251868542
WAIT #764157184: nam='db file sequential read' ela= 329 file#=1 block#=289355 blocks=1 obj#=78975 tim=251869013
WAIT #764157184: nam='db file sequential read' ela= 142 file#=1 block#=289365 blocks=1 obj#=78975 tim=251869360
WAIT #764157184: nam='db file sequential read' ela= 144 file#=1 block#=289281 blocks=1 obj#=78975 tim=251870187
WAIT #764157184: nam='db file sequential read' ela= 165 file#=1 block#=289803 blocks=1 obj#=78977 tim=251871237
WAIT #764157184: nam='db file sequential read' ela= 169 file#=1 block#=289937 blocks=1 obj#=78977 tim=251872321
WAIT #764157184: nam='db file sequential read' ela= 174 file#=1 block#=289929 blocks=1 obj#=78977 tim=251872687
WAIT #764157184: nam='db file sequential read' ela= 167 file#=1 block#=289976 blocks=1 obj#=78977 tim=251873208
WAIT #764157184: nam='db file sequential read' ela= 167 file#=1 block#=289970 blocks=1 obj#=78977 tim=251873926
WAIT #764157184: nam='db file sequential read' ela= 221 file#=1 block#=289349 blocks=1 obj#=78975 tim=251875265
WAIT #764157184: nam='db file sequential read' ela= 215 file#=1 block#=195583 blocks=1 obj#=78975 tim=251875669
WAIT #764157184: nam='db file sequential read' ela= 241 file#=1 block#=289285 blocks=1 obj#=78975 tim=251877519
WAIT #764157184: nam='db file sequential read' ela= 232 file#=1 block#=289282 blocks=1 obj#=78975 tim=251878033
WAIT #764157184: nam='db file sequential read' ela= 223 file#=1 block#=195575 blocks=1 obj#=78975 tim=251881722
WAIT #764157184: nam='db file sequential read' ela= 238 file#=1 block#=289331 blocks=1 obj#=78975 tim=251882092
WAIT #764157184: nam='db file sequential read' ela= 224 file#=1 block#=289342 blocks=1 obj#=78975 tim=251882636
WAIT #764157184: nam='db file sequential read' ela= 322 file#=1 block#=289325 blocks=1 obj#=78975 tim=251883538
WAIT #764157184: nam='db file sequential read' ela= 146 file#=1 block#=195577 blocks=1 obj#=78975 tim=251885383
WAIT #764157184: nam='db file sequential read' ela= 226 file#=1 block#=289352 blocks=1 obj#=78975 tim=251892598
WAIT #764157184: nam='db file sequential read' ela= 220 file#=1 block#=289356 blocks=1 obj#=78975 tim=251893257
WAIT #764157184: nam='db file sequential read' ela= 237 file#=1 block#=289376 blocks=1 obj#=78975 tim=251896959
WAIT #764157184: nam='db file sequential read' ela= 237 file#=1 block#=289335 blocks=1 obj#=78975 tim=251897947
WAIT #764157184: nam='db file sequential read' ela= 242 file#=1 block#=289339 blocks=1 obj#=78975 tim=251898588
WAIT #764157184: nam='db file sequential read' ela= 206 file#=1 block#=289364 blocks=1 obj#=78975 tim=251898965
WAIT #764157184: nam='db file sequential read' ela= 198 file#=1 block#=289283 blocks=1 obj#=78975 tim=251902013
WAIT #764157184: nam='db file sequential read' ela= 193 file#=1 block#=289284 blocks=1 obj#=78975 tim=251902555
WAIT #764157184: nam='db file sequential read' ela= 227 file#=1 block#=289366 blocks=1 obj#=78975 tim=251906638
=====================
PARSING IN CURSOR #789776576 len=314 dep=1 uid=0 oct=6 lid=0 tim=251909163 hv=3096556448 ad='7ff0dc65cf0' sqlid='0kkhhb2w93cx0'
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18, bitmapranges=:19 where ts#=:1 and file#=:2 and block#=:3
END OF STMT
PARSE #789776576:c=0,e=441,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=4,plh=0,tim=251909162
BINDS #789776576:

 Bind#0
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=240 off=0
  kxsbbbfp=2a87aea8  bln=22  avl=02  flg=05
  value=6
 Bind#1
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=2a87aec0  bln=22  avl=02  flg=01
  value=16
 Bind#2
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=2a87aed8  bln=22  avl=02  flg=01
  value=2
 Bind#3
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=2a87aef0  bln=22  avl=02  flg=01
  value=1
 Bind#4
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=2a87af08  bln=22  avl=06  flg=01
  value=2147483645
 Bind#5
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
  kxsbbbfp=2a87af20  bln=22  avl=03  flg=01
  value=128
 Bind#6
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
  kxsbbbfp=2a87af38  bln=22  avl=01  flg=01
  value=0
 Bind#7
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
  kxsbbbfp=2a87af50  bln=22  avl=01  flg=01
  value=0
 Bind#8
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
  kxsbbbfp=2a87af68  bln=22  avl=02  flg=01
  value=8
 Bind#9
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
  kxsbbbfp=2a87af80  bln=22  avl=01  flg=01
  value=0
 Bind#10
  No oacdef for this bind.
 Bind#11
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
  kxsbbbfp=2a87ae78  bln=22  avl=01  flg=05
  value=0
 Bind#12
  No oacdef for this bind.
 Bind#13
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
  kxsbbbfp=2a87ae18  bln=22  avl=01  flg=05
  value=0
 Bind#14
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=2a87ae30  bln=22  avl=04  flg=01
  value=78976
 Bind#15
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=2a87ae48  bln=22  avl=05  flg=01
  value=4194305
 Bind#16
  No oacdef for this bind.
 Bind#17
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=120 off=0
  kxsbbbfp=2a87ad88  bln=22  avl=01  flg=05
  value=0
 Bind#18
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=2a87ada0  bln=22  avl=06  flg=01
  value=2147483645
 Bind#19
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=2a87adb8  bln=22  avl=01  flg=01
  value=0
 Bind#20
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=2a87add0  bln=22  avl=02  flg=01
  value=1
 Bind#21
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=2a87ade8  bln=22  avl=04  flg=01
  value=289392
EXEC #789776576:c=0,e=2029,p=0,cr=3,cu=1,mis=1,r=1,dep=1,og=4,plh=2170058777,tim=251911316
STAT #789776576 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE  SEG$ (cr=3 pr=0 pw=0 str=1 time=109 us)'
STAT #789776576 id=2 cnt=1 pid=1 pos=1 obj=14 op='TABLE ACCESS CLUSTER SEG$ (cr=3 pr=0 pw=0 str=1 time=24 us cost=2 size=66 card=1)'
STAT #789776576 id=3 cnt=1 pid=2 pos=1 obj=9 op='INDEX UNIQUE SCAN I_FILE#_BLOCK# (cr=2 pr=0 pw=0 str=1 time=12 us cost=1 size=0 card=1)'
CLOSE #789776576:c=0,e=3,dep=1,type=3,tim=251911528
WAIT #764157184: nam='db file sequential read' ela= 237 file#=1 block#=289396 blocks=1 obj#=78976 tim=251911968
WAIT #764157184: nam='db file sequential read' ela= 208 file#=1 block#=195460 blocks=1 obj#=78821 tim=251916057
WAIT #764157184: nam='db file sequential read' ela= 232 file#=1 block#=289384 blocks=1 obj#=78975 tim=251916978
WAIT #764157184: nam='db file sequential read' ela= 212 file#=1 block#=289368 blocks=1 obj#=78975 tim=251918312
WAIT #764157184: nam='db file sequential read' ela= 209 file#=1 block#=289381 blocks=1 obj#=78975 tim=251922504
WAIT #764157184: nam='db file sequential read' ela= 203 file#=1 block#=289380 blocks=1 obj#=78975 tim=251922880
WAIT #764157184: nam='db file sequential read' ela= 182 file#=1 block#=289357 blocks=1 obj#=78975 tim=251933950
WAIT #764157184: nam='db file sequential read' ela= 238 file#=1 block#=195576 blocks=1 obj#=78975 tim=251943337
WAIT #764157184: nam='db file sequential read' ela= 218 file#=1 block#=289930 blocks=1 obj#=78977 tim=251945440
WAIT #764157184: nam='db file sequential read' ela= 231 file#=1 block#=289353 blocks=1 obj#=78975 tim=251953465
WAIT #764157184: nam='db file sequential read' ela= 213 file#=1 block#=289397 blocks=1 obj#=78976 tim=251954813
WAIT #764157184: nam='db file sequential read' ela= 206 file#=1 block#=289311 blocks=1 obj#=78975 tim=251958312
WAIT #764157184: nam='db file sequential read' ela= 211 file#=1 block#=289938 blocks=1 obj#=78977 tim=251961599
WAIT #764157184: nam='db file sequential read' ela= 260 file#=1 block#=289333 blocks=1 obj#=78975 tim=251974890
WAIT #764157184: nam='db file sequential read' ela= 206 file#=1 block#=195616 blocks=1 obj#=78821 tim=251978070
WAIT #764157184: nam='db file sequential read' ela= 242 file#=1 block#=289334 blocks=1 obj#=78975 tim=251979962
WAIT #764157184: nam='db file sequential read' ela= 176 file#=1 block#=289307 blocks=1 obj#=78975 tim=251982753
WAIT #764157184: nam='db file sequential read' ela= 192 file#=1 block#=289359 blocks=1 obj#=78975 tim=251984242
WAIT #764157184: nam='db file sequential read' ela= 173 file#=1 block#=289344 blocks=1 obj#=78975 tim=251984885
WAIT #764157184: nam='db file sequential read' ela= 176 file#=1 block#=289398 blocks=1 obj#=78976 tim=251989170
WAIT #764157184: nam='db file sequential read' ela= 174 file#=1 block#=289318 blocks=1 obj#=78975 tim=251994258
WAIT #764157184: nam='db file sequential read' ela= 190 file#=1 block#=289983 blocks=1 obj#=78977 tim=251996642
WAIT #764157184: nam='db file sequential read' ela= 168 file#=1 block#=289304 blocks=1 obj#=78975 tim=251998196
WAIT #764157184: nam='db file sequential read' ela= 176 file#=1 block#=289303 blocks=1 obj#=78975 tim=251998477
WAIT #764157184: nam='db file sequential read' ela= 173 file#=1 block#=195574 blocks=1 obj#=78975 tim=251998768
WAIT #764157184: nam='db file sequential read' ela= 189 file#=1 block#=289374 blocks=1 obj#=78975 tim=251999222
WAIT #764157184: nam='db file sequential read' ela= 147 file#=1 block#=289371 blocks=1 obj#=78975 tim=251999478
WAIT #764157184: nam='db file sequential read' ela= 162 file#=1 block#=289984 blocks=1 obj#=78977 tim=252000280
WAIT #764157184: nam='db file sequential read' ela= 143 file#=1 block#=289932 blocks=1 obj#=78977 tim=252000794
WAIT #764157184: nam='db file sequential read' ela= 142 file#=1 block#=289936 blocks=1 obj#=78977 tim=252001047
WAIT #764157184: nam='db file sequential read' ela= 159 file#=1 block#=290000 blocks=1 obj#=78977 tim=252001609
WAIT #764157184: nam='db file sequential read' ela= 173 file#=1 block#=289375 blocks=1 obj#=78975 tim=252006124
WAIT #764157184: nam='db file sequential read' ela= 161 file#=1 block#=289373 blocks=1 obj#=78975 tim=252007292
WAIT #764157184: nam='db file sequential read' ela= 143 file#=1 block#=289370 blocks=1 obj#=78975 tim=252007523
WAIT #764157184: nam='db file sequential read' ela= 143 file#=1 block#=289315 blocks=1 obj#=78975 tim=252008364
WAIT #764157184: nam='db file sequential read' ela= 141 file#=1 block#=289312 blocks=1 obj#=78975 tim=252008596
WAIT #764157184: nam='db file sequential read' ela= 145 file#=1 block#=195492 blocks=1 obj#=78821 tim=252011942
WAIT #764157184: nam='db file sequential read' ela= 145 file#=1 block#=289369 blocks=1 obj#=78975 tim=252014370
WAIT #764157184: nam='db file sequential read' ela= 5536 file#=1 block#=289314 blocks=1 obj#=78975 tim=252021595
WAIT #764157184: nam='db file sequential read' ela= 126 file#=1 block#=289971 blocks=1 obj#=78977 tim=252023175

*** 2019-08-23T17:56:53.608840+08:00
WAIT #764157184: nam='db file sequential read' ela= 151 file#=1 block#=289316 blocks=1 obj#=78975 tim=252035838
WAIT #764157184: nam='db file sequential read' ela= 116 file#=1 block#=289313 blocks=1 obj#=78975 tim=252036075
WAIT #764157184: nam='db file sequential read' ela= 191 file#=5 block#=3 blocks=1 obj#=1 tim=252050402
WAIT #764157184: nam='db file sequential read' ela= 217 file#=1 block#=289382 blocks=1 obj#=78975 tim=252257526
WAIT #764157184: nam='db file sequential read' ela= 197 file#=1 block#=289302 blocks=1 obj#=78975 tim=252293117
WAIT #764157184: nam='db file sequential read' ela= 138 file#=1 block#=289293 blocks=1 obj#=78975 tim=252293409
WAIT #764157184: nam='db file sequential read' ela= 136 file#=1 block#=289290 blocks=1 obj#=78975 tim=252293777
WAIT #764157184: nam='db file sequential read' ela= 116 file#=1 block#=289297 blocks=1 obj#=78975 tim=252294066
WAIT #764157184: nam='db file sequential read' ela= 113 file#=1 block#=195582 blocks=1 obj#=78975 tim=252294320
WAIT #764157184: nam='db file sequential read' ela= 136 file#=1 block#=289385 blocks=1 obj#=78975 tim=252294547
WAIT #764157184: nam='db file sequential read' ela= 117 file#=1 block#=289367 blocks=1 obj#=78975 tim=252294791
WAIT #764157184: nam='db file sequential read' ela= 138 file#=1 block#=289296 blocks=1 obj#=78975 tim=252295048
WAIT #764157184: nam='db file sequential read' ela= 185 file#=1 block#=195572 blocks=1 obj#=78975 tim=252295350
WAIT #764157184: nam='db file sequential read' ela= 136 file#=1 block#=289928 blocks=1 obj#=78977 tim=252297041
WAIT #764157184: nam='db file sequential read' ela= 130 file#=1 block#=195571 blocks=1 obj#=78975 tim=252301610
WAIT #764157184: nam='db file sequential read' ela= 138 file#=1 block#=289294 blocks=1 obj#=78975 tim=252301969
WAIT #764157184: nam='db file sequential read' ela= 148 file#=1 block#=289291 blocks=1 obj#=78975 tim=252308198
WAIT #764157184: nam='db file sequential read' ela= 175 file#=1 block#=289295 blocks=1 obj#=78975 tim=252314300
WAIT #764157184: nam='db file sequential read' ela= 116 file#=1 block#=195573 blocks=1 obj#=78975 tim=252314727
WAIT #764157184: nam='db file sequential read' ela= 143 file#=1 block#=289289 blocks=1 obj#=78975 tim=252319569
WAIT #764157184: nam='db file sequential read' ela= 114 file#=1 block#=195581 blocks=1 obj#=78975 tim=252319767
WAIT #764157184: nam='db file sequential read' ela= 118 file#=1 block#=289795 blocks=1 obj#=78977 tim=252322699
BINDS #789776576:

 Bind#0
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=240 off=0
  kxsbbbfp=28161cd8  bln=22  avl=02  flg=05
  value=6
 Bind#1
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161cf0  bln=22  avl=03  flg=01
  value=512
 Bind#2
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161d08  bln=22  avl=02  flg=01
  value=19
 Bind#3
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=28161d20  bln=22  avl=02  flg=01
  value=1
 Bind#4
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=28161d38  bln=22  avl=06  flg=01
  value=2147483645
 Bind#5
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
  kxsbbbfp=28161d50  bln=22  avl=03  flg=01
  value=128
 Bind#6
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
  kxsbbbfp=28161d68  bln=22  avl=01  flg=01
  value=0
 Bind#7
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
  kxsbbbfp=28161d80  bln=22  avl=01  flg=01
  value=0
 Bind#8
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
  kxsbbbfp=28161d98  bln=22  avl=02  flg=01
  value=8
 Bind#9
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
  kxsbbbfp=28161db0  bln=22  avl=01  flg=01
  value=0
 Bind#10
  No oacdef for this bind.
 Bind#11
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
  kxsbbbfp=28161ca8  bln=22  avl=01  flg=05
  value=0
 Bind#12
  No oacdef for this bind.
 Bind#13
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
  kxsbbbfp=28161c48  bln=22  avl=01  flg=05
  value=0
 Bind#14
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161c60  bln=22  avl=04  flg=01
  value=78975
 Bind#15
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161c78  bln=22  avl=05  flg=01
  value=4194305
 Bind#16
  No oacdef for this bind.
 Bind#17
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=120 off=0
  kxsbbbfp=28161bb8  bln=22  avl=01  flg=05
  value=0
 Bind#18
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161bd0  bln=22  avl=06  flg=01
  value=2147483645
 Bind#19
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161be8  bln=22  avl=01  flg=01
  value=0
 Bind#20
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=28161c00  bln=22  avl=02  flg=01
  value=1
 Bind#21
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=28161c18  bln=22  avl=04  flg=01
  value=195568
EXEC #789776576:c=0,e=1099,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,plh=2170058777,tim=252355787
CLOSE #789776576:c=0,e=2,dep=1,type=3,tim=252355836
WAIT #764157184: nam='db file sequential read' ela= 156 file#=1 block#=195578 blocks=1 obj#=78975 tim=252363806
WAIT #764157184: nam='db file sequential read' ela= 1806 file#=1 block#=289280 blocks=1 obj#=78975 tim=252385095
WAIT #764157184: nam='db file sequential read' ela= 4953 file#=1 block#=289298 blocks=1 obj#=78975 tim=252420750
WAIT #764157184: nam='db file sequential read' ela= 159 file#=1 block#=289292 blocks=1 obj#=78975 tim=252422086
WAIT #764157184: nam='db file sequential read' ela= 2714 file#=1 block#=289309 blocks=1 obj#=78975 tim=252491990
BINDS #789776576:

 Bind#0
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=240 off=0
  kxsbbbfp=28161cd8  bln=22  avl=02  flg=05
  value=5
 Bind#1
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161cf0  bln=22  avl=03  flg=01
  value=1536
 Bind#2
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161d08  bln=22  avl=02  flg=01
  value=27
 Bind#3
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=28161d20  bln=22  avl=02  flg=01
  value=1
 Bind#4
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=28161d38  bln=22  avl=06  flg=01
  value=2147483645
 Bind#5
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
  kxsbbbfp=28161d50  bln=22  avl=03  flg=01
  value=128
 Bind#6
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
  kxsbbbfp=28161d68  bln=22  avl=01  flg=01
  value=0
 Bind#7
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
  kxsbbbfp=28161d80  bln=22  avl=01  flg=01
  value=0
 Bind#8
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
  kxsbbbfp=28161d98  bln=22  avl=02  flg=01
  value=8
 Bind#9
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
  kxsbbbfp=28161db0  bln=22  avl=01  flg=01
  value=0
 Bind#10
  No oacdef for this bind.
 Bind#11
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
  kxsbbbfp=28161ca8  bln=22  avl=01  flg=05
  value=0
 Bind#12
  No oacdef for this bind.
 Bind#13
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
  kxsbbbfp=28161c48  bln=22  avl=01  flg=05
  value=0
 Bind#14
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161c60  bln=22  avl=04  flg=01
  value=78781
 Bind#15
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161c78  bln=22  avl=05  flg=01
  value=4194305
 Bind#16
  No oacdef for this bind.
 Bind#17
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=120 off=0
  kxsbbbfp=28161bb8  bln=22  avl=01  flg=05
  value=0
 Bind#18
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161bd0  bln=22  avl=06  flg=01
  value=2147483645
 Bind#19
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161be8  bln=22  avl=01  flg=01
  value=0
 Bind#20
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=28161c00  bln=22  avl=02  flg=01
  value=1
 Bind#21
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=28161c18  bln=22  avl=04  flg=01
  value=104136
EXEC #789776576:c=0,e=1113,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,plh=2170058777,tim=252507912
CLOSE #789776576:c=0,e=2,dep=1,type=3,tim=252507961
WAIT #764157184: nam='db file sequential read' ela= 221 file#=1 block#=289360 blocks=1 obj#=78975 tim=252526332
WAIT #764157184: nam='db file sequential read' ela= 148 file#=1 block#=289301 blocks=1 obj#=78975 tim=252526784
WAIT #764157184: nam='db file sequential read' ela= 217 file#=1 block#=289305 blocks=1 obj#=78975 tim=252539685
WAIT #764157184: nam='db file sequential read' ela= 1841 file#=1 block#=289383 blocks=1 obj#=78975 tim=252546638
WAIT #764157184: nam='db file sequential read' ela= 226 file#=1 block#=289406 blocks=1 obj#=78976 tim=252552202
WAIT #764157184: nam='db file sequential read' ela= 222 file#=1 block#=289300 blocks=1 obj#=78975 tim=252557157
WAIT #764157184: nam='db file sequential read' ela= 236 file#=1 block#=289299 blocks=1 obj#=78975 tim=252565558
WAIT #764157184: nam='db file sequential read' ela= 262 file#=1 block#=196085 blocks=1 obj#=78821 tim=252569350
WAIT #764157184: nam='db file sequential read' ela= 2626 file#=1 block#=289399 blocks=1 obj#=78976 tim=252649694
WAIT #764157184: nam='db file sequential read' ela= 149 file#=1 block#=289977 blocks=1 obj#=78977 tim=252650418
WAIT #764157184: nam='db file sequential read' ela= 152 file#=1 block#=289345 blocks=1 obj#=78975 tim=252659168
WAIT #764157184: nam='db file sequential read' ela= 156 file#=1 block#=289326 blocks=1 obj#=78975 tim=252665761
WAIT #764157184: nam='db file sequential read' ela= 190 file#=1 block#=289328 blocks=1 obj#=78975 tim=252671479
WAIT #764157184: nam='db file sequential read' ela= 165 file#=1 block#=289330 blocks=1 obj#=78975 tim=252671753
WAIT #764157184: nam='db file sequential read' ela= 1475 file#=1 block#=289377 blocks=1 obj#=78975 tim=252696823
WAIT #764157184: nam='db file sequential read' ela= 151 file#=1 block#=289400 blocks=1 obj#=78976 tim=252701845
WAIT #764157184: nam='db file sequential read' ela= 133 file#=1 block#=289804 blocks=1 obj#=78977 tim=252707291
WAIT #764157184: nam='db file sequential read' ela= 2731 file#=1 block#=196083 blocks=1 obj#=78821 tim=252780975
WAIT #764157184: nam='db file sequential read' ela= 160 file#=1 block#=289378 blocks=1 obj#=78975 tim=252786348
WAIT #764157184: nam='db file sequential read' ela= 136 file#=1 block#=289379 blocks=1 obj#=78975 tim=252786574
WAIT #764157184: nam='db file sequential read' ela= 125 file#=1 block#=289401 blocks=1 obj#=78976 tim=252787731
BINDS #789776576:

 Bind#0
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=240 off=0
  kxsbbbfp=28161cd8  bln=22  avl=02  flg=05
  value=6
 Bind#1
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161cf0  bln=22  avl=03  flg=01
  value=256
 Bind#2
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161d08  bln=22  avl=02  flg=01
  value=17
 Bind#3
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=28161d20  bln=22  avl=02  flg=01
  value=1
 Bind#4
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=28161d38  bln=22  avl=06  flg=01
  value=2147483645
 Bind#5
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
  kxsbbbfp=28161d50  bln=22  avl=03  flg=01
  value=128
 Bind#6
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
  kxsbbbfp=28161d68  bln=22  avl=01  flg=01
  value=0
 Bind#7
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
  kxsbbbfp=28161d80  bln=22  avl=01  flg=01
  value=0
 Bind#8
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
  kxsbbbfp=28161d98  bln=22  avl=02  flg=01
  value=8
 Bind#9
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
  kxsbbbfp=28161db0  bln=22  avl=01  flg=01
  value=0
 Bind#10
  No oacdef for this bind.
 Bind#11
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
  kxsbbbfp=28161ca8  bln=22  avl=01  flg=05
  value=0
 Bind#12
  No oacdef for this bind.
 Bind#13
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
  kxsbbbfp=28161c48  bln=22  avl=01  flg=05
  value=0
 Bind#14
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161c60  bln=22  avl=04  flg=01
  value=78977
 Bind#15
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161c78  bln=22  avl=05  flg=01
  value=4194305
 Bind#16
  No oacdef for this bind.
 Bind#17
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=120 off=0
  kxsbbbfp=28161bb8  bln=22  avl=01  flg=05
  value=0
 Bind#18
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161bd0  bln=22  avl=06  flg=01
  value=2147483645
 Bind#19
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161be8  bln=22  avl=01  flg=01
  value=0
 Bind#20
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=28161c00  bln=22  avl=02  flg=01
  value=1
 Bind#21
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=28161c18  bln=22  avl=04  flg=01
  value=289792
EXEC #789776576:c=0,e=1101,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,plh=2170058777,tim=252800695
CLOSE #789776576:c=0,e=3,dep=1,type=3,tim=252800744
WAIT #764157184: nam='db file sequential read' ela= 196 file#=1 block#=195579 blocks=1 obj#=78975 tim=252817900
WAIT #764157184: nam='db file sequential read' ela= 2681 file#=1 block#=289933 blocks=1 obj#=78977 tim=252927704
WAIT #764157184: nam='db file sequential read' ela= 202 file#=1 block#=289361 blocks=1 obj#=78975 tim=252964457
WAIT #764157184: nam='db file sequential read' ela= 172 file#=1 block#=196091 blocks=1 obj#=78821 tim=252989384
WAIT #764157184: nam='db file sequential read' ela= 147 file#=1 block#=289327 blocks=1 obj#=78975 tim=252995084
WAIT #764157184: nam='db file sequential read' ela= 138 file#=1 block#=289329 blocks=1 obj#=78975 tim=252995304
WAIT #764157184: nam='db file sequential read' ela= 196 file#=1 block#=196086 blocks=1 obj#=78821 tim=253023957
WAIT #764157184: nam='db file sequential read' ela= 184 file#=1 block#=289340 blocks=1 obj#=78975 tim=253036834

*** 2019-08-23T17:56:54.638442+08:00
WAIT #764157184: nam='db file sequential read' ela= 1540 file#=1 block#=289796 blocks=1 obj#=78977 tim=253072671
WAIT #764157184: nam='db file sequential read' ela= 215 file#=1 block#=289985 blocks=1 obj#=78977 tim=253128949
WAIT #764157184: nam='db file sequential read' ela= 2661 file#=1 block#=289386 blocks=1 obj#=78975 tim=253242026
WAIT #764157184: nam='db file sequential read' ela= 2821 file#=1 block#=196082 blocks=1 obj#=78821 tim=253340016
WAIT #764157184: nam='db file sequential read' ela= 200 file#=1 block#=289927 blocks=1 obj#=78977 tim=253392451
WAIT #764157184: nam='db file sequential read' ela= 177 file#=1 block#=289402 blocks=1 obj#=78976 tim=253402947
WAIT #764157184: nam='db file sequential read' ela= 174 file#=1 block#=289358 blocks=1 obj#=78975 tim=253422238
WAIT #764157184: nam='db file sequential read' ela= 154 file#=1 block#=289354 blocks=1 obj#=78975 tim=253427079
WAIT #764157184: nam='db file sequential read' ela= 147 file#=1 block#=289319 blocks=1 obj#=78975 tim=253437006
WAIT #764157184: nam='db file sequential read' ela= 4942 file#=1 block#=196084 blocks=1 obj#=78821 tim=253459268
WAIT #764157184: nam='db file sequential read' ela= 220 file#=1 block#=195618 blocks=1 obj#=78821 tim=253476872
WAIT #764157184: nam='db file sequential read' ela= 150 file#=1 block#=289403 blocks=1 obj#=78976 tim=253485081
WAIT #764157184: nam='db file sequential read' ela= 150 file#=1 block#=289404 blocks=1 obj#=78976 tim=253515456
WAIT #764157184: nam='db file sequential read' ela= 2692 file#=1 block#=195617 blocks=1 obj#=78821 tim=253580367
WAIT #764157184: nam='db file sequential read' ela= 272 file#=1 block#=289978 blocks=1 obj#=78977 tim=253594632
WAIT #764157184: nam='db file sequential read' ela= 233 file#=1 block#=289750 blocks=1 obj#=78975 tim=253600233
WAIT #764157184: nam='db file sequential read' ela= 215 file#=1 block#=289749 blocks=1 obj#=78975 tim=253600512
WAIT #764157184: nam='db file sequential read' ela= 221 file#=1 block#=289741 blocks=1 obj#=78975 tim=253600842
WAIT #764157184: nam='db file sequential read' ela= 217 file#=1 block#=289738 blocks=1 obj#=78975 tim=253601166
WAIT #764157184: nam='db file sequential read' ela= 214 file#=1 block#=289739 blocks=1 obj#=78975 tim=253601728
WAIT #764157184: nam='db file sequential read' ela= 210 file#=1 block#=289920 blocks=1 obj#=78977 tim=253603369
WAIT #764157184: nam='db file sequential read' ela= 207 file#=1 block#=289731 blocks=1 obj#=78975 tim=253604686
WAIT #764157184: nam='db file sequential read' ela= 219 file#=1 block#=289732 blocks=1 obj#=78975 tim=253605175
WAIT #764157184: nam='db file sequential read' ela= 213 file#=1 block#=289921 blocks=1 obj#=78977 tim=253606180
WAIT #764157184: nam='db file sequential read' ela= 179 file#=1 block#=289730 blocks=1 obj#=78975 tim=253607340
WAIT #764157184: nam='db file sequential read' ela= 183 file#=1 block#=289729 blocks=1 obj#=78975 tim=253607706
WAIT #764157184: nam='db file sequential read' ela= 182 file#=1 block#=289728 blocks=1 obj#=78975 tim=253609033
WAIT #764157184: nam='db file sequential read' ela= 175 file#=1 block#=289727 blocks=1 obj#=78975 tim=253610177
WAIT #764157184: nam='db file sequential read' ela= 182 file#=1 block#=289726 blocks=1 obj#=78975 tim=253610456
WAIT #764157184: nam='db file sequential read' ela= 180 file#=1 block#=289725 blocks=1 obj#=78975 tim=253610739
WAIT #764157184: nam='db file sequential read' ela= 177 file#=1 block#=289724 blocks=1 obj#=78975 tim=253611345
WAIT #764157184: nam='db file sequential read' ela= 181 file#=1 block#=289740 blocks=1 obj#=78975 tim=253614138
WAIT #764157184: nam='db file sequential read' ela= 175 file#=1 block#=289722 blocks=1 obj#=78975 tim=253615777
WAIT #764157184: nam='db file sequential read' ela= 173 file#=1 block#=289723 blocks=1 obj#=78975 tim=253616048
WAIT #764157184: nam='db file sequential read' ela= 173 file#=1 block#=289721 blocks=1 obj#=78975 tim=253616819
WAIT #764157184: nam='db file sequential read' ela= 179 file#=1 block#=289720 blocks=1 obj#=78975 tim=253618588
WAIT #764157184: nam='db file sequential read' ela= 174 file#=1 block#=289719 blocks=1 obj#=78975 tim=253619755
WAIT #764157184: nam='db file sequential read' ela= 175 file#=1 block#=289718 blocks=1 obj#=78975 tim=253620115
WAIT #764157184: nam='db file sequential read' ela= 146 file#=1 block#=289717 blocks=1 obj#=78975 tim=253621536
WAIT #764157184: nam='db file sequential read' ela= 166 file#=1 block#=289716 blocks=1 obj#=78975 tim=253621815
WAIT #764157184: nam='db file sequential read' ela= 7169 file#=1 block#=289715 blocks=1 obj#=78975 tim=253629661
WAIT #764157184: nam='db file sequential read' ela= 2246 file#=1 block#=289714 blocks=1 obj#=78975 tim=253633473
WAIT #764157184: nam='db file sequential read' ela= 224 file#=1 block#=289713 blocks=1 obj#=78975 tim=253636647
WAIT #764157184: nam='db file sequential read' ela= 220 file#=1 block#=289712 blocks=1 obj#=78975 tim=253637403
WAIT #764157184: nam='db file sequential read' ela= 213 file#=1 block#=289710 blocks=1 obj#=78975 tim=253639524
WAIT #764157184: nam='db file sequential read' ela= 218 file#=1 block#=289709 blocks=1 obj#=78975 tim=253639859
WAIT #764157184: nam='db file sequential read' ela= 234 file#=1 block#=289708 blocks=1 obj#=78975 tim=253640325
WAIT #764157184: nam='db file sequential read' ela= 238 file#=1 block#=289707 blocks=1 obj#=78975 tim=253641239
WAIT #764157184: nam='db file sequential read' ela= 234 file#=1 block#=289706 blocks=1 obj#=78975 tim=253642501
WAIT #764157184: nam='db file sequential read' ela= 236 file#=1 block#=289703 blocks=1 obj#=78975 tim=253642917
WAIT #764157184: nam='db file sequential read' ela= 240 file#=1 block#=289705 blocks=1 obj#=78975 tim=253643274
WAIT #764157184: nam='db file sequential read' ela= 240 file#=1 block#=289704 blocks=1 obj#=78975 tim=253643679
WAIT #764157184: nam='db file sequential read' ela= 233 file#=1 block#=289711 blocks=1 obj#=78975 tim=253651883
WAIT #764157184: nam='db file sequential read' ela= 267 file#=1 block#=289702 blocks=1 obj#=78975 tim=253662669
BINDS #789776576:

 Bind#0
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=240 off=0
  kxsbbbfp=28161cd8  bln=22  avl=02  flg=05
  value=6
 Bind#1
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161cf0  bln=22  avl=03  flg=01
  value=256
 Bind#2
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161d08  bln=22  avl=02  flg=01
  value=17
 Bind#3
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=28161d20  bln=22  avl=02  flg=01
  value=1
 Bind#4
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=28161d38  bln=22  avl=06  flg=01
  value=2147483645
 Bind#5
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
  kxsbbbfp=28161d50  bln=22  avl=03  flg=01
  value=128
 Bind#6
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
  kxsbbbfp=28161d68  bln=22  avl=01  flg=01
  value=0
 Bind#7
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
  kxsbbbfp=28161d80  bln=22  avl=01  flg=01
  value=0
 Bind#8
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
  kxsbbbfp=28161d98  bln=22  avl=02  flg=01
  value=8
 Bind#9
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
  kxsbbbfp=28161db0  bln=22  avl=01  flg=01
  value=0
 Bind#10
  No oacdef for this bind.
 Bind#11
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
  kxsbbbfp=28161ca8  bln=22  avl=01  flg=05
  value=0
 Bind#12
  No oacdef for this bind.
 Bind#13
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
  kxsbbbfp=28161c48  bln=22  avl=01  flg=05
  value=0
 Bind#14
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161c60  bln=22  avl=04  flg=01
  value=78821
 Bind#15
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161c78  bln=22  avl=05  flg=01
  value=4194305
 Bind#16
  No oacdef for this bind.
 Bind#17
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=120 off=0
  kxsbbbfp=28161bb8  bln=22  avl=01  flg=05
  value=0
 Bind#18
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161bd0  bln=22  avl=06  flg=01
  value=2147483645
 Bind#19
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161be8  bln=22  avl=01  flg=01
  value=0
 Bind#20
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=28161c00  bln=22  avl=02  flg=01
  value=1
 Bind#21
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=28161c18  bln=22  avl=04  flg=01
  value=196080
EXEC #789776576:c=0,e=1073,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,plh=2170058777,tim=253665404
CLOSE #789776576:c=0,e=3,dep=1,type=3,tim=253665452
WAIT #764157184: nam='db file sequential read' ela= 253 file#=1 block#=289701 blocks=1 obj#=78975 tim=253666289
WAIT #764157184: nam='db file sequential read' ela= 244 file#=1 block#=289700 blocks=1 obj#=78975 tim=253666946
WAIT #764157184: nam='db file sequential read' ela= 246 file#=1 block#=289699 blocks=1 obj#=78975 tim=253667296
WAIT #764157184: nam='db file sequential read' ela= 242 file#=1 block#=289698 blocks=1 obj#=78975 tim=253667663
WAIT #764157184: nam='db file sequential read' ela= 290 file#=1 block#=289697 blocks=1 obj#=78975 tim=253668085
WAIT #764157184: nam='db file sequential read' ela= 227 file#=1 block#=289696 blocks=1 obj#=78975 tim=253668496
WAIT #764157184: nam='db file sequential read' ela= 199 file#=1 block#=289680 blocks=1 obj#=78975 tim=253670591
WAIT #764157184: nam='db file sequential read' ela= 173 file#=1 block#=289672 blocks=1 obj#=78975 tim=253670875
WAIT #764157184: nam='db file sequential read' ela= 199 file#=1 block#=289645 blocks=1 obj#=78975 tim=253671128
WAIT #764157184: nam='db file sequential read' ela= 200 file#=1 block#=289644 blocks=1 obj#=78975 tim=253671446
WAIT #764157184: nam='db file sequential read' ela= 222 file#=1 block#=289642 blocks=1 obj#=78975 tim=253671788
WAIT #764157184: nam='db file sequential read' ela= 202 file#=1 block#=289643 blocks=1 obj#=78975 tim=253672888
WAIT #764157184: nam='db file sequential read' ela= 196 file#=1 block#=289641 blocks=1 obj#=78975 tim=253673322
WAIT #764157184: nam='db file sequential read' ela= 204 file#=1 block#=289640 blocks=1 obj#=78975 tim=253673633
WAIT #764157184: nam='db file sequential read' ela= 219 file#=1 block#=289639 blocks=1 obj#=78975 tim=253673967
WAIT #764157184: nam='db file sequential read' ela= 215 file#=1 block#=289633 blocks=1 obj#=78975 tim=253674382
WAIT #764157184: nam='db file sequential read' ela= 210 file#=1 block#=289632 blocks=1 obj#=78975 tim=253674728
WAIT #764157184: nam='db file sequential read' ela= 206 file#=1 block#=289631 blocks=1 obj#=78975 tim=253675478
WAIT #764157184: nam='db file sequential read' ela= 202 file#=1 block#=289628 blocks=1 obj#=78975 tim=253676435
WAIT #764157184: nam='db file sequential read' ela= 206 file#=1 block#=289627 blocks=1 obj#=78975 tim=253676751
WAIT #764157184: nam='db file sequential read' ela= 216 file#=1 block#=289623 blocks=1 obj#=78975 tim=253677086
WAIT #764157184: nam='db file sequential read' ela= 208 file#=1 block#=289624 blocks=1 obj#=78975 tim=253677594
WAIT #764157184: nam='db file sequential read' ela= 201 file#=1 block#=289617 blocks=1 obj#=78975 tim=253678407
WAIT #764157184: nam='db file sequential read' ela= 211 file#=1 block#=289626 blocks=1 obj#=78975 tim=253678736
WAIT #764157184: nam='db file sequential read' ela= 178 file#=1 block#=289615 blocks=1 obj#=78975 tim=253680209
WAIT #764157184: nam='db file sequential read' ela= 175 file#=1 block#=289616 blocks=1 obj#=78975 tim=253680736
WAIT #764157184: nam='db file sequential read' ela= 171 file#=1 block#=289614 blocks=1 obj#=78975 tim=253681153
WAIT #764157184: nam='db file sequential read' ela= 175 file#=1 block#=289613 blocks=1 obj#=78975 tim=253681846
WAIT #764157184: nam='db file sequential read' ela= 231 file#=1 block#=289612 blocks=1 obj#=78975 tim=253684680
WAIT #764157184: nam='db file sequential read' ela= 214 file#=1 block#=289611 blocks=1 obj#=78975 tim=253686385
WAIT #764157184: nam='db file sequential read' ela= 220 file#=1 block#=289737 blocks=1 obj#=78975 tim=253688456
WAIT #764157184: nam='db file sequential read' ela= 216 file#=1 block#=289610 blocks=1 obj#=78975 tim=253690819
WAIT #764157184: nam='db file sequential read' ela= 216 file#=1 block#=289609 blocks=1 obj#=78975 tim=253691452
WAIT #764157184: nam='db file sequential read' ela= 208 file#=1 block#=289608 blocks=1 obj#=78975 tim=253699463
WAIT #764157184: nam='db file sequential read' ela= 226 file#=1 block#=289606 blocks=1 obj#=78975 tim=253701563
WAIT #764157184: nam='db file sequential read' ela= 215 file#=1 block#=289605 blocks=1 obj#=78975 tim=253701883
WAIT #764157184: nam='db file sequential read' ela= 129 file#=1 block#=289601 blocks=1 obj#=78975 tim=253702111
WAIT #764157184: nam='db file sequential read' ela= 130 file#=1 block#=289602 blocks=1 obj#=78975 tim=253702465
WAIT #764157184: nam='db file sequential read' ela= 122 file#=1 block#=289600 blocks=1 obj#=78975 tim=253702783
WAIT #764157184: nam='db file sequential read' ela= 129 file#=1 block#=289599 blocks=1 obj#=78975 tim=253704464
WAIT #764157184: nam='db file sequential read' ela= 113 file#=1 block#=289597 blocks=1 obj#=78975 tim=253704659
WAIT #764157184: nam='db file sequential read' ela= 111 file#=1 block#=289596 blocks=1 obj#=78975 tim=253704833
WAIT #764157184: nam='db file sequential read' ela= 126 file#=1 block#=289595 blocks=1 obj#=78975 tim=253706374
WAIT #764157184: nam='db file sequential read' ela= 323 file#=1 block#=289594 blocks=1 obj#=78975 tim=253707174
WAIT #764157184: nam='db file sequential read' ela= 6325 file#=1 block#=289592 blocks=1 obj#=78975 tim=253713580
WAIT #764157184: nam='db file sequential read' ela= 3270 file#=1 block#=289593 blocks=1 obj#=78975 tim=253717710
WAIT #764157184: nam='db file sequential read' ela= 681 file#=1 block#=289591 blocks=1 obj#=78975 tim=253718660
WAIT #764157184: nam='db file sequential read' ela= 118 file#=1 block#=289590 blocks=1 obj#=78975 tim=253718859
WAIT #764157184: nam='db file sequential read' ela= 133 file#=1 block#=289589 blocks=1 obj#=78975 tim=253719531
WAIT #764157184: nam='db file sequential read' ela= 120 file#=1 block#=289588 blocks=1 obj#=78975 tim=253719745
WAIT #764157184: nam='db file sequential read' ela= 125 file#=1 block#=289587 blocks=1 obj#=78975 tim=253720514
WAIT #764157184: nam='db file sequential read' ela= 124 file#=1 block#=289585 blocks=1 obj#=78975 tim=253721061
WAIT #764157184: nam='db file sequential read' ela= 117 file#=1 block#=289584 blocks=1 obj#=78975 tim=253721275
WAIT #764157184: nam='db file sequential read' ela= 126 file#=1 block#=289583 blocks=1 obj#=78975 tim=253721846
WAIT #764157184: nam='db file sequential read' ela= 127 file#=1 block#=289581 blocks=1 obj#=78975 tim=253723338
WAIT #764157184: nam='db file sequential read' ela= 116 file#=1 block#=289578 blocks=1 obj#=78975 tim=253723533
WAIT #764157184: nam='db file sequential read' ela= 121 file#=1 block#=289579 blocks=1 obj#=78975 tim=253723865
WAIT #764157184: nam='db file sequential read' ela= 118 file#=1 block#=289576 blocks=1 obj#=78975 tim=253724136
WAIT #764157184: nam='db file sequential read' ela= 133 file#=1 block#=289575 blocks=1 obj#=78975 tim=253724836
WAIT #764157184: nam='db file sequential read' ela= 116 file#=1 block#=289573 blocks=1 obj#=78975 tim=253725038
WAIT #764157184: nam='db file sequential read' ela= 117 file#=1 block#=289572 blocks=1 obj#=78975 tim=253725504
WAIT #764157184: nam='db file sequential read' ela= 126 file#=1 block#=289574 blocks=1 obj#=78975 tim=253726274
WAIT #764157184: nam='db file sequential read' ela= 143 file#=1 block#=289571 blocks=1 obj#=78975 tim=253727962
WAIT #764157184: nam='db file sequential read' ela= 116 file#=1 block#=289566 blocks=1 obj#=78975 tim=253728167
WAIT #764157184: nam='db file sequential read' ela= 114 file#=1 block#=289565 blocks=1 obj#=78975 tim=253728352
WAIT #764157184: nam='db file sequential read' ela= 129 file#=1 block#=289564 blocks=1 obj#=78975 tim=253730300
WAIT #764157184: nam='db file sequential read' ela= 138 file#=1 block#=289563 blocks=1 obj#=78975 tim=253730627
WAIT #764157184: nam='db file sequential read' ela= 121 file#=1 block#=289562 blocks=1 obj#=78975 tim=253730841
WAIT #764157184: nam='db file sequential read' ela= 145 file#=1 block#=289560 blocks=1 obj#=78975 tim=253731081
WAIT #764157184: nam='db file sequential read' ela= 148 file#=1 block#=289556 blocks=1 obj#=78975 tim=253731339
WAIT #764157184: nam='db file sequential read' ela= 161 file#=1 block#=289637 blocks=1 obj#=78975 tim=253732079
WAIT #764157184: nam='db file sequential read' ela= 160 file#=1 block#=289634 blocks=1 obj#=78975 tim=253732328
WAIT #764157184: nam='db file sequential read' ela= 170 file#=1 block#=289681 blocks=1 obj#=78975 tim=253734517
WAIT #764157184: nam='db file sequential read' ela= 158 file#=1 block#=289638 blocks=1 obj#=78975 tim=253735737
WAIT #764157184: nam='db file sequential read' ela= 147 file#=1 block#=289635 blocks=1 obj#=78975 tim=253736364
WAIT #764157184: nam='db file sequential read' ela= 158 file#=1 block#=289636 blocks=1 obj#=78975 tim=253741882
WAIT #764157184: nam='db file sequential read' ela= 182 file#=1 block#=289618 blocks=1 obj#=78975 tim=253752088
WAIT #764157184: nam='db file sequential read' ela= 141 file#=1 block#=289619 blocks=1 obj#=78975 tim=253752346
WAIT #764157184: nam='db file sequential read' ela= 150 file#=1 block#=289620 blocks=1 obj#=78975 tim=253752733
WAIT #764157184: nam='db file sequential read' ela= 173 file#=1 block#=289625 blocks=1 obj#=78975 tim=253756103
WAIT #764157184: nam='db file sequential read' ela= 154 file#=1 block#=289622 blocks=1 obj#=78975 tim=253758395
WAIT #764157184: nam='db file sequential read' ela= 178 file#=1 block#=289621 blocks=1 obj#=78975 tim=253760240
WAIT #764157184: nam='db file sequential read' ela= 3722 file#=1 block#=289662 blocks=1 obj#=78975 tim=253789759
WAIT #764157184: nam='db file sequential read' ela= 184 file#=1 block#=289646 blocks=1 obj#=78975 tim=253807010
WAIT #764157184: nam='db file sequential read' ela= 159 file#=1 block#=289557 blocks=1 obj#=78975 tim=253811069
WAIT #764157184: nam='db file sequential read' ela= 125 file#=1 block#=289555 blocks=1 obj#=78975 tim=253811497
WAIT #764157184: nam='db file sequential read' ela= 125 file#=1 block#=289554 blocks=1 obj#=78975 tim=253811947
WAIT #764157184: nam='db file sequential read' ela= 147 file#=1 block#=289553 blocks=1 obj#=78975 tim=253813561
WAIT #764157184: nam='db file sequential read' ela= 191 file#=1 block#=289552 blocks=1 obj#=78975 tim=253815406
WAIT #764157184: nam='db file sequential read' ela= 154 file#=1 block#=289550 blocks=1 obj#=78975 tim=253815686
WAIT #764157184: nam='db file sequential read' ela= 141 file#=1 block#=289549 blocks=1 obj#=78975 tim=253815904
WAIT #764157184: nam='db file sequential read' ela= 140 file#=1 block#=289548 blocks=1 obj#=78975 tim=253816119
WAIT #764157184: nam='db file sequential read' ela= 138 file#=1 block#=289547 blocks=1 obj#=78975 tim=253816385
WAIT #764157184: nam='db file sequential read' ela= 140 file#=1 block#=289546 blocks=1 obj#=78975 tim=253816783
WAIT #764157184: nam='db file sequential read' ela= 139 file#=1 block#=289544 blocks=1 obj#=78975 tim=253817004
WAIT #764157184: nam='db file sequential read' ela= 138 file#=1 block#=289543 blocks=1 obj#=78975 tim=253817222
WAIT #764157184: nam='db file sequential read' ela= 144 file#=1 block#=289542 blocks=1 obj#=78975 tim=253817519
WAIT #764157184: nam='db file sequential read' ela= 137 file#=1 block#=289541 blocks=1 obj#=78975 tim=253817753
WAIT #764157184: nam='db file sequential read' ela= 138 file#=1 block#=289540 blocks=1 obj#=78975 tim=253817967
WAIT #764157184: nam='db file sequential read' ela= 168 file#=1 block#=289539 blocks=1 obj#=78975 tim=253819124
WAIT #764157184: nam='db file sequential read' ela= 135 file#=1 block#=289535 blocks=1 obj#=78975 tim=253819343
WAIT #764157184: nam='db file sequential read' ela= 135 file#=1 block#=289534 blocks=1 obj#=78975 tim=253819590
WAIT #764157184: nam='db file sequential read' ela= 116 file#=1 block#=289531 blocks=1 obj#=78975 tim=253819770
WAIT #764157184: nam='db file sequential read' ela= 114 file#=1 block#=289530 blocks=1 obj#=78975 tim=253819958
WAIT #764157184: nam='db file sequential read' ela= 118 file#=1 block#=289527 blocks=1 obj#=78975 tim=253820326
WAIT #764157184: nam='db file sequential read' ela= 120 file#=1 block#=289524 blocks=1 obj#=78975 tim=253820515
WAIT #764157184: nam='db file sequential read' ela= 132 file#=1 block#=289523 blocks=1 obj#=78975 tim=253821442
WAIT #764157184: nam='db file sequential read' ela= 118 file#=1 block#=289522 blocks=1 obj#=78975 tim=253821648
WAIT #764157184: nam='db file sequential read' ela= 121 file#=1 block#=289521 blocks=1 obj#=78975 tim=253821844
WAIT #764157184: nam='db file sequential read' ela= 119 file#=1 block#=289520 blocks=1 obj#=78975 tim=253822062
WAIT #764157184: nam='db file sequential read' ela= 116 file#=1 block#=289518 blocks=1 obj#=78975 tim=253822247
WAIT #764157184: nam='db file sequential read' ela= 122 file#=1 block#=289519 blocks=1 obj#=78975 tim=253822601
WAIT #764157184: nam='db file sequential read' ela= 125 file#=1 block#=289517 blocks=1 obj#=78975 tim=253822988
WAIT #764157184: nam='db file sequential read' ela= 120 file#=1 block#=289516 blocks=1 obj#=78975 tim=253823215
WAIT #764157184: nam='db file sequential read' ela= 127 file#=1 block#=289515 blocks=1 obj#=78975 tim=253823444
WAIT #764157184: nam='db file sequential read' ela= 119 file#=1 block#=289514 blocks=1 obj#=78975 tim=253823640
WAIT #764157184: nam='db file sequential read' ela= 120 file#=1 block#=289513 blocks=1 obj#=78975 tim=253823828
WAIT #764157184: nam='db file sequential read' ela= 253 file#=1 block#=289512 blocks=1 obj#=78975 tim=253824184
WAIT #764157184: nam='db file sequential read' ela= 153 file#=1 block#=289511 blocks=1 obj#=78975 tim=253828734
WAIT #764157184: nam='db file sequential read' ela= 134 file#=1 block#=289509 blocks=1 obj#=78975 tim=253830237
WAIT #764157184: nam='db file sequential read' ela= 137 file#=1 block#=289508 blocks=1 obj#=78975 tim=253830449
WAIT #764157184: nam='db file sequential read' ela= 148 file#=1 block#=289510 blocks=1 obj#=78975 tim=253830781
WAIT #764157184: nam='db file sequential read' ela= 133 file#=1 block#=289506 blocks=1 obj#=78975 tim=253831330
WAIT #764157184: nam='db file sequential read' ela= 160 file#=1 block#=289505 blocks=1 obj#=78975 tim=253834138
WAIT #764157184: nam='db file sequential read' ela= 146 file#=1 block#=289500 blocks=1 obj#=78975 tim=253834646
WAIT #764157184: nam='db file sequential read' ela= 141 file#=1 block#=289501 blocks=1 obj#=78975 tim=253835233
WAIT #764157184: nam='db file sequential read' ela= 149 file#=1 block#=289496 blocks=1 obj#=78975 tim=253836562
WAIT #764157184: nam='db file sequential read' ela= 143 file#=1 block#=289498 blocks=1 obj#=78975 tim=253836953
WAIT #764157184: nam='db file sequential read' ela= 144 file#=1 block#=289495 blocks=1 obj#=78975 tim=253837489
WAIT #764157184: nam='db file sequential read' ela= 197 file#=1 block#=289494 blocks=1 obj#=78975 tim=253841182
WAIT #764157184: nam='db file sequential read' ela= 188 file#=1 block#=289491 blocks=1 obj#=78975 tim=253841510
WAIT #764157184: nam='db file sequential read' ela= 191 file#=1 block#=289490 blocks=1 obj#=78975 tim=253841876
WAIT #764157184: nam='db file sequential read' ela= 176 file#=1 block#=289483 blocks=1 obj#=78975 tim=253842180
WAIT #764157184: nam='db file sequential read' ela= 177 file#=1 block#=289482 blocks=1 obj#=78975 tim=253842464
WAIT #764157184: nam='db file sequential read' ela= 174 file#=1 block#=289481 blocks=1 obj#=78975 tim=253842736
WAIT #764157184: nam='db file sequential read' ela= 147 file#=1 block#=289503 blocks=1 obj#=78975 tim=253842965
WAIT #764157184: nam='db file sequential read' ela= 163 file#=1 block#=289480 blocks=1 obj#=78975 tim=253843207
WAIT #764157184: nam='db file sequential read' ela= 169 file#=1 block#=289479 blocks=1 obj#=78975 tim=253843465
WAIT #764157184: nam='db file sequential read' ela= 160 file#=1 block#=289486 blocks=1 obj#=78975 tim=253843826
WAIT #764157184: nam='db file sequential read' ela= 161 file#=1 block#=289478 blocks=1 obj#=78975 tim=253844146
WAIT #764157184: nam='db file sequential read' ela= 170 file#=1 block#=289476 blocks=1 obj#=78975 tim=253845743
WAIT #764157184: nam='db file sequential read' ela= 162 file#=1 block#=289477 blocks=1 obj#=78975 tim=253845991
WAIT #764157184: nam='db file sequential read' ela= 174 file#=1 block#=289485 blocks=1 obj#=78975 tim=253852835
WAIT #764157184: nam='db file sequential read' ela= 148 file#=1 block#=289533 blocks=1 obj#=78975 tim=253853732
WAIT #764157184: nam='db file sequential read' ela= 146 file#=1 block#=289536 blocks=1 obj#=78975 tim=253854805
WAIT #764157184: nam='db file sequential read' ela= 349 file#=1 block#=289484 blocks=1 obj#=78975 tim=253857559
WAIT #764157184: nam='db file sequential read' ela= 207 file#=1 block#=289475 blocks=1 obj#=78975 tim=253869555
WAIT #764157184: nam='db file sequential read' ela= 161 file#=1 block#=289504 blocks=1 obj#=78975 tim=253878095
WAIT #764157184: nam='db file sequential read' ela= 182 file#=1 block#=289474 blocks=1 obj#=78975 tim=253883105
WAIT #764157184: nam='db file sequential read' ela= 158 file#=1 block#=289473 blocks=1 obj#=78975 tim=253886106
WAIT #764157184: nam='db file sequential read' ela= 138 file#=1 block#=289472 blocks=1 obj#=78975 tim=253886368
WAIT #764157184: nam='db file sequential read' ela= 183 file#=1 block#=289492 blocks=1 obj#=78975 tim=253891932
WAIT #764157184: nam='db file sequential read' ela= 147 file#=1 block#=289471 blocks=1 obj#=78975 tim=253893482
WAIT #764157184: nam='db file sequential read' ela= 148 file#=1 block#=289470 blocks=1 obj#=78975 tim=253895105
WAIT #764157184: nam='db file sequential read' ela= 182 file#=1 block#=289469 blocks=1 obj#=78975 tim=253898534
WAIT #764157184: nam='db file sequential read' ela= 168 file#=1 block#=289493 blocks=1 obj#=78975 tim=253903222
WAIT #764157184: nam='db file sequential read' ela= 155 file#=1 block#=289487 blocks=1 obj#=78975 tim=253903848
WAIT #764157184: nam='db file sequential read' ela= 156 file#=1 block#=289488 blocks=1 obj#=78975 tim=253905686
WAIT #764157184: nam='db file sequential read' ela= 178 file#=1 block#=289489 blocks=1 obj#=78975 tim=253913261
WAIT #764157184: nam='db file sequential read' ela= 201 file#=1 block#=289468 blocks=1 obj#=78975 tim=253932437
WAIT #764157184: nam='db file sequential read' ela= 174 file#=1 block#=289467 blocks=1 obj#=78975 tim=253936423
WAIT #764157184: nam='db file sequential read' ela= 159 file#=1 block#=289695 blocks=1 obj#=78975 tim=253941162
WAIT #764157184: nam='db file sequential read' ela= 130 file#=1 block#=289561 blocks=1 obj#=78975 tim=253942471
WAIT #764157184: nam='db file sequential read' ela= 144 file#=1 block#=289577 blocks=1 obj#=78975 tim=253944583
WAIT #764157184: nam='db file sequential read' ela= 204 file#=1 block#=289466 blocks=1 obj#=78975 tim=253947757
WAIT #764157184: nam='db file sequential read' ela= 164 file#=1 block#=289465 blocks=1 obj#=78975 tim=253948026
WAIT #764157184: nam='db file sequential read' ela= 161 file#=1 block#=289464 blocks=1 obj#=78975 tim=253948901
WAIT #764157184: nam='db file sequential read' ela= 166 file#=1 block#=289463 blocks=1 obj#=78975 tim=253949169
WAIT #764157184: nam='db file sequential read' ela= 144 file#=1 block#=289462 blocks=1 obj#=78975 tim=253949400
WAIT #764157184: nam='db file sequential read' ela= 146 file#=1 block#=289461 blocks=1 obj#=78975 tim=253950069
WAIT #764157184: nam='db file sequential read' ela= 142 file#=1 block#=289459 blocks=1 obj#=78975 tim=253950304
WAIT #764157184: nam='db file sequential read' ela= 141 file#=1 block#=289460 blocks=1 obj#=78975 tim=253950535
WAIT #764157184: nam='db file sequential read' ela= 163 file#=1 block#=289457 blocks=1 obj#=78975 tim=253957079
WAIT #764157184: nam='db file sequential read' ela= 117 file#=1 block#=289456 blocks=1 obj#=78975 tim=253957292
WAIT #764157184: nam='db file sequential read' ela= 113 file#=1 block#=289455 blocks=1 obj#=78975 tim=253957476
WAIT #764157184: nam='db file sequential read' ela= 128 file#=1 block#=289450 blocks=1 obj#=78975 tim=253958867
WAIT #764157184: nam='db file sequential read' ela= 117 file#=1 block#=289453 blocks=1 obj#=78975 tim=253959137
WAIT #764157184: nam='db file sequential read' ela= 141 file#=1 block#=289454 blocks=1 obj#=78975 tim=253959338
WAIT #764157184: nam='db file sequential read' ela= 153 file#=1 block#=289448 blocks=1 obj#=78975 tim=253959986
WAIT #764157184: nam='db file sequential read' ela= 146 file#=1 block#=289449 blocks=1 obj#=78975 tim=253960586
WAIT #764157184: nam='db file sequential read' ela= 143 file#=1 block#=289447 blocks=1 obj#=78975 tim=253961102
WAIT #764157184: nam='db file sequential read' ela= 144 file#=1 block#=289445 blocks=1 obj#=78975 tim=253962576
WAIT #764157184: nam='db file sequential read' ela= 142 file#=1 block#=289446 blocks=1 obj#=78975 tim=253962821
WAIT #764157184: nam='db file sequential read' ela= 152 file#=1 block#=289458 blocks=1 obj#=78975 tim=253968184
WAIT #764157184: nam='db file sequential read' ela= 179 file#=1 block#=289444 blocks=1 obj#=78975 tim=253980772
WAIT #764157184: nam='db file sequential read' ela= 139 file#=1 block#=289443 blocks=1 obj#=78975 tim=253981030
WAIT #764157184: nam='db file sequential read' ela= 136 file#=1 block#=289442 blocks=1 obj#=78975 tim=253981258
WAIT #764157184: nam='db file sequential read' ela= 2807 file#=1 block#=289441 blocks=1 obj#=78975 tim=253997861
WAIT #764157184: nam='db file sequential read' ela= 154 file#=1 block#=289440 blocks=1 obj#=78975 tim=254004197
WAIT #764157184: nam='db file sequential read' ela= 137 file#=1 block#=289439 blocks=1 obj#=78975 tim=254006034
WAIT #764157184: nam='db file sequential read' ela= 138 file#=1 block#=289438 blocks=1 obj#=78975 tim=254008987
WAIT #764157184: nam='db file sequential read' ela= 143 file#=1 block#=289425 blocks=1 obj#=78975 tim=254010735
WAIT #764157184: nam='db file sequential read' ela= 118 file#=1 block#=289424 blocks=1 obj#=78975 tim=254010976
WAIT #764157184: nam='db file sequential read' ela= 164 file#=1 block#=289423 blocks=1 obj#=78975 tim=254013486
WAIT #764157184: nam='db file sequential read' ela= 152 file#=1 block#=289422 blocks=1 obj#=78975 tim=254018576
WAIT #764157184: nam='db file sequential read' ela= 137 file#=1 block#=289421 blocks=1 obj#=78975 tim=254021894
WAIT #764157184: nam='db file sequential read' ela= 132 file#=1 block#=289567 blocks=1 obj#=78975 tim=254023628
WAIT #764157184: nam='db file sequential read' ela= 153 file#=1 block#=289420 blocks=1 obj#=78975 tim=254031476
WAIT #764157184: nam='db file sequential read' ela= 140 file#=1 block#=289499 blocks=1 obj#=78975 tim=254034226
WAIT #764157184: nam='db file sequential read' ela= 141 file#=1 block#=289419 blocks=1 obj#=78975 tim=254041669
WAIT #764157184: nam='db file sequential read' ela= 176 file#=1 block#=289418 blocks=1 obj#=78975 tim=254045279
WAIT #764157184: nam='db file sequential read' ela= 4377 file#=1 block#=289586 blocks=1 obj#=78975 tim=254052855
WAIT #764157184: nam='db file sequential read' ela= 1431 file#=1 block#=289733 blocks=1 obj#=78975 tim=254057377
WAIT #764157184: nam='db file sequential read' ela= 495 file#=1 block#=289582 blocks=1 obj#=78975 tim=254058154

*** 2019-08-23T17:56:55.636844+08:00
WAIT #764157184: nam='db file sequential read' ela= 155 file#=1 block#=289417 blocks=1 obj#=78975 tim=254060516
WAIT #764157184: nam='db file sequential read' ela= 137 file#=1 block#=289580 blocks=1 obj#=78975 tim=254062322
WAIT #764157184: nam='db file sequential read' ela= 129 file#=1 block#=289416 blocks=1 obj#=78975 tim=254062604
WAIT #764157184: nam='db file sequential read' ela= 185 file#=1 block#=289734 blocks=1 obj#=78975 tim=254072411
WAIT #764157184: nam='db file sequential read' ela= 190 file#=1 block#=289538 blocks=1 obj#=78975 tim=254080011
WAIT #764157184: nam='db file sequential read' ela= 149 file#=1 block#=289415 blocks=1 obj#=78975 tim=254080324
WAIT #764157184: nam='db file sequential read' ela= 152 file#=1 block#=289414 blocks=1 obj#=78975 tim=254081771
WAIT #764157184: nam='db file sequential read' ela= 155 file#=1 block#=289413 blocks=1 obj#=78975 tim=254084345
WAIT #764157184: nam='db file sequential read' ela= 153 file#=1 block#=289412 blocks=1 obj#=78975 tim=254086394
WAIT #764157184: nam='db file sequential read' ela= 146 file#=1 block#=289411 blocks=1 obj#=78975 tim=254086714
WAIT #764157184: nam='db file sequential read' ela= 141 file#=1 block#=289410 blocks=1 obj#=78975 tim=254087378
WAIT #764157184: nam='db file sequential read' ela= 138 file#=1 block#=289408 blocks=1 obj#=78975 tim=254087601
WAIT #764157184: nam='db file sequential read' ela= 142 file#=1 block#=289409 blocks=1 obj#=78975 tim=254087986
WAIT #764157184: nam='db file sequential read' ela= 142 file#=1 block#=289390 blocks=1 obj#=78975 tim=254088426
WAIT #764157184: nam='db file sequential read' ela= 141 file#=1 block#=289388 blocks=1 obj#=78975 tim=254088660
WAIT #764157184: nam='db file sequential read' ela= 224 file#=1 block#=289391 blocks=1 obj#=78975 tim=254089279
WAIT #764157184: nam='db file sequential read' ela= 153 file#=1 block#=289389 blocks=1 obj#=78975 tim=254092045
WAIT #764157184: nam='db file sequential read' ela= 238 file#=1 block#=289387 blocks=1 obj#=78975 tim=254133725
BINDS #789776576:

 Bind#0
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=240 off=0
  kxsbbbfp=28161cd8  bln=22  avl=02  flg=05
  value=6
 Bind#1
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161cf0  bln=22  avl=03  flg=01
  value=256
 Bind#2
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161d08  bln=22  avl=02  flg=01
  value=17
 Bind#3
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=28161d20  bln=22  avl=02  flg=01
  value=1
 Bind#4
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=28161d38  bln=22  avl=06  flg=01
  value=2147483645
 Bind#5
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
  kxsbbbfp=28161d50  bln=22  avl=03  flg=01
  value=128
 Bind#6
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
  kxsbbbfp=28161d68  bln=22  avl=01  flg=01
  value=0
 Bind#7
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
  kxsbbbfp=28161d80  bln=22  avl=01  flg=01
  value=0
 Bind#8
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
  kxsbbbfp=28161d98  bln=22  avl=02  flg=01
  value=8
 Bind#9
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
  kxsbbbfp=28161db0  bln=22  avl=01  flg=01
  value=0
 Bind#10
  No oacdef for this bind.
 Bind#11
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
  kxsbbbfp=28161ca8  bln=22  avl=01  flg=05
  value=0
 Bind#12
  No oacdef for this bind.
 Bind#13
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
  kxsbbbfp=28161c48  bln=22  avl=01  flg=05
  value=0
 Bind#14
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161c60  bln=22  avl=04  flg=01
  value=78978
 Bind#15
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161c78  bln=22  avl=05  flg=01
  value=4194305
 Bind#16
  No oacdef for this bind.
 Bind#17
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=120 off=0
  kxsbbbfp=28161bb8  bln=22  avl=01  flg=05
  value=0
 Bind#18
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
  kxsbbbfp=28161bd0  bln=22  avl=06  flg=01
  value=2147483645
 Bind#19
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
  kxsbbbfp=28161be8  bln=22  avl=01  flg=01
  value=0
 Bind#20
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
  kxsbbbfp=28161c00  bln=22  avl=02  flg=01
  value=1
 Bind#21
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
  kxsbbbfp=28161c18  bln=22  avl=04  flg=01
  value=290048
EXEC #789776576:c=15600,e=1123,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,plh=2170058777,tim=254136838
CLOSE #789776576:c=0,e=2,dep=1,type=3,tim=254136891
WAIT #764157184: nam='db file sequential read' ela= 222 file#=1 block#=289532 blocks=1 obj#=78975 tim=254141918
WAIT #764157184: nam='db file sequential read' ela= 180 file#=1 block#=289525 blocks=1 obj#=78975 tim=254142307
WAIT #764157184: nam='db file sequential read' ela= 192 file#=1 block#=289526 blocks=1 obj#=78975 tim=254148374
WAIT #764157184: nam='db file sequential read' ela= 163 file#=1 block#=289528 blocks=1 obj#=78975 tim=254151669
WAIT #764157184: nam='db file sequential read' ela= 352 file#=1 block#=289529 blocks=1 obj#=78975 tim=254152266
WAIT #764157184: nam='db file sequential read' ela= 177 file#=1 block#=289545 blocks=1 obj#=78975 tim=254178259
WAIT #764157184: nam='db file sequential read' ela= 3536 file#=1 block#=289502 blocks=1 obj#=78975 tim=254192997
WAIT #764157184: nam='db file sequential read' ela= 853 file#=1 block#=289507 blocks=1 obj#=78975 tim=254194395
WAIT #764157184: nam='db file sequential read' ela= 174 file#=1 block#=289451 blocks=1 obj#=78975 tim=254215491
WAIT #764157184: nam='db file sequential read' ela= 151 file#=1 block#=289452 blocks=1 obj#=78975 tim=254217574
WAIT #764157184: nam='db file sequential read' ela= 199 file#=1 block#=289537 blocks=1 obj#=78975 tim=254237860
WAIT #764157184: nam='db file sequential read' ela= 10821 file#=1 block#=289551 blocks=1 obj#=78975 tim=254264431
WAIT #764157184: nam='db file sequential read' ela= 5169 file#=1 block#=289603 blocks=1 obj#=78975 tim=254340653
WAIT #764157184: nam='db file sequential read' ela= 296 file#=1 block#=289604 blocks=1 obj#=78975 tim=254341357
WAIT #764157184: nam='db file sequential read' ela= 3458 file#=1 block#=289598 blocks=1 obj#=78975 tim=254346751
WAIT #764157184: nam='db file sequential read' ela= 249 file#=1 block#=289559 blocks=1 obj#=78975 tim=254385299
WAIT #764157184: nam='db file sequential read' ela= 191 file#=1 block#=289558 blocks=1 obj#=78975 tim=254388431
WAIT #764157184: nam='db file sequential read' ela= 181 file#=1 block#=289735 blocks=1 obj#=78975 tim=254422485
WAIT #764157184: nam='db file sequential read' ela= 297 file#=1 block#=289426 blocks=1 obj#=78975 tim=254468134
WAIT #764157184: nam='db file sequential read' ela= 200 file#=1 block#=289736 blocks=1 obj#=78975 tim=254529995
WAIT #764157184: nam='db file sequential read' ela= 191 file#=1 block#=289742 blocks=1 obj#=78975 tim=254537991
WAIT #764157184: nam='db file sequential read' ela= 183 file#=1 block#=289743 blocks=1 obj#=78975 tim=254540559
WAIT #764157184: nam='db file sequential read' ela= 188 file#=1 block#=289744 blocks=1 obj#=78975 tim=254543562
WAIT #764157184: nam='db file sequential read' ela= 174 file#=1 block#=289745 blocks=1 obj#=78975 tim=254545165
WAIT #764157184: nam='db file sequential read' ela= 188 file#=1 block#=289746 blocks=1 obj#=78975 tim=254548580
WAIT #764157184: nam='db file sequential read' ela= 177 file#=1 block#=289747 blocks=1 obj#=78975 tim=254551051
WAIT #764157184: nam='db file sequential read' ela= 177 file#=1 block#=289748 blocks=1 obj#=78975 tim=254552693
WAIT #764157184: nam='db file sequential read' ela= 226 file#=1 block#=289629 blocks=1 obj#=78975 tim=254580019
WAIT #764157184: nam='db file sequential read' ela= 202 file#=1 block#=289630 blocks=1 obj#=78975 tim=254581350
WAIT #764157184: nam='db file sequential read' ela= 214 file#=1 block#=289922 blocks=1 obj#=78977 tim=254596212
WAIT #764157184: nam='db file sequential read' ela= 2720 file#=1 block#=289320 blocks=1 obj#=78975 tim=254631907
WAIT #764157184: nam='db file sequential read' ela= 268 file#=1 block#=289682 blocks=1 obj#=78975 tim=254653134
WAIT #764157184: nam='db file sequential read' ela= 248 file#=1 block#=289683 blocks=1 obj#=78975 tim=254654467
WAIT #764157184: nam='db file sequential read' ela= 244 file#=1 block#=289684 blocks=1 obj#=78975 tim=254655749
WAIT #764157184: nam='db file sequential read' ela= 243 file#=1 block#=289685 blocks=1 obj#=78975 tim=254657597
WAIT #764157184: nam='db file sequential read' ela= 250 file#=1 block#=289686 blocks=1 obj#=78975 tim=254659448
WAIT #764157184: nam='db file sequential read' ela= 242 file#=1 block#=289687 blocks=1 obj#=78975 tim=254662130
WAIT #764157184: nam='db file sequential read' ela= 240 file#=1 block#=289688 blocks=1 obj#=78975 tim=254663422
WAIT #764157184: nam='db file sequential read' ela= 234 file#=1 block#=289689 blocks=1 obj#=78975 tim=254664104
WAIT #764157184: nam='db file sequential read' ela= 213 file#=1 block#=289690 blocks=1 obj#=78975 tim=254667365
WAIT #764157184: nam='db file sequential read' ela= 223 file#=1 block#=289691 blocks=1 obj#=78975 tim=254668598
WAIT #764157184: nam='db file sequential read' ela= 102 file#=1 block#=289692 blocks=1 obj#=78975 tim=254669728
WAIT #764157184: nam='db file sequential read' ela= 97 file#=1 block#=289693 blocks=1 obj#=78975 tim=254671315
WAIT #764157184: nam='db file sequential read' ela= 2586 file#=1 block#=289694 blocks=1 obj#=78975 tim=254694613
WAIT #764157184: nam='db file sequential read' ela= 242 file#=1 block#=289607 blocks=1 obj#=78975 tim=254704424
WAIT #764157184: nam='db file sequential read' ela= 241 file#=1 block#=289661 blocks=1 obj#=78975 tim=254717998
WAIT #764157184: nam='db file sequential read' ela= 227 file#=1 block#=289663 blocks=1 obj#=78975 tim=254720190
WAIT #764157184: nam='db file sequential read' ela= 228 file#=1 block#=289405 blocks=1 obj#=78976 tim=254727397
WAIT #764157184: nam='db file sequential read' ela= 271 file#=1 block#=195461 blocks=1 obj#=78821 tim=254746245
WAIT #764157184: nam='db file sequential read' ela= 255 file#=1 block#=196092 blocks=1 obj#=78821 tim=254761825
WAIT #764157184: nam='db file sequential read' ela= 255 file#=1 block#=196093 blocks=1 obj#=78821 tim=254766425
WAIT #764157184: nam='db file sequential read' ela= 3461 file#=1 block#=289652 blocks=1 obj#=78975 tim=254792092
WAIT #764157184: nam='db file sequential read' ela= 185 file#=1 block#=289657 blocks=1 obj#=78975 tim=254792431
WAIT #764157184: nam='db file sequential read' ela= 188 file#=1 block#=289656 blocks=1 obj#=78975 tim=254792731
WAIT #764157184: nam='db file sequential read' ela= 186 file#=1 block#=289658 blocks=1 obj#=78975 tim=254793324
WAIT #764157184: nam='db file sequential read' ela= 179 file#=1 block#=289654 blocks=1 obj#=78975 tim=254795087
WAIT #764157184: nam='db file sequential read' ela= 305 file#=1 block#=289653 blocks=1 obj#=78975 tim=254795516
WAIT #764157184: nam='db file sequential read' ela= 182 file#=1 block#=289655 blocks=1 obj#=78975 tim=254797745
WAIT #764157184: nam='db file sequential read' ela= 235 file#=1 block#=289431 blocks=1 obj#=78975 tim=254809260
WAIT #764157184: nam='db file sequential read' ela= 224 file#=1 block#=289432 blocks=1 obj#=78975 tim=254810958
WAIT #764157184: nam='db file sequential read' ela= 219 file#=1 block#=289433 blocks=1 obj#=78975 tim=254811627
WAIT #764157184: nam='db file sequential read' ela= 207 file#=1 block#=289434 blocks=1 obj#=78975 tim=254813338
WAIT #764157184: nam='db file sequential read' ela= 215 file#=1 block#=289435 blocks=1 obj#=78975 tim=254814486
WAIT #764157184: nam='db file sequential read' ela= 245 file#=1 block#=289436 blocks=1 obj#=78975 tim=254815740
WAIT #764157184: nam='db file sequential read' ela= 142 file#=1 block#=289437 blocks=1 obj#=78975 tim=254818478
WAIT #764157184: nam='db file sequential read' ela= 231 file#=1 block#=289568 blocks=1 obj#=78975 tim=254823164
WAIT #764157184: nam='db file sequential read' ela= 216 file#=1 block#=289569 blocks=1 obj#=78975 tim=254824466
WAIT #764157184: nam='db file sequential read' ela= 220 file#=1 block#=289570 blocks=1 obj#=78975 tim=254826249
WAIT #764157184: nam='db file sequential read' ela= 222 file#=1 block#=289430 blocks=1 obj#=78975 tim=254829991
WAIT #764157184: nam='db file sequential read' ela= 222 file#=1 block#=289659 blocks=1 obj#=78975 tim=254833034
WAIT #764157184: nam='db file sequential read' ela= 222 file#=1 block#=289660 blocks=1 obj#=78975 tim=254833483
WAIT #764157184: nam='db file sequential read' ela= 4448 file#=1 block#=289651 blocks=1 obj#=78975 tim=254867379
WAIT #764157184: nam='db file sequential read' ela= 171 file#=1 block#=289647 blocks=1 obj#=78975 tim=254871254
WAIT #764157184: nam='db file sequential read' ela= 152 file#=1 block#=289648 blocks=1 obj#=78975 tim=254872938
WAIT #764157184: nam='db file sequential read' ela= 121 file#=1 block#=289650 blocks=1 obj#=78975 tim=254873174
WAIT #764157184: nam='db file sequential read' ela= 152 file#=1 block#=289649 blocks=1 obj#=78975 tim=254875831
WAIT #764157184: nam='db file sequential read' ela= 197 file#=1 block#=289427 blocks=1 obj#=78975 tim=254899929
WAIT #764157184: nam='db file sequential read' ela= 147 file#=1 block#=289428 blocks=1 obj#=78975 tim=254902422
WAIT #764157184: nam='db file sequential read' ela= 140 file#=1 block#=289429 blocks=1 obj#=78975 tim=254904755
WAIT #764157184: nam='db file sequential read' ela= 3047 file#=1 block#=289347 blocks=1 obj#=78975 tim=254919363
WAIT #764157184: nam='db file sequential read' ela= 1785 file#=1 block#=289346 blocks=1 obj#=78975 tim=254921268
WAIT #764157184: nam='db file sequential read' ela= 177 file#=1 block#=289931 blocks=1 obj#=78977 tim=254949484
WAIT #764157184: nam='db file sequential read' ela= 3585 file#=1 block#=289664 blocks=1 obj#=78975 tim=254985655
WAIT #764157184: nam='db file sequential read' ela= 250 file#=1 block#=289679 blocks=1 obj#=78975 tim=254992884
WAIT #764157184: nam='db file sequential read' ela= 237 file#=1 block#=289678 blocks=1 obj#=78975 tim=254993222
WAIT #764157184: nam='db file sequential read' ela= 190 file#=1 block#=289665 blocks=1 obj#=78975 tim=255000909
WAIT #764157184: nam='db file sequential read' ela= 175 file#=1 block#=289666 blocks=1 obj#=78975 tim=255002254
WAIT #764157184: nam='db file sequential read' ela= 171 file#=1 block#=289667 blocks=1 obj#=78975 tim=255002527
WAIT #764157184: nam='db file sequential read' ela= 171 file#=1 block#=289671 blocks=1 obj#=78975 tim=255003225
WAIT #764157184: nam='db file sequential read' ela= 169 file#=1 block#=289668 blocks=1 obj#=78975 tim=255004317
WAIT #764157184: nam='db file sequential read' ela= 4097 file#=1 block#=289669 blocks=1 obj#=78975 tim=255010512
WAIT #764157184: nam='db file sequential read' ela= 1887 file#=1 block#=289670 blocks=1 obj#=78975 tim=255014724
WAIT #764157184: nam='db file sequential read' ela= 229 file#=1 block#=289673 blocks=1 obj#=78975 tim=255017045
WAIT #764157184: nam='db file sequential read' ela= 217 file#=1 block#=289677 blocks=1 obj#=78975 tim=255027936

*** 2019-08-23T17:56:56.682045+08:00
WAIT #764157184: nam='db file sequential read' ela= 1919 file#=1 block#=289674 blocks=1 obj#=78975 tim=255118078
WAIT #764157184: nam='db file sequential read' ela= 234 file#=1 block#=289675 blocks=1 obj#=78975 tim=255118588
WAIT #764157184: nam='db file sequential read' ela= 260 file#=1 block#=289676 blocks=1 obj#=78975 tim=255122601
EXEC #764157184:c=3120020,e=3377788,p=532,cr=10450,cu=196266,mis=0,r=72858,dep=0,og=1,plh=3617692013,tim=255216244
WAIT #764157184: nam='Disk file operations I/O' ela= 159 FileOperation=8 fileno=0 filetype=8 obj#=78975 tim=255216484
STAT #764157184 id=1 cnt=0 pid=0 pos=1 obj=0 op='LOAD TABLE CONVENTIONAL  T1 (cr=10450 pr=532 pw=0 str=1 time=3377740 us)'
STAT #764157184 id=2 cnt=72858 pid=1 pos=1 obj=78781 op='TABLE ACCESS FULL T1 (cr=1430 pr=0 pw=0 str=1 time=24733 us cost=389 size=9690114 card=72858)'
WAIT #764157184: nam='log file sync' ela= 987 buffer#=4341 sync scn=18447399 p3=0 obj#=78975 tim=255217685
WAIT #764157184: nam='SQL*Net message to client' ela= 2 driver id=1111838976 #bytes=1 p3=0 obj#=78975 tim=255217755
WAIT #764157184: nam='SQL*Net message from client' ela= 2084 driver id=1111838976 #bytes=1 p3=0 obj#=78975 tim=255219868
CLOSE #764157184:c=0,e=8,dep=0,type=0,tim=255219953
PARSE #765597736:c=0,e=30,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=255220032
BINDS #765597736:

 Bind#0
  oacdty=01 mxl=2000(2000) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=2000 off=0
  kxsbbbfp=2d8e87b0  bln=2000  avl=00  flg=05
WAIT #765597736: nam='SQL*Net message to client' ela= 1 driver id=1111838976 #bytes=1 p3=0 obj#=78975 tim=255220201
EXEC #765597736:c=0,e=159,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=0,tim=255220224
WAIT #765597736: nam='Disk file operations I/O' ela= 187 FileOperation=8 fileno=0 filetype=8 obj#=78975 tim=255220442
WAIT #765597736: nam='SQL*Net message from client' ela= 7297 driver id=1111838976 #bytes=1 p3=0 obj#=78975 tim=255227801
CLOSE #765597736:c=0,e=19,dep=0,type=3,tim=255227898
=====================
PARSING IN CURSOR #764310152 len=660 dep=0 uid=0 oct=47 lid=0 tim=255227972 hv=307100086 ad='7ff0f8f75f8' sqlid='29bdpm894vydq'
declare
  Lines sys.dbms_output.chararr;
begin
  :NumLines := 10;
  sys.dbms_output.get_lines(lines => Lines, numlines => :NumLines);
  if :NumLines > 0 then :Line0 := Lines(1); end if;
  if :NumLines > 1 then :Line1 := Lines(2); end if;
  if :NumLines > 2 then :Line2 := Lines(3); end if;
  if :NumLines > 3 then :Line3 := Lines(4); end if;
  if :NumLines > 4 then :Line4 := Lines(5); end if;
  if :NumLines > 5 then :Line5 := Lines(6); end if;
  if :NumLines > 6 then :Line6 := Lines(7); end if;
  if :NumLines > 7 then :Line7 := Lines(8); end if;
  if :NumLines > 8 then :Line8 := Lines(9); end if;
  if :NumLines > 9 then :Line9 := Lines(10); end if;
end;

END OF STMT
PARSE #764310152:c=0,e=31,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=255227971
BINDS #764310152:

 Bind#0
  oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1000000 frm=00 csi=00 siz=24 off=0
  kxsbbbfp=2d8e8f68  bln=22  avl=00  flg=05
 Bind#1
  oacdty=01 mxl=32767(32512) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=32767 off=0
  kxsbbbfp=2f133498  bln=32767  avl=00  flg=05
 Bind#2
  oacdty=01 mxl=32767(32512) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=32767 off=0
  kxsbbbfp=2f1d2068  bln=32767  avl=00  flg=05
 Bind#3
  oacdty=01 mxl=32767(32512) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=32767 off=0
  kxsbbbfp=2d884f78  bln=32767  avl=00  flg=05
 Bind#4
  oacdty=01 mxl=32767(32512) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=32767 off=0
  kxsbbbfp=2e548000  bln=32767  avl=00  flg=05
 Bind#5
  oacdty=01 mxl=32767(32512) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=32767 off=0
  kxsbbbfp=2d8a8000  bln=32767  avl=00  flg=05
 Bind#6
  oacdty=01 mxl=32767(32512) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=32767 off=0
  kxsbbbfp=2d8b8000  bln=32767  avl=00  flg=05
 Bind#7
  oacdty=01 mxl=32767(32512) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=32767 off=0
  kxsbbbfp=2d918000  bln=32767  avl=00  flg=05
 Bind#8
  oacdty=01 mxl=32767(32512) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=32767 off=0
  kxsbbbfp=2d928000  bln=32767  avl=00  flg=05
 Bind#9
  oacdty=01 mxl=32767(32512) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=32767 off=0
  kxsbbbfp=2d938000  bln=32767  avl=00  flg=05
 Bind#10
  oacdty=01 mxl=32767(32512) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=32767 off=0
  kxsbbbfp=2d948000  bln=32767  avl=00  flg=05
WAIT #764310152: nam='SQL*Net message to client' ela= 2 driver id=1111838976 #bytes=1 p3=0 obj#=78975 tim=255228899
EXEC #764310152:c=0,e=656,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=0,tim=255228930
WAIT #764310152: nam='Disk file operations I/O' ela= 202 FileOperation=8 fileno=0 filetype=8 obj#=78975 tim=255229167

*** 2019-08-23T17:57:03.873658+08:00
WAIT #764310152: nam='SQL*Net message from client' ela= 7079998 driver id=1111838976 #bytes=1 p3=0 obj#=78975 tim=262309304
CLOSE #764310152:c=0,e=30,dep=0,type=3,tim=262309493
PARSE #765597736:c=0,e=43,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=262309605
BINDS #765597736:

 Bind#0
  oacdty=01 mxl=2000(2000) mxlc=00 mal=00 scl=00 pre=00
  oacflg=01 fl2=1400000 frm=01 csi=852 siz=2000 off=0
  kxsbbbfp=2d8e87b0  bln=2000  avl=00  flg=05
WAIT #765597736: nam='SQL*Net message to client' ela= 1 driver id=1111838976 #bytes=1 p3=0 obj#=78975 tim=262309923
EXEC #765597736:c=0,e=306,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=1,plh=0,tim=262309967
WAIT #765597736: nam='Disk file operations I/O' ela= 342 FileOperation=8 fileno=0 filetype=8 obj#=78975 tim=262310366

 

 

 

 

 

 

 


TKPROF: Release 12.2.0.1.0 - Development on 星期五 8月 23 18:02:50 2019

Copyright (c) 1982, 2017, Oracle and/or its affiliates.  All rights reserved.

Trace file: D:\APP\ADMINISTRATOR\VIRTUAL\diag\rdbms\prod\prod\trace\prod_ora_4652.trc
Sort options: default

********************************************************************************
count    = number of times OCI procedure was executed
cpu      = cpu time in seconds executing 
elapsed  = elapsed time in seconds executing
disk     = number of physical reads of buffers from disk
query    = number of buffers gotten for consistent read
current  = number of buffers gotten in current mode (usually for update)
rows     = number of rows processed by the fetch or execute call
********************************************************************************

SQL ID: 9m7787camwh4m Plan Hash: 0

begin :id := sys.dbms_transaction.local_transaction_id; end;


call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        4      0.00       0.00          0          0          0           0
Execute      4      0.00       0.00          0          0          0           4
Fetch        0      0.00       0.00          0          0          0           0
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        8      0.00       0.00          0          0          0           4

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS

Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  SQL*Net message to client                       4        0.00          0.00
  Disk file operations I/O                        4        0.00          0.00
  SQL*Net message from client                     3      115.51        115.52
********************************************************************************

SQL ID: cf06fwacdmgfk Plan Hash: 1388734953

select 'x' 
from
 dual


call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        1      0.00       0.00          0          0          0           0
Execute      1      0.00       0.00          0          0          0           0
Fetch        1      0.00       0.00          0          0          0           1
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        3      0.00       0.00          0          0          0           1

Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: SYS
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max)  Row Source Operation
---------- ---------- ----------  ---------------------------------------------------
         1          1          1  FAST DUAL  (cr=0 pr=0 pw=0 time=3 us starts=1 cost=2 size=0 card=1)


Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  Disk file operations I/O                        1        0.00          0.00
  SQL*Net message to client                       2        0.00          0.00
  SQL*Net message from client                     2        0.00          0.00
********************************************************************************

begin
  if :enable = 0 then
    sys.dbms_output.disable;
  else
    sys.dbms_output.enable(:size);
  end if;
end;

call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        1      0.00       0.00          0          0          0           0
Execute      1      0.00       0.00          0          0          0           1
Fetch        0      0.00       0.00          0          0          0           0
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        2      0.00       0.00          0          0          0           1

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS

Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  SQL*Net message to client                       1        0.00          0.00
  Disk file operations I/O                        1        0.00          0.00
  SQL*Net message from client                     1        0.03          0.03
********************************************************************************

SQL ID: cn6hhn36a4rrs Plan Hash: 3845132125

select con#,obj#,rcon#,enabled,nvl(defer,0),spare2,spare3,refact 
from
 cdef$ where robj#=:1


call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        0      0.00       0.00          0          0          0           0
Execute      1      0.00       0.00          0          0          0           0
Fetch        1      0.00       0.00          0          1          0           0
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        2      0.00       0.00          0          1          0           0

Misses in library cache during parse: 0
Optimizer mode: CHOOSE
Parsing user id: SYS   (recursive depth: 1)
********************************************************************************

SQL ID: gx4mv66pvj3xz Plan Hash: 2570921597

select con#,type#,condlength,intcols,robj#,rcon#,match#,refact,nvl(enabled,0),
  rowid,cols,nvl(defer,0),mtime,nvl(spare1,0),spare2,spare3 
from
 cdef$ where obj#=:1


call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        0      0.00       0.00          0          0          0           0
Execute      1      0.00       0.00          0          0          0           0
Fetch        1      0.00       0.00          0          2          0           0
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        2      0.00       0.00          0          2          0           0

Misses in library cache during parse: 0
Optimizer mode: CHOOSE
Parsing user id: SYS   (recursive depth: 1)
********************************************************************************

SQL ID: 1hdpgrjkw4uvu Plan Hash: 3617692013

insert into t1 select * from t1


call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        1      0.00       0.00          0          0          0           0
Execute      1      3.10       3.36        532      10432     196260       72858
Fetch        0      0.00       0.00          0          0          0           0
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        2      3.10       3.37        532      10432     196260       72858

Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: SYS
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max)  Row Source Operation
---------- ---------- ----------  ---------------------------------------------------
         0          0          0  LOAD TABLE CONVENTIONAL  T1 (cr=10450 pr=532 pw=0 time=3377740 us starts=1)
     72858      72858      72858   TABLE ACCESS FULL T1 (cr=1430 pr=0 pw=0 time=24733 us starts=1 cost=389 size=9690114 card=72858)


Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  db file sequential read                       532        0.01          0.21
  Disk file operations I/O                        2        0.00          0.00
  log file sync                                   1        0.00          0.00
  SQL*Net message to client                       1        0.00          0.00
  SQL*Net message from client                     1        0.00          0.00
********************************************************************************

SQL ID: 0kkhhb2w93cx0 Plan Hash: 2170058777

update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=
  :9,extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),
  groups=decode(:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=
  DECODE(:17,0,NULL,:17),scanhint=:18, bitmapranges=:19 
where
 ts#=:1 and file#=:2 and block#=:3


call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        1      0.00       0.00          0          0          0           0
Execute      6      0.01       0.00          0         18          6           6
Fetch        0      0.00       0.00          0          0          0           0
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        7      0.01       0.00          0         18          6           6

Misses in library cache during parse: 1
Misses in library cache during execute: 1
Optimizer mode: CHOOSE
Parsing user id: SYS   (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max)  Row Source Operation
---------- ---------- ----------  ---------------------------------------------------
         0          0          0  UPDATE  SEG$ (cr=3 pr=0 pw=0 time=109 us starts=1)
         1          1          1   TABLE ACCESS CLUSTER SEG$ (cr=3 pr=0 pw=0 time=24 us starts=1 cost=2 size=66 card=1)
         1          1          1    INDEX UNIQUE SCAN I_FILE#_BLOCK# (cr=2 pr=0 pw=0 time=12 us starts=1 cost=1 size=0 card=1)(object id 9)

********************************************************************************

declare
  Lines sys.dbms_output.chararr;
begin
  :NumLines := 10;
  sys.dbms_output.get_lines(lines => Lines, numlines => :NumLines);
  if :NumLines > 0 then :Line0 := Lines(1); end if;
  if :NumLines > 1 then :Line1 := Lines(2); end if;
  if :NumLines > 2 then :Line2 := Lines(3); end if;
  if :NumLines > 3 then :Line3 := Lines(4); end if;
  if :NumLines > 4 then :Line4 := Lines(5); end if;
  if :NumLines > 5 then :Line5 := Lines(6); end if;
  if :NumLines > 6 then :Line6 := Lines(7); end if;
  if :NumLines > 7 then :Line7 := Lines(8); end if;
  if :NumLines > 8 then :Line8 := Lines(9); end if;
  if :NumLines > 9 then :Line9 := Lines(10); end if;
end;

call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        1      0.00       0.00          0          0          0           0
Execute      1      0.00       0.00          0          0          0           1
Fetch        0      0.00       0.00          0          0          0           0
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total        2      0.00       0.00          0          0          0           1

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS

Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  SQL*Net message to client                       1        0.00          0.00
  Disk file operations I/O                        1        0.00          0.00
  SQL*Net message from client                     1        7.07          7.07

********************************************************************************

OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS

call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        8      0.00       0.00          0          0          0           0
Execute      8      3.10       3.37        532      10432     196260       72864
Fetch        1      0.00       0.00          0          0          0           1
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total       17      3.10       3.38        532      10432     196260       72865

Misses in library cache during parse: 2

Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  SQL*Net message from client                     9      115.51        169.48
  SQL*Net message to client                       9        0.00          0.00
  Disk file operations I/O                        9        0.00          0.00
  db file sequential read                       532        0.01          0.21
  log file sync                                   1        0.00          0.00


OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS

call     count       cpu    elapsed       disk      query    current        rows
------- ------  -------- ---------- ---------- ---------- ----------  ----------
Parse        1      0.00       0.00          0          0          0           0
Execute      8      0.01       0.00          0         18          6           6
Fetch        2      0.00       0.00          0          3          0           0
------- ------  -------- ---------- ---------- ---------- ----------  ----------
total       11      0.01       0.00          0         21          6           6

Misses in library cache during parse: 1
Misses in library cache during execute: 1

    5  user  SQL statements in session.
    3  internal SQL statements in session.
    8  SQL statements in session.
********************************************************************************
Trace file: D:\APP\ADMINISTRATOR\VIRTUAL\diag\rdbms\prod\prod\trace\prod_ora_4652.trc
Trace file compatibility: 12.2.0.0
Sort options: default

       2  sessions in tracefile.
       5  user  SQL statements in trace file.
       3  internal SQL statements in trace file.
       8  SQL statements in trace file.
       8  unique SQL statements in trace file.
    1521  lines in trace file.
     126  elapsed seconds in trace file.


 

你可能感兴趣的:(ORACLE数据库等待事件分析)