1.相关sh文件没有x权限
2.相关sh文件中,不包含如下的信息:
[oracle@leiredhat u01]$ cat job.sh
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=/u01/app/oracle/oracle/product/10.2.0/db_1
PATH=/u01/app/oracle/oracle/product/10.2.0/db_1/bin:$PATH
export PATH
export ORACLE_SID=leifs
/u01/app/oracle/oracle/product/10.2.0/db_1/bin/sqlplus system/aaaaaa @/u01/job.sql >> /u01/log_job.log
注意:
1.要求3个环境变量都要出现:ORACLE_BASE,ORACLE_HOME,ORACLE_SID
2.要求使用绝对路径,不要使用相对路径或者环境变量做代替。
[@more@]l