文档解释 ORA-27354: attribute string cannot be set for lightweight jobs Cause: The CREATE_JOBS call or the JOB object constr
ORA-27354: attribute string cannot be set for lightweight jobs
Cause: The CREATE_JOBS call or the JOB object constructor was called with an argument that is illegal in the case of lightweight jobs.
Action: Set the argument to the default value and issue the call again.
ORA-27354错误是由于尝试为轻量级作业设置字符串属性而引起的。
这是位于$oracle_HOME/rdbms/admin下的常见错误。
当处理轻量级作业时,一般情况下会出现ORA-27354错误。这是因为轻量级作业不支持使用字符串类型的作业属性。要设置轻量级作业属性,必须使用数字或布尔类型。
该错误可能是由于尝试将字符串类型的轻量作业属性设置为NULL而引起的,例如:
BEGIN
DBMS_SCHEDULER.SET_JOB_ATTRIBUTE ( job_name => ‘test_job’, attribute_name => ‘consumer_name’, attribute_value => NULL );
END;
1. 仔细检查赋值语句,核实设置的属性是否是字符串类型。
2. 将字符串类型的作业属性替换为数字或布尔类型。
3. 重新运行赋值语句。
--结束END--
本文标题: ORA-27354: attribute string cannot be set for lightweight jobs ORACLE 报错 故障修复 远程处理
本文链接: https://lsjlt.com/news/540634.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0