該命令在「開始選單》執行》cmd」中執行一、資料匯出(exp.exe)
1、將資料庫orcl完全匯出,使用者名稱system,密碼accp,匯出到d:\daochu.dmp檔案中
exp system/accp@orcl file=d:\daochu.dmp full=y
2、將資料庫orcl中scott使用者的物件匯出
exp scott/accp@orcl file=d:\daochu.dmp owner=(scott)
3、將資料庫orcl中的scott使用者的表emp、dept匯出
exp scott/accp@orcl file= d:\daochu.dmp tables=(emp,dept)
4、將資料庫orcl中的表空間testspace匯出
exp system/accp@orcl file=d:\daochu.dmp tablespaces=(testspace)
二、資料匯入(imp.exe)
1、將d:\daochu.dmp 中的資料匯入 orcl資料庫中。
imp system/accp@orcl file=d:\daochu.dmp full=y
2、如果匯入時,資料表已經存在,將報錯,對該錶不會進行匯入;加上ignore=y即可,表示忽略現有表,在現有表上追加記錄。
imp scott/accp@orcl file=d:\daochu.dmp full=y ignore=y
3、將d:\daochu.dmp中的表emp匯入
imp scott/accp@orcl file=d:\daochu.dmp tables=(emp)
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 這裡主要是解決資料庫的字符集問題,根據資料庫的字符集設定,保...