Oracle 11g匯出空表、少表的解決辦法

來源:互聯網
上載者:User

標籤:查詢   產生   col   def   解決   insert   解決辦法   code   注意   

  ORACLE 11G中有個新特性,當表無資料時,不分配segment,以節省空間的。

解決方案:

  1)insert一行,再rollback就產生segment了

  該方法是在在空表中插入資料,再刪除,則產生segment。匯出時則可匯出空表。

  2)設定deferred_segment_creation參數

SQL> show parameter deferred_segment_creation NAME                                 TYPE        VALUE ------------------------------------ ----------- ------------------------------ deferred_segment_creation            boolean     TRUE SQL> alter system set deferred_segment_creation=false; 系統已更改。 SQL> show parameter deferred_segment_creation NAME                                 TYPE        VALUE ------------------------------------ ----------- ------------------------------ deferred_segment_creation            boolean     FALSE

 

  需注意的是:該值設定後對以前置入的空表不產生作用,仍不能匯出,只能對後面新增的表產生作用。如需匯出之前的空表,只能用第一種方法。

       3)批量處理空表

       首先使用下面的sql語句查詢一下目前使用者下的所有空表

select table_name from user_tables where NUM_ROWS=0;
然後用一下SQL語句執行查詢
select ‘alter table ‘||table_name||‘ allocate extent;‘ from user_tables where num_rows=0
假設我們這裡有空表TBL_1,TBL_2,TBL_3,TBL_4,則查詢結果如下:
alter table TBL_1 allocate extent;alter table TBL_2 allocate extent;alter table TBL_3 allocate extent;alter table TBL_4 allocate extent;
最後我們把上面的SQL語句執行就可以了。

Oracle 11g匯出空表、少表的解決辦法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.