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

2021-06-23 05:06:39 字數 1145 閱讀 1655

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

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/manager@test 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/manager@test file=d:/daochu.dmp tables=(table1) query=/" where filed1 like '00%'/"

---------匯入

6、匯入資料庫檔案

imp gzjs/password@orcl file=d:\daochu.dmp  full=y ignore=y;

7、匯入某張表

imp gzjs/password@orcl  file=d:/table.dmp tables=(balance_user) ignore=y

-----------注意事項

8、匯出的檔案如果是dba許可權的,匯入的時候也必須是dba許可權,

9、資料庫匯出匯入版本問題

一般低版本匯出的檔案 在高版本中可以成功匯入

也就是說高版本相容低版本。

10、匯入的時候,會出現一些警告資訊:比如匯出的使用者和匯入的使用者名稱不一致,不理即可。

11、匯入的時候,一般在後面加上ignore=y,不加的時候,如果表已經存在了,就會報錯。

Oracle 資料庫 匯入匯出

匯入匯出時要,通過 執行 進行到oracle的安裝目錄的 bin 目錄下導 例如 d oracle product 10.1.0 db 1 bin 匯出分三種 匯出 表 方案 資料庫 1.1.1 匯出自己的表 說明 使用者 密碼 資料庫例項 表名 可多個 檔案路徑 exp userid scott ...

oracle資料庫匯入匯出

用工具匯入 匯出 資料 工具 t 匯出表 x 工具 t 匯出表 x 所選執行檔案位置 e oracle product 10.2.0 db 1 bin imp.exe exp.exe 命令匯入匯出 oracle匯入dmp檔案命令 1 dmp檔案中的資料匯入資料庫 1.首先進入cmd命令視窗 2.執行...

Oracle資料庫匯入匯出

我們經常會在資料備份或環境移至的時候用到oracle的匯入匯出 下面我們來詳細看一下匯入匯出的步驟 1.命令列下匯出dmp檔案 資料匯出,可以帶版本 expdp bp oracle bp oracle orcl directory dump dir dumpfile bp oracle.dmp ve...