Tag Archives: CRONTAB

HP Unix上oracle调用crontab报错

Oracle用户的crontab可以运行,但是发现oracle用户无法对其进行修改。 尝试通过crontab –e的方式修改crontab的配置,在保存的时候报错: /app/oracle10g/rman_catalog_dmp> crontab -l 40 14 * * * /app/oracle10g/rman_catalog_dmp/exp_by_date.sh /app/oracle10g/rman_catalog_dmp> crontab -e "/var/tmp/aaaa01943" 1 line, 59 characters 47 14 * * * /app/oracle10g/rman_catalog_dmp/exp_by_date.sh ~ ~ ~ ~ "/var/tmp/aaaa01943" 1 line, 59 characters crontab: can’t create your crontab … Continue reading

Posted in OPERATING SYSTEM | Tagged , , | Leave a comment

CRONTAB调用的备份脚本

EXP备份是DBA常规操作之一,尤其是10g以前的版本没有EXPDP,所有的逻辑备份都是通过EXP来实现。而将EXP写成SHELL脚本,使之可以调用也并没有什么特别之处。不过如果并非oracle用户执行,而是需要CRONTAB自动允许,那么备份的脚本就有一些要求了。 客户环境使用RMAN CATALOG方式备份,而RMAN的CATALOG数据库采用EXP进行逻辑备份。部署了一个每天7点运行的CRONTAB,调用执行EXP的SHELL。巡检时发现这个脚本从未真正运行过。 /app/oracle10g> crontab -l 0 7 * * * /app/oracle10g/rman_catalog_dmp/exp_by_date.sh /app/oracle10g/rman_catalog_dmp> more exp_by_date.sh export ORACLE_SID=RMANDB export ORACLE_BASE=/app/oracle10g export ORACLE_HOME=$ORACLE_BASE/product/10.2.0 export NLS_LANG=American_America.ZHS16CGB231280 EXP parfile=EXP.par file=./rman_catalog.dmp log=./rman_catalog.log/app/oracle10g> crontab -l 0 7 * * * /app/oracle10g/rman_catalog_dmp/exp_by_date.sh /app/oracle10g/rman_catalog_dmp> more exp_by_date.sh export ORACLE_SID=RMANDB … Continue reading

Posted in ORACLE | Tagged , , | 2 Comments