sp_dropmergesubscription (Transact-SQL)

適用対象: SQL サーバー

マージ パブリケーションのサブスクリプションおよびこれと関連するマージ エージェントを削除します。 このストアド プロシージャは、パブリッシャー側のパブリケーション データベースで実行されます。

Transact-SQL 構文表記規則

構文

sp_dropmergesubscription
    [ [ @publication = ] N'publication' ]
    [ , [ @subscriber = ] N'subscriber' ]
    [ , [ @subscriber_db = ] N'subscriber_db' ]
    [ , [ @subscription_type = ] N'subscription_type' ]
    [ , [ @ignore_distributor = ] ignore_distributor ]
    [ , [ @reserved = ] reserved ]
[ ; ]

引数

[ @publication = ] N'publication'

パブリケーション名です。 @publicationsysname で、既定値は NULL です。 パブリケーションは既に存在し、 identifiers の規則に準拠している必要があります。

[ @subscriber = ] N'subscriber'

サブスクライバーの名前。 @subscribersysname で、既定値は NULL です。

[ @subscriber_db = ] N'subscriber_db'

サブスクリプション データベースの名前。 @subscriber_dbsysname で、既定値は NULL です。

[ @subscription_type = ] N'subscription_type'

サブスクリプションの種類。 @subscription_typenvarchar(15)であり、これらの値のいずれかを指定できます。

Value 説明
all プッシュ、プル、匿名のサブスクリプション
anonymous 匿名サブスクリプションです。
push プッシュ サブスクリプション。
pull プル サブスクリプションです。
both (既定) プッシュ サブスクリプションおよびプル サブスクリプションです。

[ @ignore_distributor = ] ignore_distributor

ディストリビューターに接続せずにこのストアド プロシージャを実行するかどうかを示します。 @ignore_distributorbit で、既定値は 0 です。 このパラメーターを使用すると、ディストリビューターでクリーンアップ タスクを実行せずにサブスクリプションを削除できます。 ディストリビューターを再インストールする必要がある場合にも便利です。

[ @reserved = ] 予約済み

将来の使用のために予約済み。 @reservedビットで、既定値は 0 です。

リターン コードの値

0 (成功) または 1 (失敗)。

解説

sp_dropmergesubscription はマージ レプリケーションで使用されます。

-- This script uses sqlcmd scripting variables. They are in the form
-- $(MyVariable). For information about how to use scripting variables  
-- on the command line and in SQL Server Management Studio, see the 
-- "Executing Replication Scripts" section in the topic
-- "Programming Replication Using System Stored Procedures".

-- This batch is executed at the Publisher to remove 
-- a pull or push subscription to a merge publication.
DECLARE @publication AS sysname;
DECLARE @subscriber AS sysname;
DECLARE @subscriptionDB AS sysname;
SET @publication = N'AdvWorksSalesOrdersMerge';
SET @subscriber = $(SubServer);
SET @subscriptionDB = N'AdventureWorks2022Replica';

USE [AdventureWorks2022]
EXEC sp_dropmergesubscription 
  @publication = @publication, 
  @subscriber = @subscriber, 
  @subscriber_db = @subscriptionDB;
GO

アクセス許可

sysadmin固定サーバー ロールまたはdb_owner固定データベース ロールのメンバーのみが、sp_dropmergesubscriptionを実行できます。