oracle資料庫的匯出可以分為邏輯備份和物理備份
而邏輯備份分為三種模式:
1、使用者模式:匯出使用者所有物件以及物件中的資料;
2、表模式:匯出使用者所有表或者指定表;
3、整個資料庫:匯出資料庫中的所有物件
而匯出方式的備份有三種型別:
1、完全型(complete export):備份整個資料庫;
匯入與匯出的命令格式:
1、exp 使用者名稱/口令@資料庫伺服器 file=d:\data\filename.dmp log=d:\data\filename.log 表示按使用者模式匯出此使用者的所有物件以及物件中的資料到d:\data\filename.dmp檔案中,並且生成匯出的日誌檔案filename.log
2、exp userid=system/manager@資料庫伺服器 file=expdat.dmp full=y 表示用sysytem帳號(口令為manager)把整個資料庫匯出來
3、exp userid=sys/change_on_install@資料庫伺服器 buffer=3000000 owner=ken 表示用sys/change_on_install的身份匯出名為ken的資料庫物件
4、exp userid=使用者名稱/密碼@資料庫伺服器 file=filename.dmp tables=(student,teacher,score)表示只匯出student,teacher,score三個表
以上4個例子是匯出資料庫物件的例子
匯入資料庫
1、imp userid=使用者名稱/密碼@資料庫名 file=路徑/檔名.dmp 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...