遠程工具連接到 Linux 進行操作,進行 Linux 上 dmp 文件的導(dǎo)入導(dǎo)出。
1.將用戶 system 用戶表導(dǎo)出到指定路徑 D 盤
exp system/password@SID file=d:/daochu.dmp full=y
2.將用戶 system 與 sys 用戶的表導(dǎo)出到指定路徑 D 盤
exp system/password@SID file=d:/daochu.dmp owner=(system,sys)
3.將用戶 system 中的表 table_A、table_B 導(dǎo)出到指定路徑 D 盤
exp system/password@SID file= d:/daochu.dmp tables=(table_A,table_B)
4.將用戶 system 中的表 table1 中的字段 filed1 以"00"打頭的數(shù)據(jù)導(dǎo)出
exp system/passwor@SID filed=d:/daochu.dmp tables=(table1) query=/" where filed1 like '00%'/"
對于壓縮可以用 winzip 將 dmp 文件進行壓縮,也可以在上面命令后面 加上 compress=y 來實現(xiàn)睹栖。
導(dǎo)出 DMP文件適用于大型數(shù)據(jù)庫完整遷移,對遷移前后兩者服務(wù)器數(shù)據(jù)庫字符集要求一致,且對CLOB字段支持不太友好财岔。
對于小數(shù)據(jù)的導(dǎo)出其實用 PLSQL 能做的更好,更快饭冬,導(dǎo)出的SQL也很直觀使鹅。
5.將 D:/daochu.dmp 中的數(shù)據(jù)導(dǎo)入 TEST 數(shù)據(jù)庫中。
imp system/password@SID file=d:/daochu.dmp
imp system/password@HUST full=y file=d:/data/newsmgnt.dmp ignore=y
上面命令如果出現(xiàn)問題昌抠,假設(shè)有的表已存在,對該表可以不進行導(dǎo)入鲁僚,后面添加 ignore=y炊苫。
6.將 d:/daochu.dmp中的表table1 導(dǎo)入
imp system/passord@SID file=d:/daochu.dmp tables=(table1)
附:
nohup可以使進程后臺執(zhí)行,防止xshell斷開時進程終止
導(dǎo)入大量的數(shù)據(jù)時:nohup imp lunzhiyu/123456@orcl full=y file=tb_rns_qq_name.dmp ignore=y &