Oracle海量資料搬家的方法

來源:互聯網
上載者:User

Oracle中海量資料不用愁,向困難say no
 如果你要把Oracle裡的大量資料(80MB以上)轉移到另外的使用者,另外的資料表空間裡。可以用下面介紹的快速轉移資料的方法。

  一、建新表的方式

  create table target_tablename tablespace

  target_tablespace_name nologging

  pctfree 10 pctused 60

  storage(initial 5M next 5M minextents 1

  maxextents unlimited pctincrease 0)

  as select * from username.source_tablename where 條件;

  注意事項: 建立的表沒有原來表的索引和預設值, 只有非空(not null)的約束素條件可以繼承過來,其它的約束條件或索引需要重建立立.

  二、直接插入的方法

  INSERT /*  APPEND */ IN和空姐在一起的日子分集介紹TO ta和空姐在一起的日子分集介紹rget_tablename

  SELECT * FROM username.source_tablename where 條件;

  COMMIT;

  注意事項:

  用INSERT /*  APPEND */ 的方法會對target_tablename產生層級為6的獨佔鎖,如果運行此命令時還有對target_tablename的DML操作會排隊在它後面,對OLTP系統在用的表操作是不合適的。

  說明:這兩種方法轉移資料時沒有用SGA裡資料緩衝區和事物處理的復原段, 也不寫聯機事物日誌,就象資料庫裝載工具Solload一樣直接把資料寫到物理檔案,速度是很快的。在Oracle8i以後的版本都可以使用。

 

相關文章

聯繫我們

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