Oracle 11g 自動刪除ASM歸檔檔案指令碼
[root@wsjrac01 ~]# cat /u01/run/autodel
#!/bin/bash
find /u01/product/grid/crs/diag/asm/+asm/+ASM1/trace/*.trc -mtime +2 -exec rm -f {} \;
find /u01/product/grid/crs/diag/asm/+asm/+ASM1/trace/*.trm -mtime +2 -exec rm -f {} \;
find /u01/product/oracle/diag/rdbms/wsjdell/wsjdell1/trace/*.trc -mtime +2 -exec rm -f {} \;
find /u01/product/oracle/diag/rdbms/wsjdell/wsjdell1/trace/*.trm -mtime +2 -exec rm -f {} \;
find /u01/product/oracle/admin/wsjdell/adump/*.aud -mtime +1 -exec rm -f {} \;
[root@wsjrac01 ~]# su - grid
wsjrac01$
wsjrac01$crontab -l
30 23 * * * sh /u01/run/del_arch_5.sh 1>>/u01/run/log/del_arch_5.log 2>>/u01/run/log/del_arch_5.bad
wsjrac01$cat /u01/run/del_arch_5.sh
#!/bin/bash
export ORACLE_HOME=/u01/product/grid/11.2.0
export ORACLE_SID=+ASM1
dirname=`date -d "5 days ago" +%Y_%m_%d`
/u01/product/grid/11.2.0/bin/asmcmd <
cd wsjdell/
cd ARCHIVELOG/
ls -l
rm -rf $dirname
ls -l
exit
EOF
wsjrac01$
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-712870/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 指令碼定期自動刪除ASM下的歸檔檔案指令碼ASM
- 定期刪除歸檔檔案的指令碼指令碼
- ORACLE NBU調取oracle rman指令碼備份歸檔不自動刪除歸檔Oracle指令碼
- 【轉載】Oracle Data Guard 備庫 歸檔檔案 刪除指令碼Oracle指令碼
- oracle dataguard 自動刪除歸檔日誌Oracle
- Oracle DG standby刪除歸檔的判斷指令碼Oracle指令碼
- ORACLE刪除歸檔Oracle
- 自動刪除歸檔日誌的指令碼(尤其是dataguard環境)指令碼
- 定時刪除檔案指令碼指令碼
- 強制刪除歸檔檔案
- 刪除歸檔日誌檔案
- crontab不能自動刪除歸檔日誌
- 如何定期自動刪除歸檔日誌
- ASM 中使用RMAN delete archivelog until time刪除歸檔檔案ASMdeleteHive
- 如何正確刪除ORACLE歸檔日誌檔案Oracle
- Oracle Data Guard 主庫歸檔檔案刪除策略Oracle
- Oracle Data Guard 主庫 歸檔檔案 刪除策略Oracle
- 11g主庫歸檔自動刪除的小問題分析
- windows下自動刪除過期檔案的指令碼Windows指令碼
- 使用RMAN安全刪除歸檔檔案
- oracle刪除歸檔日誌Oracle
- Oracle歸檔日誌刪除Oracle
- Oracle Data Guard 主庫 歸檔檔案 刪除策略--續Oracle
- DG歸檔自動刪除 & _log_deletion_policy
- DATAGUARD_standby刪除歸檔日誌的指令碼指令碼
- RAC 節點2刪除自己的歸檔指令碼指令碼
- 利用sqlplus指令碼刪除備庫歸檔SQL指令碼
- DataGuard已應用歸檔日誌刪除指令碼指令碼
- 刪除歸檔
- oracle rman不能自動刪除歸檔日誌備份解決Oracle
- 【ARCH】留存,Oracle11g之前Dataguard環境刪除歸檔指令碼Oracle指令碼
- 在Oracle中,如何定時刪除歸檔日誌檔案?Oracle
- 【轉載】Oracle Data Guard 主庫 歸檔檔案 刪除策略Oracle
- 手動刪除歸檔日誌
- asm下如何自動刪除standby上已經applied過的歸檔日誌ASMAPP
- 刪除七天以前檔案的指令碼指令碼
- oracle rman 刪除過期的歸檔Oracle
- Oracle 11g Data Guard 備庫歸檔日誌清理指令碼(保留一週歸檔)Oracle指令碼