ORA-12012: 自动执行作业 1161 时出错
这是我的代码。
update netz98.order_data
set usergroup = 'DISTR'
where
modelcode||optcode||interiortrimcode in ('CW1WXJXFZLAA6016E','CW7WXMXFZLAA6014E')
and committed = 0
;
commit;
Here is my code.
update netz98.order_data
set usergroup = 'DISTR'
where
modelcode||optcode||interiortrimcode in ('CW1WXJXFZLAA6016E','CW7WXMXFZLAA6014E')
and committed = 0
;
commit;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ORA-12012 后面始终跟着导致失败的错误代码/描述列表。您必须做的是检查日志文件,通过 12012 本身旁边的错误,您将了解发生了什么情况。
该错误不一定与作业正在运行的句子相关,因此提供的代码不一定能说明原因,如引用的文档所述:
重点是我的。
ORA-12012 is always followed by a list of error codes/descriptions causing the failure. What you must do is to check your log files and by the errors next to the 12012 itself you will realize what's going on.
The error is not necessarily related with the sentences the JOB is running, so the provided code not necessarily tell the cause, as stated by the referenced documentation:
Emphasis is mine.