Tell me more ×
Database Administrators Stack Exchange is a question and answer site for database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.

Hi I'm looking for an alternative of merge replication that work without internet connection, something like red gate sql data compare but not in uniq direction.

share|improve this question

3 Answers

Sync Framework is designed explicitly to synchronize occasionally connected data sets.

share|improve this answer

You will need to do something like utilize Change Data Capture but you will need to roll your own sql statements.

I'm confused why Merge Replication won't work for you here. If you set the retention period high enough, it can go disconnected and pick up where it left off once connected again.

share|improve this answer

You can setup the merge replication to work with your network disconnects. To get the functionality of the data compare, try using Interactive Conflict Resolution. This way you can determine the outcome of your conflicts.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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