表在删除数据的时候高水位线不降低,只是把块中的此行数据变为删除状态。如此一来,表中删除的数据多时候,表就会浪费很多空间。如下所示,表中的14天记录占用了28个块。
我们利用shrink space来降低表的高水位线。
1.修改表使其行可以移动
SQL> alter table scott.emp enable row movement;
Table altered.
2.使用shrink space来收缩空间
SQL> alter table scott.emp shrink space;
Table altered.
3.执行表信息统计
SQL> exec dbms_stats.gather_table_stats(ownname=>'scott',tabname=>'emp',cascade=>true);
4.查看块信息
select blocks,empty_blocks,num_rows from dba_tables where table_name='EMP';
高水位线降下来了。