通過執行select NUM_ROWS,table_name from user_tables where NUM_ROWS>0,是可以達到效果的。
但是:有時候資料是不準的,原因是執行該查詢的時候要先對錶進行分析。
分析表的文法為:analyze table table_name compute statistics;
如何批量對錶進行分析呢?
1、預存程序+遊標,迴圈,OK沒有問題,但是有點麻煩。
create or replace procedure Pro_AnalyzeTables iscursor cur_tab isselect table_name from user_tables;record_cur_tab cur_tab%rowtype;begindelete from DataTables;open cur_tab;loopfetch cur_tab into record_cur_tab;exit when cur_tab%notfound;execute immediate 'analyze table '||record_cur_tab.table_name||' compute statistics';end loop;insert into DataTables (select Table_name,NUM_Rows from user_tables where NUM_ROWS>0);end Pro_AnalyzeTables;
2、Oracle中可以將結果輸出到檔案,那麼可以利用這個搞他一下
方法如下:
spool DataTables.sql;(這裡你可以寫路徑,例如,I:\DataTable.sql,將會將資料寫入到這個檔案)
select 'analyze table '||table_name||' compute statistics;' from user_tables;
spool off;
@DataTables.sql;//執行該檔案
OK,這樣對資料庫該使用者名稱下的所有表就分析完畢了,那麼下一步就可以執行select NUM_ROWS,table_name from user_tables where NUM_ROWS>0