回覆列表
-
1 # 他就問我愛口袋
-
2 # dadazhu2
當然,用工具匯出是最方便的,要是直接用黑視窗匯出也是很方便的。
這個匯出的話,你可以具體的上網搜搜,本地的就直接匯出就行:
資料匯出:
1 將資料庫TEST完全匯出,使用者名稱system 密碼manager 匯出到D:\daochu.dmp中
exp system/manager@TEST file=d:\daochu.dmp full=y
2 將資料庫中system使用者與sys使用者的表匯出
exp system/manager@TEST file=d:\daochu.dmp owner=(system,sys)
3 將資料庫中的表table1 、table2匯出
exp system/manager@TEST file=d:\daochu.dmp tables=(table1,table2)
4 將資料庫中的表table1中的欄位filed1以"00"打頭的資料匯出
exp system/manager@TEST file=d:\daochu.dmp tables=(table1) query=\" where filed1 like "00%"\"
如果是遠端的話也是可以的:
C:\Documents and Settings\Administrator>exp tmrpt/[email protected]:1521/bocReport file=c:\yuCheng\event_log_realtime.d
mp tables=(event_log_realtime);
EXP 使用者名稱/密碼@服務名 BUFFER=64000 FILE=C:\匯出檔名.DMP OWNER=資料庫使用者 TABLES=(表名)