1. 程式人生 > >資料庫空間優化

資料庫空間優化

alter table OM_MOB_BEYOND_REGIS4 move nologging parallel 2;

alter index ind_OM_MOB_BEYOND_REGIS4  rebuild online nologging parallel 2;

alter table test logging parallel 1; 恢復表和索引的並行度、logging

alter table OM_MOB_BEYOND_REGIS4 enable row movement;
alter table OM_MOB_BEYOND_REGIS4 shrink space cascade;

alter table OM_MOB_BEYOND_REGIS4 disable row movement;

幾條簡單的語句,效果十分明顯。很好用。