Non-Clustered Indexes not copying in Transactional Replication : SQL Server 2008 方法1: You have transactional replication and want to move Non-clustered index from Publisher to Subscriber and set the non-clustered indexes property in the properties of…
结论: (以插入而例) 发布端的数据插入成功 订阅段的数据不会插入 实验 创建一张新表 create table test_subscriber (id int, mark varchar(2),inserttime datetime) 在订阅表上创建触发器 CREATE TRIGGER [dbo].[sf_test] ON [dbo].[t2] AFTER INSERT AS BEGIN SET NOCOUNT ON; insert into test_subscriber select c1…