The sp_addarticle stored procedure, used to create publication articles in SQL Server speak, has a parameter @pre_creation_cmd through which dropping the table or truncating data at the target server can be specified for a snapshot. What circumstances are appropriate for each?
The sp_addarticle stored procedure, used to create publication articles in SQL Server speak, has
Share
@pre_creation_cmd accepts one of four values:
DELETE TABLE
TRUNCATE TABLE
DROP TABLE