Synchronizing two SQL Server databases using MS Sync Framework
Posted
by Immortal
on Stack Overflow
See other posts from Stack Overflow
or by Immortal
Published on 2010-05-23T04:25:11Z
Indexed on
2010/05/23
4:30 UTC
Read the original article
Hit count: 541
I have one central SQL Server database which can be offline from time to time. I have a desktop application using Local DB Cache (SQL CE) to synchronize with the central database and I also have a web application with its own SQL Server that I'd also would like to keep synchronized. All synchronizations must be bidirectional.
Is there a way to synchronize my central database with web application's database in the same way as I synchronize my central database with desktop client?
I know about collaboration scenarios and peer-to-peer synchronization but I would like to avoid manual provisioning of databases. I'd like to use integrated sql server 2008 change tracking just like in the SQL CE <--> SQL Server scenario.
© Stack Overflow or respective owner