生產上刪除歸檔的命令

531968912發表於2016-09-14

對於歸檔在ASM中的,使用如下的指令碼


[sql] view plain copy
  1. . /home/oracle/.bash_profile  
  2. /u01/app/oracle/product/11.2.0/db/bin/rman nocatalog log=/home/oracle/del_arch$(date +%Y-%m-%d).log  <<EOF  
  3. connect target /  
  4. crosscheck archivelog all;  
  5. delete noprompt expired archivelog all;  
  6. DELETE noprompt ARCHIVELOG ALL COMPLETED BEFORE 'SYSDATE-7';  
  7. exit;  
  8. EOF  

對於歸檔在本地的,使用如下的命令:



[sql] view plain copy
  1. 0 0,3,6,9,12,15,18,21 * * * /usr/bin/find /u02/archive/storedb  -ctime +5 | xargs rm -f  

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

相關文章