sp_helpmergedeleteconflictrows (Transact-SQL)
Returns information on data rows that lost delete conflicts. This stored procedure is executed at the Publisher on the publication database or at the Subscriber on the subscription database when decentralized conflict logging is used.
|
Column name |
Data type |
Description |
|---|---|---|
|
source_object |
nvarchar(386) |
Source object for the delete conflict. |
|
rowguid |
uniqueidentifier |
Row identifier for the delete conflict. |
|
conflict_type |
int |
Code indicating type of conflict: 1 = UpdateConflict: Conflict is detected at the row level. 2 = ColumnUpdateConflict: Conflict detected at the column level. 3 = UpdateDeleteWinsConflict: Delete wins the conflict. 4 = UpdateWinsDeleteConflict: The deleted rowguid that loses the conflict is recorded in this table. 5 = UploadInsertFailed: Insert from Subscriber could not be applied at the Publisher. 6 = DownloadInsertFailed: Insert from Publisher could not be applied at the Subscriber. 7 = UploadDeleteFailed: Delete at Subscriber could not be uploaded to the Publisher. 8 = DownloadDeleteFailed: Delete at Publisher could not be downloaded to the Subscriber. 9 = UploadUpdateFailed: Update at Subscriber could not be applied at the Publisher. 10 = DownloadUpdateFailed: Update at Publisher could not be applied to the Subscriber. |
|
reason_code |
Int |
Error code that can be context-sensitive. |
|
reason_text |
varchar(720) |
Error description that can be context-sensitive. |
|
origin_datasource |
varchar(255) |
Origin of the conflict. |
|
pubid |
uniqueidentifier |
Publication identifier. |
|
MSrepl_create_time |
datetime |
Time the conflict information was added. |