定期删除ORACLE归档脚本

export ORACLE_SID=SID  
#按实际情况指定SID  
$ORACLE_HOME/bin/rman <<EOF  
connect target /  
crosscheck archivelog all;  
delete force noprompt archivelog until time 'sysdate-2';  
#按需求执定时间,现在是两天以后。  
exit;  
EOF


你可能感兴趣的:(定期删除ORACLE归档脚本)