SQL Server Replication Action if name is in use questions -
when configuring new merge replication, setting properties of articles, i'm having problem. in destination object -> action if name in use, can select 4 different options. i'm trying figure out each one. i'm not finding it, are:
- keep existing object unchanged
- drop existing object , create new one
- delete data. if article has row filter, delete data matches filter.
- truncate data in existing object
the article property action if name in use correlates @pre_creation_cmd argument of sp_addmergearticle:
specifies system if table exists @ subscriber when applying snapshot. pre_creation_cmd nvarchar(10), , can 1 of following values.
none - if table exists @ subscriber, no action taken.
delete - issues delete based on clause in subset filter.
drop (default) - drops table before re-creating it. required support microsoft sql server compact subscribers.
truncate - truncates destination table.
Comments
Post a Comment