title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sp_dropsubscription (Transact-SQL) |
Drops subscriptions to an article, publication, or subscriptions on the Publisher. This stored procedure runs at the Publisher on the publication database. |
markingmyname |
maghan |
randolphwest |
11/28/2023 |
sql |
replication |
reference |
|
|
|
[!INCLUDE SQL Server SQL MI]
Drops subscriptions to a particular article, publication, or set of subscriptions on the Publisher. This stored procedure is executed at the Publisher on the publication database.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
sp_dropsubscription
[ [ @publication = ] N'publication' ]
[ , [ @article = ] N'article' ]
, [ @subscriber = ] N'subscriber'
[ , [ @destination_db = ] N'destination_db' ]
[ , [ @ignore_distributor = ] ignore_distributor ]
[ , [ @reserved = ] N'reserved' ]
[ , [ @publisher = ] N'publisher' ]
[ ; ]
The name of the associated publication. @publication is sysname, with a default of NULL
. If all
, all subscriptions for all publications for the specified Subscriber are canceled. publication is a required parameter.
The name of the article. @article is sysname, with a default of NULL
. If all
, subscriptions to all articles for each specified publication and Subscriber are dropped. Use all
for publications that allow immediate updating.
The name of the Subscriber that will have its subscriptions dropped. @subscriber is sysname, with no default. If all
, all subscriptions for all Subscribers are dropped.
The name of the destination database. @destination_db is sysname, with a default of NULL
. If NULL
, all the subscriptions from that Subscriber are dropped.
[!INCLUDE ssinternalonly-md]
[!INCLUDE ssinternalonly-md]
[!INCLUDE ssinternalonly-md]
0
(success) or 1
(failure).
sp_dropsubscription
is used in snapshot and transactional replication.
If you drop the subscription on an article in an immediate-sync publication, you can't add it back unless you drop the subscriptions on all the articles in the publication and add them all back at once.
:::code language="sql" source="../replication/codesnippet/tsql/sp-dropsubscription-tran_1.sql":::
Only members of the sysadmin fixed server role, the db_owner fixed database role, or the user that created the subscription can execute sp_dropsubscription
.