ORA-04091 - 如何更改触发器触发的表?

发布于 2024-10-05 22:28:26 字数 325 浏览 3 评论 0原文

所以我有表 foo 并且我想在触发器 t_foo 触发时删除其他 foo 行:

CREATE OR REPLACE TRIGGER "t_foo" AFTER INSERT OR DELETE OR UPDATE ON foo

/*delete some other records from foo that are not :NEW.* or :OLD.* \*

我将如何在没有获得ORA-04091: 表名正在发生变化,触发器/函数可能看不到它。这可能吗?

So I have table foo and I would like to delete other foo rows when trigger t_foo fires:

CREATE OR REPLACE TRIGGER "t_foo" AFTER INSERT OR DELETE OR UPDATE ON foo

/*delete some other records from foo that are not :NEW.* or :OLD.* \*

How would I go about doing this without getting a ORA-04091: table name is mutating, trigger/function may not see it. Is this even possible?

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

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

发布评论

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

评论(3

╰沐子 2024-10-12 22:28:26

为什么不在存储过程中执行此操作,您可以在存储过程中将插入和删除包装在事务中,并且可以清楚地记录这种副作用行为?

Why not do this in a stored procedure, where you can wrap the insert and deletes in a transaction, and can clearly document this side-effect behavior?

沫雨熙 2024-10-12 22:28:26

这基本上意味着表中存在相互依赖的行,可能是具有从列到主键的自引用的分层结构。您是否考虑过ON DELETE CASCADE

This basically implies you have interdependent rows in your table, possibly a hierarchical structure with a self-reference from a column to the primary key. Did you think about ON DELETE CASCADE?

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