配置環境變數:
(例如oracle安裝在h:\oracle目錄下)
path="h:\oracle\product\11.2.0\dbhome_1\bin"
開始--->執行---->cmd 輸入命令
資料的匯出命令:
exp system/password@oracle file='d:\data.dmp ' log=d:\logimp.log
| | | |
| | | |
使用者登入身份 資料庫sid 資料備份目錄 日誌檔案
1、匯出user1、scott使用者下所有的表(注意必須是dba身份登入)
exp system/admin@oracle file=d:\data.dmp log=d:\logimp.log owner=(user1,scott)
2、匯出user1使用者下的test表和scott下的emp表(注意必須是dba身份登入)
exp system/admin@oracle file=d:\data.dmp log=d:\logimp.log tables=(user1.test,scott.emp)
3、匯出登入使用者下的所有表
exp soctt/tiger@oracle file=d:\data.dmp log=d:\logimp.log
4、匯出登入使用者下的某個表
exp soctt/tiger@oracle file=d:\data.dmp log=d:\logimp.log tables=(emp)
需要打包在命令後直接加compress=y即可
資料的匯入命令:
imp userid=username1/pwd1@orcl fromuser=username2 touser=username3 file=(c:\data.dmp)log=c:\logimp.log
username1:使用者名稱
pwd1:密碼
orcl: 如果資料庫在本機,用 例項名,在遠端用 網路服務名(oracle 網路配置工具配置的別名)
username2:data.dmp中的使用者名稱
username3:需要匯入的使用者名稱
file :輸入你要匯入檔名和路徑。
log:日誌檔名和路徑
1 將d:\daochu.dmp 中的資料匯入資料庫中。
imp system/manager@oracle file=d:\daochu.dmp
上面可能有點問題,因為有的表已經存在,然後它就報錯。在後面加上 ignore=y 就可以了。
2 將d:\daochu.dmp中的表table1 匯入
imp user/password@oracle file=d:\daochu.dmp tables=(table1)
下面這句是執行將c盤的oracle的備份的使用者user1匯入到使用者user1的資料庫
imp user1/password@oracle file='c\:qhmis20060224.dmp' ignore=n grants=y full=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...