ORACLE 尋找資料庫中有記錄的表

來源:互聯網
上載者:User

通過執行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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.