gather stats的小程式

tolilong發表於2012-10-17
create or replace procedure get_table_history_stats
is
begin
dbms_stats.gather_schema_stats(ownname=>'HISSAAS');
insert into table_history_stats
select table_name,num_rows,BLOCKS,empty_blocks,AVG_SPACE,avg_row_len,
to_date(to_char(sysdate,'yyyy/mm/dd'),'yyyy/mm/dd')
from user_tables where num_rows<>0;
commit;
end get_table_history_stats;
[@more@]

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

相關文章