歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> 關於Linux >> linux shell rman備份文件的腳本

linux shell rman備份文件的腳本

日期:2017/3/3 15:51:39   编辑:關於Linux
rman備份腳本
    
#! /bin/bash
    
su - oracle <<!
    
rman target /<<EOF
    
backup AS COMPRESSED BACKUPSET   database
    
include current controlfile format'/orabak/db_%d_%T_%s'
    
plus archivelog format'/orabak/arch_%d_%T_%s'  delete allinput;
    
delete noprompt obsolete;
    
exit;
    
EOF

第三個備份保存平台自動清理過期的備份文件

#! /bin/bash
    
for file in `ls /orabak`
    
do
    
   if [[ ${file:0:2} == "db" ]];then
    
         fdate=${file:10:8}
    
         mydate=`date +%Y%m%d -d "-7 day"`
    
         if [[ $fdate < $mydate ]];then
    
               rm -rf $file;
    
         else
    
               echo $file;
    
         fi
    
     else
    
         fdate=${file:12:8}
    
        mydate=`date +%Y%m%d -d "-7 day"`
    
         if [[ $fdate < $mydate ]];then
    
               rm -rf $file;
    
         else
    
               echo $file;
    
         fi
    
      fi
    
    
done

本欄目更多精彩內容:http://www.bianceng.cn/OS/Linux/

Copyright © Linux教程網 All Rights Reserved