oracle資料庫的匯入匯出

2021-05-31 21:56:56 字數 1515 閱讀 5016

近期工作頻繁用到資料庫的匯入匯出特總結如下: 

大多情況都可以用oracle資料匯入匯出完成資料的備份和還原(不會造成資料的丟失)。

oracle只要裝了oracle客戶端,並建立了連線

(通過net configuration assistant新增正確的服務命名)

你可以把dmp檔案從本地匯入到遠處的資料庫伺服器中。

執行環境:可以在sqlplus.exe或者dos(命令列)中執行, 

下面介紹的是匯入匯出的例項,

資料匯出:

1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d:\test.dmp中

exp system/manager@test file=d:\test.dmp full=y

2 將資料庫中system使用者與sys使用者的表匯出

exp system/manager@test file=d:\test.dmp owner=(system,sys)

3 將資料庫中的表table1 、table2匯出

exp system/manager@test file=d:\test.dmp tables=(table1,table2)

4 將資料庫中的表table1中的字段filed1以"00"打頭的資料匯出

exp system/manager@test file=d:\test.dmp tables=(table1) query=\" where filed1 like  '00%'\"

資料的匯入

1 將d:\test.dmp 中的資料匯入 test資料庫中。

imp system/manager@test  file=d:\test.dmp

有的表已經存在,然後它就報錯,對該錶就不進行匯入,在後面加上 ignore=y 就可以了。

2 將d:\test.dmp中的表table1 匯入

imp system/manager@test  file=d:\test.dmp  tables=(table1)

基本上上面的匯入匯出夠用了。不少情況我是將表徹底刪除,然後匯入。

注意:你要有足夠的許可權,許可權不夠它會提示你。

資料庫時可以連上的。可以用tnsping test 來獲得資料庫test能否連上。

資料匯出:

exp hkb/hkb@boss_14 full=y file=c:\orabackup\hkbfull.dmp log=c:\orabackup\hkbfull.log;

匯出注意事項:匯出的是當前使用者的的資料,當前使用者如果有dba的許可權,則匯出所有資料!

同名使用者之間的資料匯入:

imp hkb/hkb@xe  file=c:\orabackup\hkbfull.dmp log=c:\orabackup\hkbimp.log full=y

不同名之間的資料匯入:

imp system/test@xe fromuser=hkb touser=hkb_new file=c:\orabackup\hkbfull.dmp

log=c:\orabackup\hkbimp.log;

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