oracle匯入匯出技巧

來源:互聯網
上載者:User

直接匯出
exp system/manager FILE=exp_full.dmp LOG=exp_full.log compress=N FULL=y DIRECT=y RECORDLENGTH=65535
查看匯出檔案內容
 imp username/password show=y full=y file=a.dmp

匯出選項:compress=N ,確保資料不會被合并到一個extent中

imp加速
(2)增加排序區
(3)調整BUFFER選項
imp user/pwd fromuser=user1 touser=user2 file=/tmp/imp_db_pipe1 commit=y feedback=10000 buffer=10240000

如果buffer太大,會出現 IMP-00032 IMP-00008等錯誤
(4)使用COMMIT=Y選項
  COMMIT=Y表示每個資料緩衝滿了之後提交一次,而不是導完一張表提交一次。這樣會大大減少對系統復原段等資源的消耗,對順利完成匯入是有益的。
(5)使用INDEXES=N選項
  前面談到增加排序區時,說明Imp進程會先匯入資料再建立索引。
匯入處理程序中我們就可以使用INDEXES=N 只匯入資料不建立索引,從而加快匯入速度。
  我們可以用INDEXFILE選項產生建立索引的DLL指令碼,再手工建立索引。我們也可以用如下的方法匯入兩次,第一次匯入資料,第二次匯入索引。其用法如下:
imp user/pwd fromuser=user1 touser=user2 file=/tmp/imp_db_pipe1 commit=y feedback=10000 buffer=10240000 ignore=y rows=y indexes=n
imp user/pwd fromuser=user1 touser=user2 file=/tmp/imp_index_pipe1 commit=y feedback=10000 buffer=10240000 ignore=y rows=n indexes=y

刪除資料表空間
drop tablespace dataflow including contents and datafiles cascade constraints;

相關文章

聯繫我們

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