oracle資料庫的匯出:
1.匯出使用者(ytpms)的表(gs_gsitem_list)
exp userid=ytpms/ytpms@orcl file=f:\sdf.dmp tables=(gs_gsitem_list)
2.匯出使用者(ytpms)的方案
exp userid=ytpms/ytpms@orcl file=f:\sdf.dmp owner=(ytpms)
如果想匯出其他使用者的表和方案,一般需要用system or sys身份,或者具有匯出其他使用者表的許可權的使用者。
3.匯出資料庫。一般只有system或sys才有許可權操作。
exp userid=ytpms/ytpms@orcl file=f:\sdf.dmp full=y
oracle資料庫的匯入:
1.匯入使用者(ytpms)的表(gs_gsitem_list)
imp userid=ytpms/ytpms@orcl file=f:\sdf.dmp(直接匯入)
為了防止匯入資料庫中已經存在的表提示有異常,可以
imp userid=ytpms/ytpms@orcl file=f:\sdf.dmp full=y ignore=y
如果想從dmp備份檔案中匯入資料庫表的話,可以
imp userid=ytpms/ytpms@orcl file=f:\sdf.dmp tables=(tablename1,tablename2,...)
使用system使用者將ytpms使用者的匯出dmp檔案匯入到xiaoming使用者下:
imp userid=system/liwei123@orcl file=f:\cc\cc.dmp (tables/full=y/fromuser) fromuser ytpms touser xiaoming ignore=y
注意在此種情況下,只能選擇一種匯入規則,tables or fromuser ... touser or
full=y
另外匯入海量資料時,可以參考:expdp and impdp命令。
Oracle的匯出和匯入
資料匯出 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 exp system manager test file d daochu.dmp full y 2 將資料庫中system使用者與sys使用者的表匯出 exp system man...
Oracle的匯入和匯出
1.oracle資料的整庫的匯出和匯入 1.整庫的匯入匯出 exp system oracle file file name full y 指定備份檔案名稱。匯入 imp system oracle full y 如果指定file引數,則按照file制定的備份檔案進行恢復 imp system or...
Oracle 資料匯出和匯入
可能我的部落格裡面其他的文件,框架知識,技術實現你都看不上眼,但是這個估計你會需要。oracle 資料cmd匯出和匯入 匯出的方式 imp 匯入資料庫 1.直接匯入資料表 imp username passwork orcl file d aa.dmp eg imp 使用者名稱 密碼 orcl fi...