SQL Server 触发器和复制
我有一个更新插入另一个表的表的触发器。该另一表仅存在于一个位置(该表未复制)。如果我将触发器设置为不用于复制,当复制的数据通过触发器进入表时,我的更新触发器是否仍会触发?这样我就可以将触发器及其插入的表仅放在一个位置。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不:这是不可复制的要点。来自MSDN
这里的关键是“复制代理”:这是使触发器不触发的过程
No: this is the point of NOT FOR REPLICATION. From MSDN
The key here is "replication agent": this is the process that makes the trigger not fire