oracle move 释放 表空间

使用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