|
after setting the event, event="45050 trace name context forever, level 32768"
then do a test like this :
create table t1(c1 number,c2 clob)
lob (c2) store as securefile (
disable storage in row chunk 8192 RETENTION NOCACHE LOGGING
);
ALTER TABLE t1 MODIFY LOB(c2) (COMPRESS high);
insert into t1 values( 1, 'ABCDEF');
commit;
In trace file , we will see things like :
ktsla_ins_chunk xid: 0x0006.00b.00048556
ktsla_split_chunk Begin Txn: xid: 0x0006.010.00048831
ktsla_ins_chunk xid: 0x0006.010.00048831
Chunk Allocated: 0x1db4405 len:12 ctime:1
Chunk Allocated: 0x1db4462 len:1 ctime:0
the information particular interesting is:
"Chunk Allocated: 0x1db4462 ", which is the chunk used by this lob.
|
|