The thing is I've two identical databases, one is in my localhostserver at my laptop and the other one is on the office main server. Is there any automatic way or software that can synchronize the data between these 2 identical databases? I'm working with SQL Server 2008 R2.
|
SQL Server Replication can ensure that your data is synchronized. SQLRockstar is correct in saying that you need to determine if policy will allow the data to be stored on your laptop. Questions to think about before moving ahead with replication:
You may want to start off by investigating MERGE replication. |
|||
|
|
There are many ways to accomplish this, and each has its advantages and disadvantages. Before you sync anything you should talk to your DBA first, as there could be policies in place at your company that disallow having data be placed on portable devices such as a laptop. |
|||
|
|
Since you want the server and your laptop to be updated and synced you can look into transactional replication with updating subscribers. This can be loosely looked as a two way replication. |
|||
|
|
