Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.92 KB

File metadata and controls

33 lines (26 loc) · 1.92 KB
title Bulk-Load Data into Tables in a Merge Publication
description Bulk-Load Data into Tables in a Merge Publication
author MashaMSFT
ms.author mathoma
ms.date 09/25/2024
ms.service sql
ms.subservice replication
ms.topic how-to
ms.custom
updatefrequency5
helpviewer_keywords
bulk load [SQL Server replication]
merge replication bulk loading [SQL Server replication]
sp_addtabletocontents
dev_langs
TSQL

Bulk-Load Data into Tables in a Merge Publication

[!INCLUDE SQL Server] When data is loaded into tables using the bcp Utility or the BULK INSERT command, by default, the merge replication triggers that maintain tracking data in the MSmerge_contents system table are not fired. You can either force the merge replication triggers to fire as the data is loaded, or you can insert the generated replication metadata programmatically after the bulk copy operation using replication stored procedures.

To bulk-load data into tables published by merge replication using the bcp utility

  1. At either the Publisher or Subscriber, execute the bcp Utility or BULK INSERT to insert data into a table published using merge replication.

  2. Use one of the following methods to ensure that replication metadata is generated for the inserted data.

    • Execute the bulk copy using the FIRE_TRIGGERS option.

    • On the database into which data was inserted, execute sp_addtabletocontents (Transact-SQL). Specify the table name into which the data was inserted for @table_name.