在同一 PL/SQL 查询中选择和更新

发布于 2024-12-22 21:45:07 字数 274 浏览 2 评论 0原文

我有一个 Java 生产者线程,每 n 毫秒从 Oracle 表中提取项目。 当前的实现依赖于 Java 时间戳来检索数据并且不再重新检索它们。

我的目标是摆脱时间戳模式并直接更新我从数据库中提取的相同项目。

有没有办法选择一组项目并同时更新它们以将它们标记为“正在处理”?

如果不是,依赖于 IN 子句的单独 UPDATE 查询是否会对性能造成重大影响? 我尝试使用临时表来实现此目的,但我发现性能受到严重影响。

不知道是否有帮助,但该应用程序正在使用 iBatis。

I have a producer thread in Java pulling items from an Oracle table every n milliseconds.
The current implementation relies on a Java timestamp in order to retrieve data and never re-retrieve them again.

My objective is to get rid of the timestamp pattern and directly update the same items I'm pulling from the database.

Is there a way to SELECT a set of items and UPDATE them at the same time to mark them as "Being processed"?

If not, would a separate UPDATE query relying on the IN clause be a major performance hit?
I tried using a temporary table for that purpose, but I've seen that performance was severely affected.

Don't know if it helps, but the application is using iBatis.

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

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

发布评论

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

评论(1

鲜肉鲜肉永远不皱 2024-12-29 21:45:07

如果您使用的是oracle 10g或更高版本,则可以使用update语句的RETURNING子句。如果您希望检索多行,可以使用 BULK COLLECT 语句。
这是一些示例的链接;
http://psoug.org/snippet/UPDATE-with-RETURNING-clause_604.htm

If you are using oracle 10g or higher, you can use the RETURNING clause of the update statement. If you wish the retrieve more than one row you can use the BULK COLLECT statement.
Here is a link to some examples;
http://psoug.org/snippet/UPDATE-with-RETURNING-clause_604.htm

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