sp_addtabletocontents (Transact-SQL)
Herhangi bir kaynak satırları için s tablo izleme birleştirme başvurusu ekler tablo izleme tablo s şu anda bulunmamaktadır.Toplu büyük miktarda veri kullanarak yüklemeli, bu seçeneği kullanın... Kullanımıbcphangi Tetikleyicileri izleme birleştirme harekete geçmeyecektir. Bu saklı yordam, yayın Veritabanı yayımcısına sırasında yürütülür.
sp_addtabletocontents [ @table_name = ] 'table_name'
[ , [ @owner_name = ] 'owner_name' ]
[ , [ @filter_clause = ] 'filter_clause' ]
Bağımsız değişkenler
[ @table_name=] 'table_name'
Is the name of the table.table_name is sysname, with no default.[ @owner_name=] 'owner_name'
Is the name of the owner of the table.owner_name is sysname, with a default of NULL.[ @filter_clause= ] 'filter_clause'
Specifies a filter clause that controls which rows of the newly-loaded data should be added to the merge tracking tables.filter_clause is nvarchar(4000), with a default value of NULL.If filter_clause olan null, tüm toplu yüklenen bir satır eklenir.
Dönüş Kodu Değerleri
0 (başarılı) veya 1 (hata)
Remarks
sp_addtabletocontents birleştirme çoğaltmasında kullanılır.
The rows in the table_name are referred to by their rowguidcol and the references are added to the merge tracking tables.sp_addtabletocontents should be used after bulk copying data into a table that is published using merge replication.saklı yordam, kopyalanan satırların izleme başlatır ve sonraki eşitlemede yeni satırlar bulunan sağlar.
İzinler
Yalnızca üyeleri sysadmin sabit sunucu rolü veya db_owner sabit veritabanı rolü çalıştırabilirsinizsp_addtabletocontents.
See Also