I'm designing a CRM for a company with 3 branches. the connection between these 3 branches is not reliable (with a vpn over internet). so we decided to setup a local server with SqlServer Database in each one and configure these DBs in the way that whenever a client inserted data into any of these DBs it automatically insert it into other ones. How could I do this? and my programming language is C# if it would help!

有帮助吗?

解决方案

You could use SQL Server replication, more specifically Merge Replication

See http://technet.microsoft.com/en-us/library/ms152746.aspx

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top