We're taking a break this week as Connor and Chris will both be at CloudWorld, the premier Oracle conference of 2024. If you're in Vegas, please come say Hi or pop into our sessions
Thanks for the question, Paul.
Asked: January 19, 2023 - 10:07 am UTC
Last updated: June 07, 2023 - 6:25 am UTC
Version: 19c
Viewed 1000+ times
create table t1(c1 clob) lob (c1) store as basicfile; insert into t1 select lpad('X', 4000) from dual connect by level<=1000; select bytes/1024/1024 from user_segments where segment_name = (select segment_name from user_lobs where table_name = 'T1' and column_name = 'C1'); BYTES/1024/1024 9 alter table t1 enable row movement; delete from t1 where rownum <= 900; alter table t1 modify lob (c1) (shrink space); select bytes/1024/1024 from user_segments where segment_name = (select segment_name from user_lobs where table_name = 'T1' and column_name = 'C1'); BYTES/1024/1024 .9375
Need more information on Administration? Check out the Administrators guide for the Oracle Database