sp_deletemergeconflictrow (Transact-SQL)
Satır çakışma tablodan siler veya MSmerge_conflicts_info (Transact-SQL) Tablo. Bu saklı yordam bilgisayarda gerçekleştirildiğinde burada çakışmayı tablo, herhangi bir veritabanında depolanır.
sp_deletemergeconflictrow [ [ @conflict_table = ] 'conflict_table' ]
[ , [ @source_object = ] 'source_object' ]
{ , [ @rowguid = ] 'rowguid'
, [ @origin_datasource = ] 'origin_datasource' ] }
[ , [ @drop_table_if_empty = ] 'drop_table_if_empty' ]
Bağımsız değişkenler
[ @conflict_table=] 'conflict_table'
Is the name of the conflict table.conflict_table is sysname, with a default of %.If the conflict_table is specified as NULL or %, the conflict is assumed to be a delete conflict and the row matching rowguid and origin_datasource and source_object is deleted from the MSmerge_conflicts_info (Transact-SQL) tablo.[ @source_object=] 'source_object'
Is the name of the source table.source_object is nvarchar(386), with a default of NULL.[ @rowguid =] 'rowguid'
Is the row identifier for the delete conflict.rowguid is uniqueidentifier, with no default.[ @origin_datasource=] 'origin_datasource'
Is the origin of the conflict.origin_datasource is varchar(255), with no default.[ @drop_table_if_empty=] 'drop_table_if_empty'
Is a flag indicating that the conflict_table is to be dropped if is empty.drop_table_if_empty is varchar(10), with a default of FALSE.
Dönüş Kodu Değerleri
0 (başarılı) veya 1 (hata)
Remarks
sp_deletemergeconflictrow birleştirme çoğaltmasında kullanılır.
MSmerge_conflicts_info (Transact-SQL) Tablo, bir sistem tablosu ve, boş olsa bile veritabanından silinmez.
İzinler
Yalnızca üyeleri sysadmin sabit sunucu rolü veya db_owner sabit veritabanı rolü çalıştırabilirsinizsp_deletemergeconflictrow.