有人可以告诉我这个查询有什么问题吗

发布于 2024-11-15 04:24:08 字数 337 浏览 2 评论 0原文

UPDATE trans_actual SET comment_id = ? 
WHERE id = (SELECT MAX(id) 
            FROM trans_actual 
            WHERE plan_id = ?) 

org.springframework.jdbc.BadSqlGrammarException: 准备语句回调;错误的 SQL 语法 SQLException: ORA-02049: 超时:分布式事务 等待锁定

它在 SQLDeveloper 中工作正常。

UPDATE trans_actual SET comment_id = ? 
WHERE id = (SELECT MAX(id) 
            FROM trans_actual 
            WHERE plan_id = ?) 

org.springframework.jdbc.BadSqlGrammarException:
PreparedStatementCallback; bad SQL
grammar SQLException: ORA-02049:
timeout: distributed transaction
waiting for lock

Its working fine in SQLDeveleloper.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

哥,最终变帅啦 2024-11-22 04:24:08

查询看起来不错。看起来像是事务锁定问题。在这种问题中,只有您可以确定锁在哪里,因为您无法在此处发布整个代码。

此外,您可能还有其他应用程序访问同一数据库。你必须检查事务隔离级别、并发性、整个九码。

您是否搜索过 ORA-02049?它应该给你一些提示。

The query looks fine. It looks like a transaction lock problem. In this kind of problem, only you can determine where the lock is because you cannot post your whole code here.

Also, you might have other apps accessing the same database. You have to check for transaction isolation levels, concurrency, the whole nine yards.

Have you searched for ORA-02049? It should give you some hints.

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