title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sp_mergedummyupdate (Transact-SQL) |
Does a dummy update on the given row so that it sends again during the next merge. |
markingmyname |
maghan |
randolphwest |
11/23/2023 |
sql |
replication |
reference |
|
|
|
[!INCLUDE SQL Server]
Does a dummy update on the given row, so that it sends again during the next merge. This stored procedure can be executed at the Publisher, on the publication database, or at the Subscriber, on the subscription database.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
sp_mergedummyupdate
[ @source_object = ] N'source_object'
, [ @rowguid = ] 'rowguid'
[ ; ]
The name of the source object. @source_object is nvarchar(386), with no default.
The row identifier. @rowguid is uniqueidentifier, with no default.
0
(success) or 1
(failure).
sp_mergedummyupdate
is used in merge replication.
sp_mergedummyupdate
is useful if you write your own alternative to the Replication Conflict Viewer (wzcnflct.exe
).
Only members of the db_owner fixed database role can execute sp_mergedummyupdate
.