如何使用 PL/SQL 而不使用 Oracle 队列编写队列基础代码

发布于 2024-12-22 11:25:18 字数 134 浏览 1 评论 0原文

我想编写队列基本代码来处理多线程应用程序的分配线程和进程。我不想使用 Oracle 提供的队列。我有一个表,其中按应用程序的符号排列行。我想编写通用进程来读取该表并通过分配为线程来处理一行。我还想知道如何出队和入队。

任何帮助将不胜感激。

I would like to write queue base code to process assign thread and process for multi threaded application. I don't want to use Oracle provided queue. I have table where it has rows by application's symbol. I would want to write generic process to read this table and process one row by assigning as thread. I would also like to know how to dequeue and enqueue.

Any help would be appreciated.

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

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

发布评论

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

评论(1

魂牵梦绕锁你心扉 2024-12-29 11:25:18

为了有效地完成此操作而不引入序列化问题,您需要使用 Oracle 11g,它在 SELECT FOR UPDATE 语句中引入了 SKIP LOCKED 子句。

然而,正如 Vincent Malgrat 提到的,你正在重新发明轮子 - 这不是一个好主意。

To do it effectively without introducing serialization issues, you'd need to be on Oracle 11g, which introduced the SKIP LOCKED clause to the SELECT FOR UPDATE statement.

However, as Vincent Malgrat mentioned, you're reinventing the wheel - and that's just not a good idea.

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