sp_dropsubscription (Transact-SQL)

删除对发布服务器上的特殊项目、发布或订阅集的订阅。此存储过程在发布服务器的发布数据库中执行。

主题链接图标Transact-SQL 语法约定

语法

sp_dropsubscription [ [ @publication= ] 'publication' ]
    [ , [ @article= ] 'article' ]
        , [ @subscriber= ] 'subscriber'
    [ , [ @destination_db= ] 'destination_db' ]
    [ , [ @ignore_distributor = ] ignore_distributor ]
    [ , [ @reserved= ] 'reserved' ]

参数

  • [ @publication= ] 'publication'
    相关发布的名称。publication 为 sysname,默认值为 NULL。如果为 all,则取消对指定订阅服务器的所有发布的所有订阅。publication 是一个必需的参数。

  • [ @article = ] 'article'
    项目的名称。article 为 sysname,默认值为 NULL。如果为 all,则删除对每个指定发布和订阅服务器的所有项目的订阅。对于允许立即更新的发布,请使用 all

  • [ @subscriber= ] 'subscriber'
    要删除其订阅的订阅服务器名。subscriber 为 sysname,没有默认值。如果为 all,则删除所有订阅服务器的所有订阅。

  • [ @destination_db=] 'destination_db'
    目标数据库的名称。destination_db 为 sysname,默认值为 NULL。如果为 NULL,则删除该订阅服务器中的所有订阅。

  • [ @ignore_distributor = ] ignore_distributor
    标识为仅供参考。 不提供支持。 不保证以后的兼容性。

  • [ @reserved=] 'reserved'
    标识为仅供参考。 不提供支持。 不保证以后的兼容性。

返回代码值

0(成功)或 1(失败)

注释

sp_dropsubscription 用于快照复制和事务复制。

如果删除即时同步发布中的一个项目上的订阅,则不能再对其进行重新添加,除非是删除发布中所有项目上的订阅并同时对它们进行重新添加。

示例

-- 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 transactional publication.
DECLARE @publication AS sysname;
DECLARE @subscriber AS sysname;
SET @publication = N'AdvWorksProductTran';
SET @subscriber = $(SubServer);

USE [AdventureWorks]
EXEC sp_dropsubscription 
  @publication = @publication, 
  @article = N'all',
  @subscriber = @subscriber;
GO

权限

只有 sysadmin 固定服务器角色成员、db_owner 固定数据库角色成员或创建订阅的用户才能执行 sp_dropsubscription