could you please suggest me the way I could automatically resolve primary key conflicts during a merge between Publisher and Subscriber. It seems Sql Server doesn\'t do it out o
Have you tried WHEN MATCHED THEN and WHEN NOT MATCHED BY TARGET THEN to do an UPSERT (conditional UPDATE or INSERT)?
WHEN MATCHED THEN
WHEN NOT MATCHED BY TARGET THEN
Documentation can be found here.
I'm assuming the primary key represents the same item in both DBs.