Inserts references into the merge tracking tables for any rows in a source table that are not currently included in the tracking tables.
sp_addtabletocontents [@table_name =] 'table_name'
[,[@owner_name =] 'owner_name']
0 (success) or 1 (failure)
sp_addtabletocontents is used only in merge replication.
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. The stored procedure initiates tracking of the rows that were copied and ensures that the new rows will be included in the next synchronization.
Only members of the sysadmin fixed server role or db_owner fixed database role can execute sp_addtabletocontents.
Adding Rows Using Bulk Copy Operations | System Stored Procedures |