Oracle資料庫 匯入匯出常用操作命令

2021-08-21 18:38:58 字數 840 閱讀 5132

該命令在「開始選單》執行》cmd」中執行

一、資料匯出(exp.exe)

1、將資料庫orcl完全匯出,使用者名稱system,密碼accp,匯出到d:\daochu.dmp檔案中

exp system/accp@orcl file=d:\daochu.dmp full=y

2、將資料庫orcl中scott使用者的物件匯出

exp scott/accp@orcl file=d:\daochu.dmp  owner=(scott)

3、將資料庫orcl中的scott使用者的表emp、dept匯出

exp scott/accp@orcl file= d:\daochu.dmp tables=(emp,dept)

4、將資料庫orcl中的表空間testspace匯出

exp system/accp@orcl file=d:\daochu.dmp tablespaces=(testspace)

二、資料匯入(imp.exe)

1、將d:\daochu.dmp 中的資料匯入 orcl資料庫中。

imp system/accp@orcl file=d:\daochu.dmp full=y

2、如果匯入時,資料表已經存在,將報錯,對該錶不會進行匯入;加上ignore=y即可,表示忽略現有表,在現有表上追加記錄。

imp scott/accp@orcl file=d:\daochu.dmp  full=y  ignore=y

3、將d:\daochu.dmp中的表emp匯入

imp scott/accp@orcl file=d:\daochu.dmp tables=(emp)

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...