title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sp_mergesubscription_cleanup (Transact-SQL) |
Removes metadata, such as triggers and entries, in sysmergesubscriptions and sysmergearticles. |
markingmyname |
maghan |
randolphwest |
08/22/2024 |
sql |
replication |
reference |
|
|
|
[!INCLUDE SQL Server]
Removes metadata, such as triggers and entries, in sysmergesubscriptions
and sysmergearticles
after the specified merge push subscription is removed at the Publisher. This stored procedure is run at the Subscriber on the subscription database.
Note
For a pull subscription, metadata is removed when sp_dropmergepullsubscription is executed.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
sp_mergesubscription_cleanup
[ @publisher = ] N'publisher'
, [ @publisher_db = ] N'publisher_db'
, [ @publication = ] N'publication'
[ ; ]
The name of the Publisher. @publisher is sysname, with no default.
The name of the Publisher database. @publisher_db is sysname, with no default.
The name of the publication. @publication is sysname, with no default.
0
(success) or 1
(failure).
sp_mergesubscription_cleanup
is used in merge replication.
Only members of the sysadmin fixed server role or the db_owner fixed database role can execute sp_mergesubscription_cleanup
.