sp_articleview (Transact-SQL)
建立在進行資料表的垂直或水平篩選時,用來定義所發行之發行項的檢視。這份檢視用來作為目的地資料表之結構描述和資料的篩選來源。這個預存程序只能修改未訂閱的發行項。這個預存程序執行於發行集資料庫的發行者端。
語法
sp_articleview [ @publication = ] 'publication'
, [ @article = ] 'article'
[ , [ @view_name = ] 'view_name']
[ , [ @filter_clause = ] 'filter_clause']
[ , [ @change_active = ] change_active ]
[ , [ @force_invalidate_snapshot = ] force_invalidate_snapshot ]
[ , [ @force_reinit_subscription = ] force_reinit_subscription ]
[ , [ @publisher = ] 'publisher' ]
[ , [ @refreshsynctranprocs = ] refreshsynctranprocs ]
[ , [ @internal = ] internal ]
引數
- [ @publication=] 'publication'
這是發行項所在的發行集名稱。publication 是 sysname,沒有預設值。
- [ @article=] 'article'
這是發行項的名稱。article 是 sysname,沒有預設值。
- [ @view_name=] 'view_name'
這是定義所發行之發行項的檢視名稱。view_name 是 nvarchar(386),預設值是 NULL。
- [ @filter_clause=] 'filter_clause'
這是定義水平篩選的限制 (WHERE) 子句。當輸入限制子句時,請省略 WHERE 關鍵字。filter_clause 是 ntext,預設值是 NULL。
- [ @change_active = ] change_active
可讓您修改已有訂閱之發行集的資料行。change_active 是 int,預設值是 0。如果是 0,資料行便不會改變。如果是 1,您可以在含有訂閱的使用中發行項上,建立或重新建立檢視。
[ @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= ] 'publisher'
指定非 Microsoft SQL Server 發行者。publisher 是 sysname,預設值是 NULL。附註: 當從非 SQL Server 發行者發行時,不應使用 publisher。
[ @refreshsynctranprocs = ] refreshsynctranprocs
這是指是否自動重新建立用來同步處理複寫的預存程序。refreshsynctranprocs 是 bit,預設值是 1。1 表示重新建立預存程序。
0 表示不重新建立預存程序。
- [ @internal= ] internal
僅供內部使用。
傳回碼值
0 (成功) 或 1 (失敗)
備註
sp_articleview 會建立用來定義所發行之發行項的檢視,且會將這份檢視的識別碼插入 sysarticles (Transact-SQL) 資料表的 sync_objid 資料行中,將限制子句的文字插入 filter_clause 資料行中。如果複寫所有資料行,但沒有 filter_clause,sysarticles (Transact-SQL) 資料表中的 sync_objid 會設為基底資料表的識別碼,不需要使用 sp_articleview。
若要發行垂直篩選的資料表 (也就是篩選資料行),請先執行不含 sync_object 參數的 sp_addarticle 之後,針對每個要複寫的資料行各執行一次 sp_articlecolumn (Transact-SQL),再執行 sp_articleview 來建立定義所發行之發行項的檢視。
若要發行水平篩選的資料表 (也就是篩選資料列),請執行不含 filter 參數的 sp_addarticle (Transact-SQL)。請提供包括 filter_clause 在內的所有參數來執行 sp_articlefilter (Transact-SQL)。之後,再提供包括相同的 filter_clause 在內的所有參數來執行 sp_articleview。
若要發行水平和垂直篩選的資料表,請執行不含 sync_object 或 filter 參數的 sp_addarticle (Transact-SQL)。針對每個要複寫的資料行各執行一次 sp_articlecolumn (Transact-SQL) 之後,再執行 sp_articlefilter (Transact-SQL) 和 sp_articleview。
如果發行項已有定義所發行之發行項的檢視,sp_articleview 會卸除現有的檢視,再自動建立一份新檢視。如果檢視是手動建立的 (type 中的 sysarticles (Transact-SQL) 是 5),就不會卸除現有的檢視。
如果您以手動方式建立自訂篩選預存程序和定義所發行之發行項的檢視,請勿執行 sp_articleview。相反地,請將它們當作 filter 和 sync_object 參數,搭配適當的 type 值,來提供給 sp_addarticle (Transact-SQL)。
權限
只有系統管理員 (sysadmin) 固定伺服器角色或 db_owner 固定資料庫角色的成員,才能夠執行 sp_articleview。
範例
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
請參閱
參考
sp_addarticle (Transact-SQL)
sp_articlefilter (Transact-SQL)
sp_changearticle (Transact-SQL)
sp_droparticle (Transact-SQL)
sp_helparticle (Transact-SQL)
複寫預存程序 (Transact-SQL)
其他資源
How to: Define an Article (Replication Transact-SQL Programming)
How to: Define and Modify a Static Row Filter (Replication Transact-SQL Programming)