Oracle 插入大量資料

來源:互聯網
上載者:User

1. 採用高速的存放裝置,提高讀寫能力,如:EMC 和NetApp,

 

2. 假如tab1表中的沒有資料的話 
DROP   TABLE   TAB1;
CREATE   TABLE   TAB1   AS   SELECT   *   FROM   TAB2;
然後在建立索引

 

3. 用Hint 提示減少操作時間

    INSERT   /*+Append*/   INTO     tab1
                SELECT   *   FROM   tab2;

 

4. 採用不寫日誌及使用Hint提示減少資料操作的時間。

建議方案是先修改表為不寫日誌:
sql> alter   table   table_name   NOLOGGING;

插入資料:

INSERT   /*+Append*/   INTO     tab1
      SELECT   *   FROM   tab2;

插入完資料後,再修改表寫日誌:
sql> alter   table   table_name   LOGGING;

這裡的區別就在於如果插入資料的同時又寫日誌,尤其是大資料量的insert操作,需要耗費較長的時間。

 

5. 用EXP/IMP 處理大量資料

(1)給當前的兩個表分別改名
alter   table   tab1   rename   to   tab11;
alter   table   tab2   rename   to   tab1;
(2)匯出改名前的tab2
exp   user/pwd@...   file=...   log=...   tables=(tab1)
(3)把名字改回來
alter   table   tab1   rename   to   tab2;
alter   table   tab11   rename   to   tab1;
(4)匯入資料
imp   user/pwd@...   file=...   log=...   fromuser=user   touser=user   tables=(tab1)

相關文章

聯繫我們

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