Oracle 資料庫匯入匯出

來源:互聯網
上載者:User

使用 exp/imp 匯入匯出

開始exp/imp之前, 有以下幾點需要注意:

1)此部分以 oracle 10g為例。

2)exp, imp 是作業系統下一個可執行檔檔案,存放在/ORACLE_HOME/bin目錄下。

所以之間cmd 命令模式下執行就行了。(不需要先串連進sqlplus)

3)exp , imp 命令列後不要加 ";"號, 否則會報類似以下的錯誤
About to export specified users ...
EXP-00010: dbuser; is not a valid username
Export terminated successfully with warnings.

1. 匯出指定使用者的表.

執行個體:

exp system/password@orcl file=d:\dbuser.dmp owner=dbuser

2. 匯入指定使用者的表

imp system/password@orcl file=d:\work\bak\dbuser.dmp fromuser=dbuser full=y ignore=y

如果匯入的db 沒有對應的user和tablespace 的話, 則需要先建立:

create USER dbuserIdentified by password DEFAULT TABLESPACE "DBUSERSPACE"  ACCOUNT UNLOCK ;create tablespace DBUSERSPACE datafile 'D:\oracle\product\10.2.0\db_1\dbs\DBUSERSPACE.DBF' size 30m autoextend on next 10m maxsize 100m extent management local;

相關文章

聯繫我們

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