"一、查询表占用空间 select segment_name, bytes from user_segments where segment_type = ‘TABLE’ order by bytes desc; 二、表空间占用空间释放 truncate table UEMY_ ...."
一、查询表占用空间
select segment_name, bytes
from user_segments
where segment_type = ‘TABLE’
order by bytes desc;
二、表空间占用空间释放
truncate table UEMY_TIGHTEN_GI ;
alter TABLE UEMY_TIGHTEN_GI deallocate unused keep 1k;
truncate table 是删除数据,属于高危操作,使用时要慎重。
truncate table 是删除数据,属于高危操作,使用时要慎重。