清除oracle归档日志文件
时间:2010-06-20 来源:ccjsj1
#!/bin/sh
#用于当前目录下都是文件的
#find /opt/oracle/archive -ctime +10 -exec rm -f {} \; #用于当前目录下都是文件夹的
# find /opt/oracle/archive -maxdepth 1 -type d -ctime +10 | awk '{if($0=="./") next;else print}' | xargs -n 1 -I {} rm -rf {} rman << EOF
connect target /;
crosscheck archivelog all;
delete expired archivelog all;
yes
EOF
#find /opt/oracle/archive -ctime +10 -exec rm -f {} \; #用于当前目录下都是文件夹的
# find /opt/oracle/archive -maxdepth 1 -type d -ctime +10 | awk '{if($0=="./") next;else print}' | xargs -n 1 -I {} rm -rf {} rman << EOF
connect target /;
crosscheck archivelog all;
delete expired archivelog all;
yes
EOF
相关阅读 更多 +