Skip to content

Latest commit

 

History

History
71 lines (50 loc) · 2.36 KB

sp-mergesubscription-cleanup-transact-sql.md

File metadata and controls

71 lines (50 loc) · 2.36 KB
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
sp_mergesubscription_cleanup
sp_mergesubscription_cleanup_TSQL
sp_mergesubscription_cleanup
TSQL

sp_mergesubscription_cleanup (Transact-SQL)

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

Syntax

sp_mergesubscription_cleanup
    [ @publisher = ] N'publisher'
    , [ @publisher_db = ] N'publisher_db'
    , [ @publication = ] N'publication'
[ ; ]

Arguments

[ @publisher = ] N'publisher'

The name of the Publisher. @publisher is sysname, with no default.

[ @publisher_db = ] N'publisher_db'

The name of the Publisher database. @publisher_db is sysname, with no default.

[ @publication = ] N'publication'

The name of the publication. @publication is sysname, with no default.

Return code values

0 (success) or 1 (failure).

Remarks

sp_mergesubscription_cleanup is used in merge replication.

Permissions

Only members of the sysadmin fixed server role or the db_owner fixed database role can execute sp_mergesubscription_cleanup.

Related content