title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sp_reinitmergesubscription (Transact-SQL) |
Marks a merge 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 subscription for reinitialization the next time the Merge Agent runs. This stored procedure is executed at the Publisher in the publication database.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
sp_reinitmergesubscription
[ [ @publication = ] N'publication' ]
[ , [ @subscriber = ] N'subscriber' ]
[ , [ @subscriber_db = ] N'subscriber_db' ]
[ , [ @upload_first = ] N'upload_first' ]
[ ; ]
The name of the publication. @publication is sysname, with a default of all
.
The name of the Subscriber. @subscriber is sysname, with a default of all
.
The name of the Subscriber database. @subscriber_db 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_reinitmergesubscription
is used in merge replication.
sp_reinitmergesubscription
can be called from the Publisher to reinitialize merge subscriptions. You should rerun the Snapshot Agent as well.
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-reinitmergesubscripti_1.sql":::
:::code language="sql" source="../replication/codesnippet/tsql/sp-reinitmergesubscripti_2.sql":::
Only members of the sysadmin fixed server role or the db_owner fixed database role can execute sp_reinitmergesubscription
.