Quote: http://j2se.myweb.hinet.net/article/jdbc/002.htm
Export (備份):
開啟命令提示字元,輸入 “exp system/用戶密碼@資料庫名稱” → 詢問陣列緩衝區的大小(值的大小僅會影響備份速度) → 匯出檔案名稱(如:backup1.dmp,預設最後會將檔案匯出在 C 槽底下) → 詢問匯出類型(分為:1.整個資料庫 2.使用者 3.表格) → 接下來選項大部份都可選 “yes”(例如是否要壓縮) → 自動開始備份Import (回復):
開啟命令提示字元,輸入 “imp system/用戶密碼@資料庫名稱” → 詢問從哪個檔案回復 → 詢問陣列緩衝區的大小 → 詢問「是否僅列出匯入檔案的內容」(若選擇 “no”,會逐步詢問以下的相關資料,否則會跳過一些步驟) → 告知「物件已存在,建立物件的錯誤被略過不予以處理」(預設值為 “no”,則系統碰到錯誤就會顯示錯誤訊息) → 詢問「是否匯入整個匯出檔」(若選 “yes” 則會將原先所有 Export 的資料全部匯入;若選 “no” 則會詢問是要匯入哪位 User 的 Schema、哪一個 Table) → 自動開始回復
ref: http://www.gbunix.com/htmldata/2005_01/2/5/article_1022_1.html
ref: http://fanqiang.chinaunix.net/a2/b2/20010416/102611_b.html
ref: http://www.xxlinux.com/linux/article/development/database/20060620/1583.html
- 完全(Complete Export)
exp system/manager inctype=complete file=full.dmp - 增量(Incremental Export)
exp system/manager inctype=incremental file=inc.dmp - 累積(Cumulate Export)
exp system/manager inctype=cumulative file=cum.dmp
留言