1
我有兩個數據庫在不同的服務器上,我已經實現了複製以同步兩個數據庫之間的數據。數據更新複製時觸發器不觸發
我在訂閱數據庫上有一些觸發器,當通過複製進行任何更改時,這些觸發器不會觸發。
請爲此建議一個解決方案。
Create TRIGGER [dbo].[Ins_SLab]
ON [dbo].[Slab]
AFTER Insert
AS
BEGIN
Declare @ProductId int
set @ProductId =(select PurchaseProductID from Inserted)
set @ProductId =(select ProductID from dbo.PurchaseProduct where ID = @ProductId)
insert into tblTestTriger values('Hold Product Update',@ProductId)
End
Go
請發佈觸發器的一些代碼。 – 2012-01-17 10:02:23