vote up 0 vote down star

Is there a way to replicate a sql server database but not push out deletes to the subscribers?

flag

40% accept rate
Did you try my suggestion(s)? – Eric Jun 12 at 16:45
And what, pray tell, should happen if a delete a row from a table and then re-insert with the same key but some of the other data fields different? – joe Jun 12 at 17:16

2 Answers

vote up 0 vote down

You don't mention which version of SQL Server you're running, but Andy Warren wrote an article on configuring INSERT, UPDATE, and DELETE behaviour in SQL Server 2005. You can configure this through the GUI, using his instructions:

http://www.sqlservercentral.com/articles/Replication/3202/

link|flag
We are using Sql Server 2005 – suedeuno Jun 12 at 16:42
Great - I've retagged the question. Did you check Andy's article? – Aaron Alton Jun 12 at 16:43
vote up 0 vote down

Do this....Drop the article. Create a new storedprocedure in the corresponding database that mimicks the system store procedure (sp_del...) and contains the same parameter but does nothing. Add the article again...and set the delete store procedure under the article's properties to the new delete stored procedure that you created....

Or you can select Do not replicate Delete Statements....I think that works but i haven't tried it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.