title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sp_reinitmergepullsubscription (Transact-SQL) |
Marks a merge pull subscription for reinitialization the next time the Merge Agent runs. |
markingmyname |
maghan |
randolphwest |
11/23/2023 |
sql |
replication |
reference |
|
|
|
[!INCLUDE SQL Server]
Marks a merge pull subscription for reinitialization the next time the Merge Agent runs. This stored procedure is executed at the Subscriber in the subscription database.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
sp_reinitmergepullsubscription
[ [ @publisher = ] N'publisher' ]
[ , [ @publisher_db = ] N'publisher_db' ]
[ , [ @publication = ] N'publication' ]
[ , [ @upload_first = ] N'upload_first' ]
[ ; ]
The name of the Publisher. @publisher is sysname, with a default of all
.
The name of the Publisher database. @publisher_db is sysname, with a default of all
.
The name of the publication. @publication is sysname, with a default of all
.
Specifies whether changes at the Subscriber are uploaded before the subscription is reinitialized. @upload_first is nvarchar(5), with a default of false
.
- If
true
, changes are uploaded before the subscription is reinitialized. - If
false
, changes aren't uploaded.
0
(success) or 1
(failure).
sp_reinitmergepullsubscription
is used in merge replication.
If you add, drop, or change a parameterized filter, pending changes at the Subscriber can't be uploaded to the Publisher during reinitialization. If you want to upload pending changes, synchronize all subscriptions before changing the filter.
:::code language="sql" source="../replication/codesnippet/tsql/sp-reinitmergepullsubscr_1.sql":::
:::code language="sql" source="../replication/codesnippet/tsql/sp-reinitmergepullsubscr_2.sql":::
Only members of the sysadmin fixed server role or the db_owner fixed database role can execute sp_reinitmergepullsubscription
.