作者:sylvia | 来源:互联网 | 2023-08-21 16:40
应用场景:
AIX 服务器,DB2 实例用户创建一个export 某张表的shell脚本,设置成定时任务。
结果:shell定时运行,但是DB2命令未执行成功
解决方案:
shell脚本第一行添加 加载实例用户的 profile配置,语句如下:
. /home/实例用户名/sqllib/db2profile
原因:
1)执行DB2 shell,需要加载DB2 profile
2)AIX 下crontab 执行时候并不会主动加载DB2 profile
请到实例用户目录下,查看 .profile
会发现,有类似以下4行代码
#The following three lines have been added by IBM DB2 instance utilities
if [ -f /home/实例用户名/sqllib/db2profile ] ;then
. /home/实例用户名/sqllib/db2profile
fi