views:

421

answers:

1

I have kind of a such scenario:
scenario
Here i need to synchronize local server database with main DB server(example: computers in office are connected to office server and they use it like a local server, so that no sync is required.BUT computers in other office work with their local server too and we need synchronization between the offices though the main DB server.). As i see i cant use SQLCompact here. Is there a provider to do the server-to-server synchronization right from the client? If no can someone provide a sample of solution of how to manage such situation?

+3  A: 

Hi nihi_l_ist,

You should check out Microsoft Sync Framwork 2.0. There are new database sync providers that might support your requirements. As an example, you are able to sync directly between two SQL Server Compact Edition databases.

Scott Munro