文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>清除oracle归档日志文件

清除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
相关阅读 更多 +
排行榜 更多 +
Unity Connect

Unity Connect

学习教育 下载
青橙记录本

青橙记录本

商务办公 下载
脑洞惊魂夜

脑洞惊魂夜

休闲益智 下载