oracle 回收高水位線

abin1703發表於2017-12-29
select  round((1-a.used/b.num_total)*100,0)  percent from 
(SELECT COUNT (DISTINCT SUBSTR(rowid,1,15)) Used FROM 表名) a,
(select blocks num_total from dba_tables where table_name='表名' and wner='使用者名稱') b;


透過dba_tables裡的blocks欄位和有資料的欄位做對比,在用1減,求出沒有資料的塊的百分比(一般超過20%就需要回收了)從而判定是否需要回收高水位線


SQL> alter table test_shrik enable row movement ;
SQL> alter table test_shrik shrink space ;
SQL> select t.table_name,BLOCKS,EMPTY_BLOCKS,NUM_ROWS
 from user_tables t
where table_name = upper('test_shrik');


exec dbms_stats.gather_table_stats('sys','test_shrik');


SQL> select t.table_name,BLOCKS,EMPTY_BLOCKS,NUM_ROWS
 from user_tables t
where table_name = upper('test_shrik');


高水位線已經下降了

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30345407/viewspace-2149483/,如需轉載,請註明出處,否則將追究法律責任。

相關文章