linux平台的oracle11201借用expdp定时备份数据库-1225

Posted ORACLE-fans

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux平台的oracle11201借用expdp定时备份数据库-1225相关的知识,希望对你有一定的参考价值。

备份脚本如下:

#!/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/[email protected] as sysdba\‘  directory=ora_back  dumpfile=`date +%w`.dmp logfile=`date +%w`.log schemas=xxx,xxx123

crontab任务如下:

[[email protected] scripts]$ crontab -l
* 4 * * 1,4 sh /home/oracle/scripts/expdp.sh ----即 每周1 周4 执行备份脚本

以上是关于linux平台的oracle11201借用expdp定时备份数据库-1225的主要内容,如果未能解决你的问题,请参考以下文章

linux服务器中如何登陆另一台Linux服务器中的Oracle数据库进行全库备份?

Oracle常用导出导出命令及性能效率对比

toolsVersion="11201" 弄乱了我的故事板

oracle pivot 中的列

Linux平台 Oracle 18c RAC安装Part2:GI配置

Linux平台下使用rman进行oracle数据库迁移