sp_articlefilter (Transact-SQL)
適用於:SQL Server Azure SQL 受控執行個體
篩選以數據表發行項為基礎的數據。 這個預存程式會在發行集資料庫的發行者端執行。
語法
sp_articlefilter
[ @publication = ] N'publication'
, [ @article = ] N'article'
[ , [ @filter_name = ] N'filter_name' ]
[ , [ @filter_clause = ] N'filter_clause' ]
[ , [ @force_invalidate_snapshot = ] force_invalidate_snapshot ]
[ , [ @force_reinit_subscription = ] force_reinit_subscription ]
[ , [ @publisher = ] N'publisher' ]
[ ; ]
引數
[ @publication = ] N'publication'
包含發行項的發行集名稱。 @publication為 sysname,沒有預設值。
[ @article = ] N'article'
發行項的名稱。 @article為 sysname,沒有預設值。
[ @filter_name = ] N'filter_name'
要從 @filter_name建立之篩選預存程序的名稱。 @filter_name為 nvarchar(517),預設值為 NULL
。 您必須指定發行項目篩選的唯一名稱。
[ @filter_clause = ] N'filter_clause'
定義水平篩選的限制 (WHERE
) 子句。 輸入限制子句時,請省略 關鍵詞 WHERE
。 @filter_clause為 nvarchar(max),預設值為 NULL
。
[ @force_invalidate_snapshot = ] force_invalidate_snapshot
確認此預存程式所採取的動作可能會使現有的快照集失效。 @force_invalidate_snapshot為 bit,預設值為 0
。
0
指定發行項的變更不會造成快照集無效。 如果預存程式偵測到變更確實需要新的快照集,就會發生錯誤,而且不會進行任何變更。1
會指定發行項的變更可能會導致快照集無效,而且如果有現有的訂用帳戶需要新的快照集,則提供現有快照集標示為過時和產生新快照集的許可權。
[ @force_reinit_subscription = ] force_reinit_subscription
確認此預存程式所採取的動作可能需要重新初始化現有的訂用帳戶。 @force_reinit_subscription為 bit,預設值為 0
。
0
指定發行項的變更不會導致重新初始化訂閱的需求。 如果預存程式偵測到變更需要重新初始化訂閱,就會發生錯誤,而且不會進行任何變更。1
指定變更發行項會導致現有的訂閱重新初始化,並授與重新初始化訂閱的許可權。
[ @publisher = ] N'publisher'
指定非 SQL Server 發行者。 @publisher為 sysname,預設值為 NULL
。
@publisher不應該與 SQL Server 發行者搭配使用。
傳回碼值
0
(成功) 或 1
(失敗)。
備註
sp_articlefilter
用於快照式複寫和事務複製。
針對具有現有訂用帳戶的發行項執行 sp_articlefilter
,需要重新初始化這些訂用帳戶。
sp_articlefilter
會建立篩選,在 sysarticles 數據表的數據行中filter
插入篩選預存程式的標識碼,然後在數據行中插入限制子句的filter_clause
文字。
若要建立具有水準篩選條件的發行項,請執行不含 @filter_name 參數sp_addarticle。 執行 sp_articlefilter
,提供包括@filter_clause在內的所有參數,然後執行sp_articleview,並提供所有參數,包括相同的@filter_clause。 如果篩選已經存在,而且 type
如果中的 sysarticles
為 1
(記錄式發行項),則會刪除先前的篩選,並建立新的篩選。
如果未 提供@filter_name 和 @filter_clause ,則會刪除先前的篩選,並將篩選識別碼設定為 0
。
範例
DECLARE @publication AS sysname;
DECLARE @table AS sysname;
DECLARE @filterclause AS nvarchar(500);
DECLARE @filtername AS nvarchar(386);
DECLARE @schemaowner AS sysname;
SET @publication = N'AdvWorksProductTran';
SET @table = N'Product';
SET @filterclause = N'[DiscontinuedDate] IS NULL';
SET @filtername = N'filter_out_discontinued';
SET @schemaowner = N'Production';
-- Add a horizontally and vertically filtered article for the Product table.
-- Manually set @schema_option to ensure that the Production schema
-- is generated at the Subscriber (0x8000000).
EXEC sp_addarticle
@publication = @publication,
@article = @table,
@source_object = @table,
@source_owner = @schemaowner,
@schema_option = 0x80030F3,
@vertical_partition = N'true',
@type = N'logbased',
@filter_clause = @filterclause;
-- (Optional) Manually call the stored procedure to create the
-- horizontal filtering stored procedure. Since the type is
-- 'logbased', this stored procedures is executed automatically.
EXEC sp_articlefilter
@publication = @publication,
@article = @table,
@filter_clause = @filterclause,
@filter_name = @filtername;
-- Add all columns to the article.
EXEC sp_articlecolumn
@publication = @publication,
@article = @table;
-- Remove the DaysToManufacture column from the article
EXEC sp_articlecolumn
@publication = @publication,
@article = @table,
@column = N'DaysToManufacture',
@operation = N'drop';
-- (Optional) Manually call the stored procedure to create the
-- vertical filtering view. Since the type is 'logbased',
-- this stored procedures is executed automatically.
EXEC sp_articleview
@publication = @publication,
@article = @table,
@filter_clause = @filterclause;
GO
權限
只有系統管理員固定伺服器角色或db_owner固定資料庫角色的成員才能執行 sp_articlefilter
。