I have two databases, on-premise mydblocal
and azure database mydbazure
.
Both databases may change at anytime and I would like to merge data between them so the azure database can get all last changes(update,delete,create) from local database and the local database must also have all changes from the azure database.
my limitations are that:
- I only have management studio (sql server 2012) on my local server
- I must have only one azure database (because of its cost)
All these tasks are being accomplished using a script that I wrote two years ago but we are planning to do it professionally, ie: using replication.
So Which kind of replication should I set up? how to accomplish this?