有人可以告诉我这个查询有什么问题吗
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查询看起来不错。看起来像是事务锁定问题。在这种问题中,只有您可以确定锁在哪里,因为您无法在此处发布整个代码。
此外,您可能还有其他应用程序访问同一数据库。你必须检查事务隔离级别、并发性、整个九码。
您是否搜索过 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.