replication

  • I have  transactional replication configured on my environment .  update , insert and delete are doing in publisher . I need to replicate only the update and inserts to the subscriber . How can we do ?

  • This was removed by the editor as SPAM

  • Hi,
    I think  this is not possible. A delete is a transaction, and every transaction is replicated.
    If you would work with log shipping, same procedure, every transaction is  "logshipped".
    Best regards,
    Andreas

  • ramyours2003 - Thursday, March 9, 2017 7:14 AM

    I have  transactional replication configured on my environment .  update , insert and delete are doing in publisher . I need to replicate only the update and inserts to the subscriber . How can we do ?

    Have a look at sp_changearticle.
    I've never altered an article myself - I usually drop and recreate it if it needs such work doing. However, it looks like sp_changearticle with
    @upd_cmd = N'NONE' 
    should do as required.
    As ever, test this somewhere safe first.

  • Thanks for the replies ..

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply