sp_dropmergepullsubscription (Transact-SQL)
卸除合併提取訂閱。這個預存程序執行於訂閱資料庫的訂閱者端。
語法
sp_dropmergepullsubscription [ @publication= ] 'publication'
, [ @publisher= ] 'publisher'
, [ @publisher_db= ] 'publisher_db'
[ , [ @reserved= ] 'reserved' ]
引數
- [ @publication=] 'publication'
這是發行集的名稱。publication 是 sysname,預設值是 NULL。這是必要參數。指定 all 值會移除對於所有發行集的訂閱。
- [ @publisher=] 'publisher'
這是發行者的名稱。publisher 是 sysname,預設值是 NULL。這是必要參數。
- [ @publisher_db=] 'publisher_db'
這是發行者資料庫的名稱。publisher_db 是 sysname,預設值是 NULL。這是必要參數。
- [ @reserved=] 'reserved'
保留供日後使用。reserved 是 bit,預設值是 0。
傳回碼值
0 (成功) 或 1 (失敗)
備註
sp_dropmergepullsubscription 用於合併式複寫中。
sp_dropmergepullsubscription 會卸除這個合併提取訂閱的合併代理程式,不過,合併代理程式並不是在 sp_addmergepullsubscription 中建立的。
權限
只有系統管理員 (sysadmin) 固定伺服器角色的成員,或建立合併提取訂閱的使用者,才能夠執行 sp_dropmergepullsubscription。只有在建立合併提取訂閱的使用者屬於 db_owner 固定資料庫角色時,這個角色才能夠執行 sp_dropmergepullsubscription。
範例
-- 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 Subscriber to remove
-- a merge pull subscription.
DECLARE @publication AS sysname;
DECLARE @publisher AS sysname;
DECLARE @publication_db AS sysname;
SET @publication = N'AdvWorksSalesOrdersMerge';
SET @publisher = $(PubServer);
SET @publication_db = N'AdventureWorks';
USE [AdventureWorksReplica]
EXEC sp_dropmergepullsubscription
@publisher = @publisher,
@publisher_db = @publication_db,
@publication = @publication;
GO
請參閱
參考
sp_addmergepullsubscription (Transact-SQL)
sp_changemergepullsubscription (Transact-SQL)
sp_dropmergesubscription (Transact-SQL)
sp_helpmergepullsubscription (Transact-SQL)
其他資源
How to: Delete a Pull Subscription (Replication Transact-SQL Programming)