Skip to content

Latest commit

 

History

History
64 lines (47 loc) · 2.87 KB

File metadata and controls

64 lines (47 loc) · 2.87 KB
title sp_dropmergealternatepublisher (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/03/2017
ms.prod sql
ms.prod_service database-engine
ms.reviewer
ms.technology replication
ms.topic language-reference
f1_keywords
sp_dropmergealternatepublisher
sp_dropmergealternatepublisher_TSQL
helpviewer_keywords
sp_dropmergealternatepublisher
ms.assetid a7dee4e2-2a60-41da-9d1d-6f991d7e2c5e
author stevestein
ms.author sstein

sp_dropmergealternatepublisher (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]

Removes an alternate Publisher from a merge publication. This stored procedure is executed at the Subscriber on the subscription database.

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
sp_dropmergealaternatepublisher [ @publisher = ] 'publisher'    , [ @publisher_db = ] 'publisher_db'    , [ @publication = ] 'publication'    , [ @alternate_publisher = ] 'alternate_publisher'    , [ @alternate_publisher_db = ] 'alternate_publisher_db'    , [ @alternate_publication = ] 'alternate_publication'  

Arguments

[ @publisher = ] 'publisher' Is the name of the current Publisher. publisheris sysname, with no default.

[ @publisher_db = ] 'publisher_db' Is the name of the current publication database. publisher_dbis sysname, with no default.

[ @publication = ] 'publication' Is the name of the current publication. publication is sysname, with no default.

[ @alternate_publisher = ] 'alternate_publisher' Is the name of the alternate Publisher to drop as the alternate synchronization partner. alternate_publisheris sysname, with no default.

[ @alternate_publisher_db = ] 'alternate_publisher_db' Is the name of the publication database to drop as the alternate synchronization partner publication database. alternate_publisher_dbis sysname, with no default.

[ @alternate_publication = ] 'alternate_publication' Is the name of the publication to drop as the alternate synchronization partner publication. alternate_publicationis sysname, with no default.

Return Code Values

0 (success) or 1 (failure)

Remarks

sp_dropmergealternatepublisher is used in merge replication.

Permissions

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

See Also

sp_addmergealternatepublisher (Transact-SQL)