手工ftp拷貝歸檔及指令碼自動恢復Standby方式

tolywang發表於2009-12-30

在Primary DB上自動刪除歸檔的方式   

mxrac01$cat    autodel   


#!/bin/sh

find    /u01/product/admin/mxdell/bdump/*.trc    -mmin   +1440   -exec   rm  -f  {}  \;

find    /u01/product/admin/mxdell/udump/*.trc    -mmin   +1440   -exec  rm  -f  {}  \;

find     /ocfs_data/mxdell/arch/1_*.arc   -mmin  +720   -exec rm -f {} \;    

 

 

自動crontab 指令碼:

 

mxrac01$crontab   -l
#20 0 * * * sh /u01/run/autoexp 1>/u01/run/log/autoexp.log 2>/u01/run/log/autoexp.bad
0 0 * * 6 sh /u01/run/autoexp2 1>/u01/run/log/autoexp2.log 2>/u01/run/log/autoexp2.bad
10 * * * * sh /u01/run/autodel 1>/u01/run/log/autodel.log 2>/u01/run/log/autodel.bad
30 0 * * * sh /home/oracle/dba/awr 1>/u01/run/log/autoawr.log 2>/u01/run/log/autoawr.bad

 

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-623922/,如需轉載,請註明出處,否則將追究法律責任。

相關文章