Skip to content

Latest commit

 

History

History
62 lines (43 loc) · 1.77 KB

sp-mergedummyupdate-transact-sql.md

File metadata and controls

62 lines (43 loc) · 1.77 KB
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
sp_mergedummyupdate_TSQL
sp_mergedummyupdate
sp_mergedummyupdate
TSQL

sp_mergedummyupdate (Transact-SQL)

[!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

Syntax

sp_mergedummyupdate
    [ @source_object = ] N'source_object'
    , [ @rowguid = ] 'rowguid'
[ ; ]

Arguments

[ @source_object = ] N'source_object'

The name of the source object. @source_object is nvarchar(386), with no default.

[ @rowguid = ] 'rowguid'

The row identifier. @rowguid is uniqueidentifier, with no default.

Return code values

0 (success) or 1 (failure).

Remarks

sp_mergedummyupdate is used in merge replication.

sp_mergedummyupdate is useful if you write your own alternative to the Replication Conflict Viewer (wzcnflct.exe).

Permissions

Only members of the db_owner fixed database role can execute sp_mergedummyupdate.

Related content