SQL Server 触发器和复制

发布于 2024-10-22 03:02:12 字数 116 浏览 3 评论 0原文

我有一个更新插入另一个表的表的触发器。该另一表仅存在于一个位置(该表未复制)。如果我将触发器设置为不用于复制,当复制的数据通过触发器进入表时,我的更新触发器是否仍会触发?这样我就可以将触发器及其插入的表仅放在一个位置。

I have a trigger on update of a table that inserts into another table. This other table only exists in one location (the table is not replicated). If I set the trigger as not for replication, will my update trigger still fire when replicated data comes in to the table with the trigger? That way I can have the trigger and the tables that it inserts into in only one location.

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

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

发布评论

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

评论(1

玩心态 2024-10-29 03:02:13

不:这是不可复制的要点。来自MSDN

  • 触发器

当复制代理执行插入、更新或删除操作时,不会执行触发器。

这里的关键是“复制代理”:这是使触发器触发的过程

No: this is the point of NOT FOR REPLICATION. From MSDN

  • Triggers

The trigger is not executed when a replication agent performs an insert, update, or delete operation.

The key here is "replication agent": this is the process that makes the trigger not fire

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