ORA-12012: 自动执行作业 1161 时出错

发布于 2024-10-17 13:24:37 字数 206 浏览 1 评论 0原文

这是我的代码。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

戴着白色围巾的女孩 2024-10-24 13:24:37

ORA-12012 后面始终跟着导致失败的错误代码/描述列表。您必须做的是检查日志文件,通过 12012 本身旁边的错误,您将了解发生了什么情况。

该错误不一定与作业正在运行的句子相关,因此提供的代码不一定能说明原因,如引用的文档所述:

ORA-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:

ORA-12012: error on auto execute of job string
Cause: An error was caught while doing an automatic execution of a job.
Action: Look at the accompanying errors for details on why the execute failed.

Emphasis is mine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文