Guys,
I am setting up the transaction replication for that I have update the identity property to set 'Not for Replication' to Yes by using the following.
EXEC sp_msforeachtable @command1 = '
declare @int int
set @int =object_id("?")
EXEC sys.sp_identitycolumnforreplication @int, 1'
on the same token how can set the triggers to allow replication so that when record is inserted on subscriber database the trigger does not fire.
Any suggestions and inputs would help.
Thanks