Oracle資料庫匯入匯出實戰總結(同版本)

來源:互聯網
上載者:User

標籤:oracle   匯出   匯入   

今天閑來無事,就導了一個資料庫玩玩,順便總結下


0、cmd 命令 管理員權限登入資料庫

    sqlplus /  as sysdba
1、cmd 串連遠端資料庫
    sqlplus xn_balance/[email protected]:1521/orcl
--------匯出
2、cmd 命令匯出資料庫(沒必要連上資料庫,直接導)
     exp xn_balance/[email protected]:1521/orcl file=d:/daochu.dmp full=y  
3、 將資料庫中system使用者與sys使用者的表匯出
    exp system/[email protected] file=d:/daochu.dmp owner=(system,sys)
4、將資料庫中的表inner_notify、notify_staff_relat匯出
    exp system/manager@TESTDB2 file= d:/data/newsmgnt.dmp tables=(inner_notify,notify_staff_relat)
5、 將資料庫中的表table1中的欄位filed1以"00"打頭的資料匯出
    exp system/[email protected] file=d:/daochu.dmp tables=(table1) query=/" where filed1 like ‘00%‘/"
---------匯入
6、匯入資料庫檔案
    imp gzjs/[email protected] file=d:\daochu.dmp  full=y ignore=y;
7、匯入某張表
    imp gzjs/[email protected]  file=d:/table.dmp tables=(balance_user) ignore=y
-----------注意事項
8、匯出的檔案如果是DBA許可權的,匯入的時候也必須是DBA許可權,
9、資料庫匯出匯入版本問題
      一般低版本匯出的檔案 在高版本中可以成功匯入
      也就是說高版本相容低版本。
10、匯入的時候,會出現一些警告資訊:比如匯出的使用者和匯入的使用者名稱不一致,不理即可。
11、匯入的時候,一般在後面加上ignore=y,不加的時候,如果表已經存在了,就會報錯。
相關文章

聯繫我們

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