--將資料庫db完全匯出
exp user/pwd@db file=d:\daochu.dmp full=y
--將資料庫中u1使用者與u2使用者的表匯出
exp user/pwd@db file=d:\daochu.dmp owner=(u1,u2)
--將資料庫中的表table1 、table2匯出
exp user/pwd@db file=d:\daochu.dmp tables=(table1,table2)
--將資料庫中的表table1中的字段filed1以"00"打頭的資料匯出
exp user/pwd@db file=d:\daochu.dmp tables=(table1) query=\" where filed1 like '00%'\"
--將d:\daochu.dmp 中的資料匯入db資料庫中。
imp user/pwd@db file=d:\daochu.dmp
上面可能有點問題,因為有的表已經存在,然後它就報錯,對該錶就不進行匯入。在後面加上 ignore=y 就可以了。
--將d:\daochu.dmp中的表table1匯入
imp user/pwd@db file=d:\daochu.dmp tables=(table1)
oracle資料匯入匯出
語法 imp userid password 資料庫全域性名 file dmp檔案的目錄 其它引數 獲取幫助,敲入 imp help y import常用的引數 1 file 指定匯入檔名 fromuser 允許匯入指定的使用者擁有的表 full full y時,匯入dmp檔案中所有的事物 igno...
Oracle資料匯入匯出
資料庫的維護過程,難免遇到一些表的備份和恢復工作。為了方便起見,我將這些重複的工作整理成了執行在windows上的批處理,和執行在aix伺服器上的kshell指令碼。指令碼的作業內容就是,指定具體的表集合,分檔案逐表備份和恢復。如果是經常性的指定的固定表的話,可以修改以陣列方式的指令碼。如果是經常改...
oracle 資料匯出匯入
資料庫的匯出匯入 匯出表步驟 1 匯出表結構與資料 2 匯出序列 3 匯出觸發器 4 匯出檢視 匯出表工具 plsql developer 設定環境變數 變數名 nls lang 變數值 american america.zhs16gbk 這裡主要是解決資料庫的字符集問題,根據資料庫的字符集設定,保...