How to migrate data from SQL Server database to another over internet

209 Views Asked by At

I have two databases in SQL Server 2016 Express, one on the server and the other is local. I want to sync data from the local to the server database every day, one way.

I could not use replication or log shipping because SQL Server edition is Express. I found the MS Sync framework could help but it is too old.

What is the latest technology for doing that?

2

There are 2 best solutions below

0
Vitor Tomaz On

Azure SQL Data Sync feature may be a very easy solution for your goal. Take a look at https://learn.microsoft.com/en-us/azure/sql-database/sql-database-sync-data

0
Travis On

If you want the data synched not once per day but simultaneously, you could have a look at Microsoft Sync Framework 2.1. https://www.microsoft.com/de-ch/download/details.aspx?id=23217

I've used it over a custom WCF service, but I think you can use it directly with db connections.