功能:oracle資料匯入匯出imp/exp就相當與oracle資料還原與備份。
大多情況都可以用oracle資料匯入匯出完成資料的備份和還原(不會造成資料的丟失)。可以在sqlplus.exe或者dos(命令列)中執行,
前提:
裝了oracle客戶端,因為需要呼叫oracle\product\10.2.0\client_1\bin\exp.exe 和 imp.exe
本地服務名配置:(通過net configuration assistant新增正確的服務命名或者在c:\oracle\product\10.2.0\client_1\network\admin\tnsnames.ora中配置本地服務名),這樣你可以把資料匯出到本地,同樣可以把dmp檔案從本地匯入到遠處的資料庫伺服器中。
1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d:\daochu.dmp中
exp system/manager@test file=d:\daochu.dmp full=y
匯出注意事項:匯出的是當前使用者的的資料,當前使用者如果有dba的許可權,則匯出所有資料!
2 將資料庫中system使用者與sys使用者的表匯出
exp system/manager@test file=d:\daochu.dmp owner=(system,sys)
3 將資料庫中的表table1 、table2匯出
exp system/manager@test file=d:\daochu.dmp tables=(table1,table2)
4 將資料庫中的表table1中的字段filed1以"00"打頭的資料匯出
exp system/manager@test file=d:\daochu.dmp tables=(table1) query=\" where filed1 like '00%'\"
在上面命令後面 加上 compress=y 就可以壓縮
1 將d:\daochu.dmp 中的資料匯入 test資料庫中。
imp system/manager@test file=d:\daochu.dmp
上面可能有點問題,因為有的表已經存在,然後它就報錯,對該錶就不進行匯入。在後面加上 ignore=y 就可以了。
2 將d:\daochu.dmp中的表table1 匯入
imp system/manager@test file=d:\daochu.dmp tables=(table1)
注意:你要有足夠的許可權,許可權不夠它會提示你。
資料庫時可以連上的。可以用tnsping test 來獲得資料庫test能否連上。
同名使用者之間的資料匯入:
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
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...