Home > Database > Mysql Tutorial > crontab里无法执行expdp

crontab里无法执行expdp

WBOY
Release: 2016-06-07 16:04:54
Original
1469 people have browsed it

编辑个脚本 xxx.sh #!/bin/sh 手工可以执行OK,满以为都OK 结果放进了CRONTAB里 第二天却没有执行,被叼毛叼了几句! 原因可能有: 1 环境问题 最好来个 source ~/.bash_profile 2 路径问题 那好 我们来个绝对路径 3 SH问题 EXPDP不执行SH变量 dumpfile=$filenam

编辑个脚本 xxx.sh

#!/bin/sh

手工可以执行OK,满以为都OK 结果放进了CRONTAB里 第二天却没有执行,被叼毛叼了几句!

原因可能有:

1 环境问题 最好来个 source ~/.bash_profile

2 路径问题 那好 我们来个绝对路径

3 SH问题 EXPDP不执行SH变量 dumpfile=$filename,办法有 dumpfile=xxxooo.dmp ...... mv xxxooo.dmp $filename

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template