创建复制时订阅者中的触发器将被删除
我在发布者数据库中有一个表 A,并且有一个触发器,当表 A 中发生条目时,该触发器将数据插入表 B。我在订阅者数据库中有相同的配置, 即表A、表B 和触发器。 我已经对数据库进行了事务复制,并且在建立复制后,订户数据库中的触发器被删除。 请告诉我创建复制时删除订阅者中的触发器的原因。
I have a table A in publisher database and there is trigger which inserts data into table B when an entry happens in table A. I have the same configuration in subscriber database,
that is Table A, Table B and the trigger. I have done transactional replication for both the DB and after the establishing the replication, trigger in subscriber database is deleted. Please give me the reason why the trigger in subscriber is deleted when the replication is created.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的触发器是使用“NOT FOR REPLICATION”选项创建的吗?
抢
Is your trigger created with the "NOT FOR REPLICATION" option?
Rob