ORA-27457: argument string of job “string.string” has no value
Cause: No value was provided for the job argument with the specified position.
Action: Provide a value for the job argument using any of the set_job_xxxx_value() routines. Or, when using a named program, specify a default value for the corresponding argument of the program.
ORA-27457:表示提供了一个job名字,但并未指定参数。
1.确保需要提供的作业参数已正确指定;
2.使用 DBMS_JOB.SUBMIT函数定义作业;
3.确保该作业依赖于其他作业,而不是由参数启动;
4.使用DBMS_JOB.REMOVE函数删除该作业,然后重新提交;
5.检查日志文件以了解有关ORA-27457错误的更多细节;
6.如果所有以上检查都未解决问题,请与数据库系统管理员联系以获得帮助。