★テーブルを部分的に delete した場合の領域の開放

alter table テーブル名 enable row movement;
alter table テーブル名 shrink space cascade;
alter table テーブル名 disable row movement;

しかし、大概もどってこないので、exp ⇒ imp がおススメ。


★該当テーブルの全件削除する場合の領域の開放

truncate テーブル名 drop storage;

drop storage ⇒ 領域開放
reuse storage ⇒ 領域保持