使用sqlplus 操作
alter table TEST_TB1 move storage(initial 64K);
alter table TEST_TB1 move ;
select SEGMENT_NAME,BYTES/1024/1024 M from user_segments where SEGMENT_NAME like 'TEST_TB%';
使用sqlplus 操作
alter table TEST_TB1 move storage(initial 64K);
alter table TEST_TB1 move ;
select SEGMENT_NAME,BYTES/1024/1024 M from user_segments where SEGMENT_NAME like 'TEST_TB%';
转载于:https://www.cnblogs.com/sddychj/p/5622606.html