在進行oracle資料備份和還原時,經常轉換為dmp檔案或者sql檔案進行操作。下面介紹最常用的匯入匯出命令,內容由實踐操作,結合網際網路資料整理而來,如有異議,還望指正。一、sql檔案的匯入匯出
使用plsql進行匯入匯出,操作流程如下:
1. 資料匯出
exp
system/manager@test
file=d:\daochu.dmp full=y
exp
system/manager@test
file=d:\daochu.dmp owner=(system,sys)
exp system/manager@test file=d:\daochu.dmp tables=(table1,table2)
2. 資料匯入
- 將d:\daochu.dmp 中的資料匯入 test資料庫中。
imp system/manager@test
file=d:\daochu.dmp
imp system/manager@test
file=d:\daochu.dmp tables=(table1)
NC 匯入資料庫檔案
建立表空間 create tablespace nnc6 data01 datafile d oradata nnc6 data01.dbf size 500m autoextend on next 50m extent management local uniform size 256k crea...
nohup 匯入資料庫檔案
編寫shell指令碼 資料庫檔案和shell指令碼同級目錄 bin bash mysql h x uroot p123456 db db.sql 儲存退出 使用命令nohup後台執行,可以安心下班閃人了 nohup mysqlimport.sh 網上說用tail f nohup.out檢視日誌,其實...
Oracle移動資料庫檔案
一。設定要移動的資料庫 開始 執行 cmd命令 set oracle sid experience experience你要移動檔案所屬的資料庫的sid 二。進入sqlplus sqlplus nolog conn sys sys as sysdba 已連線。select name from v d...