sp_markpendingschemachange (Transact-SQL)
適用於:SQL Server
用來支持合併式發行集,方法是讓系統管理員略過選取的擱置架構變更,使其不會復寫。 這個預存程式會在發行集資料庫的發行者端執行。
警告
此預存程式可能會導致架構變更不復寫。 它應該只用來解決其他方法之後的問題,例如重新初始化、已嘗試或效能太昂貴。
語法
sp_markpendingschemachange
[ @publication = ] N'publication'
[ , [ @schemaversion = ] schemaversion ]
[ , [ @status = ] N'status' ]
[ ; ]
引數
[ @publication = ] N'publication'
發行集的名稱。 @publication為 sysname,沒有預設值。
[ @schemaversion = ] schemaversion
識別擱置的架構變更。 @schemaversion為 int,預設值為 0
。 使用 sp_enumeratependingschemachanges列出發行集的擱置 架構變更。
[ @status = ] N'status'
指定是否略過暫止的架構變更。 @status為 nvarchar(10),預設值為 active
。 如果 @status 的值是 skipped
,則不會復寫選取的架構變更。
傳回碼值
0
(成功) 或 1
(失敗)。
備註
sp_markpendingschemachange
與合併式複寫搭配使用。
sp_markpendingschemachange
是一種預存程式,適用於合併式復寫的支援性,只有在其他更正動作,例如重新初始化、無法更正情況或效能太昂貴時,才應該使用。
權限
只有系統管理員固定伺服器角色或db_owner固定資料庫角色的成員才能執行 sp_markpendingschemachange
。