MS SQL Server 另一个触发器之后的触发器

发布于 2024-10-19 16:14:39 字数 70 浏览 2 评论 0原文

我想在 MS SQL Server 中创建触发器,该触发器将在完成另一个触发器后调用。首先调用的触发器是插入触发器。是否可以?

I would like to create trigger in MS SQL Server that would be call after finishing another trigger. This trigger that is called first is insert trigger. Is it possible?

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

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

发布评论

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

评论(2

标点 2024-10-26 16:14:39

是的。

但棘手的部分是跟踪它们的执行顺序。强烈建议使用相同类型的多个触发器仅当它们完全独立时,因此可以按任何顺序执行。对于您的情况,最好在单个触发器中使用多个存储过程调用。以后你会感谢自己的。

有关该主题的更多信息,请参阅 SO 中的上一个问题:
SQL Server 触发器 - 执行顺序

Yes, it is.

But the tricky part is to track the order they are executed. It is strongly advised to use multiple triggers of the same type only if they are fully independent and hence could be executed in any order. In your case, better use multiple stored procedure calls in single trigger. You'll thank yourself later.

For more information on the subject, see previous question in SO:
SQL Server triggers - order of execution

你与昨日 2024-10-26 16:14:39

是的,这是可能的。您最多可以嵌套 32 层触发器。
如果您想要更多嵌套,则可以使用 CTE(大约 100 级嵌套)。

Yes it is possible. You can do nesting of trigger up to 32 level.
If you want more nesting then you can use CTE (about 100 level of nesting).

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