I'm thinking about what might be the best solution for a synchronization problem.The problem:I have one database called X. It's the source database for my data warehouse, but I can't touch this database (politics, no debate on this one).However, I can get a daily back-up which is restored on another server. Let's call this server A. My data warehouse server is in another network (literally in another country). Let's call this one server B.I need to get the data from server A to server B. The problem is that there's a very slow connection between those two servers. So I can't just copy the back-up. Another problem is that the database on server A is a daily restore of another database, so I can't use AlwaysOn for example.Any ideas?
↧