完全備份的sh檔案:exp_comp.sh
rq=` date +"%m%d" `
su - oracle -c "exp system/manager full=y inctype=complete file=/oracle/export/db_comp$rq.dmp"
累計備份的sh檔案:exp_cumu.sh
rq=` date +"%m%d" `
su - oracle -c "exp system/ manager full=y inctype=cumulative file=/oracle/export/db_cumu$rq.dmp"
增量備份的sh檔案: exp_incr.sh
rq=` date +"%m%d" `
su - oracle -c "exp system/manager full=y inctype=incremental file=/oracle/export/db_incr$rq.dmp"
root使用者crontab檔案
/var/spool/cron/crontabs/root增加以下內容
0 2 1 * * /oracle/exp_comp.sh
30 2 * * 0-5 /oracle/exp_incr.sh
45 2 * * 6 /oracle/exp_cumu.sh
當然這個時間表可以根據不同的需求來改變的,這只是乙個例子。
Oracle 邏輯備份
oracle 資料庫邏輯備份方法 windows系統 通過exp imp 命令實現資料庫備份 可以通過執行cmd.exe 或者通過批處理檔案實現 以下資料庫備份 匯出 1.備份指定使用者的資料庫命令 abms資料庫 exp abms 123 file e abms.dmp owner abms 備份...
Oracle邏輯備份(EXPDP IMPDP)
與物理備份不同,在執行邏輯備份與恢復時,必須在資料庫執行狀態下進行。當資料庫發生故障無法啟動時,不能使用邏輯備份恢復資料庫。建立目錄 使用資料幫浦工具時,其轉儲檔案只能被存放在目錄物件對應的作業系統目錄中,而不能直接指定轉儲檔案所在的作業系統目錄。因此,必須先建立目錄物件,並且需要為資料庫使用者授予...
Oracle的物理備份與邏輯備份
物理備份是將實際組成資料庫的作業系統檔案從一處拷貝到另一處的備份過程,通常是從磁碟到磁帶。可以使用 oracle 的恢復治理器 recovery manager,rman 或作業系統命令進行資料庫的物理備份。邏輯備份是利用sql語言從資料庫中抽取資料並存於二進位制檔案的過程。oracle提供的邏輯備...