linux平臺的oracle11201借用expdp定時備份數據庫-1225
阿新 • • 發佈:2017-12-25
body source pro scripts table bsp $path base profile
備份腳本如下:
#!/bin/bash export ORACLE_BASE=/data/oracle export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1 export ORACLE_SID=orcl export PATH=$ORACLE_HOME/bin:/usr/sbin:$PATH source ~/.bash_profile cd /disk01/db_back rm -f `date +%w`.dmp rm -f `date +%w`.log expdp \‘sys/xxxxxx@orcl as sysdba\‘ directory=ora_back dumpfile=`date +%w`.dmp logfile=`date +%w`.log schemas=xxx,xxx123 |
crontab任務如下:
[oracle@ryanoracle scripts]$ crontab -l
* 4 * * 1,4 sh /home/oracle/scripts/expdp.sh ----即 每周1 周4 執行備份腳本
linux平臺的oracle11201借用expdp定時備份數據庫-1225