I have a database table,
EquipmentLocations (
EquipmentLocationID int identity(1,1) not null,
EquipmentID int not null,
LocationID int not null,
rowguid uniqueidentifier not null
)
There is a clustered primary key on EquipmentID and LocationID which also prevents adding the same Equipment to the same Location mode than once. This table is replicated, hence rowguid. Two subscribers have each inserted records adding the same EquipmentID to the same LocationID. Obviously, at the time when the inserts were done, there was no problem because the record would have been unique. Now however, the replication is failing because of the conflicts.
- How can I resolve that replication issue, in Conflict Viewer, it fails to submit the winner or loser in some cases.
- What is the best practice/guidance for setting up a scenario such as above in order to avoid the scenario