场景:机器1:PC1 数据表:table1
机器2:PC2 数据表:table1
其中PC1 与PC2的数据表是一样的
需要做的就是PC1与PC2数据的同步,当PC2的table1表的是YN字段为1和3的时候就向PC1添加YN=1,YN=3的数据,需要用到触发器,请问该怎么做。。。
触发器小涉及到增删改触发器,你是想在新增数据的时候还是修改数据的时候
你这里需要建立远程连接,然后
这是新增
insert [pc1的IP].dbo.[table1](yn) select * from inserted where id in (select id from inserted where yn in(1,3))
这是修改
insert [pc1的IP].dbo.[table1](yn) select * from deleted where id in (select id from deleted where yn in(1,3))