当数据库之间无法直接连接时如何复制或同步?
我有一个通过互联网的中央网络服务,它从不同的软件获取不同的信息并将它们存储在 Sql server 2008R2 数据库中。
除了Web服务之外,一些Windows应用程序存在于不同的城市,它们都有本地数据库。
现在我想在这些本地数据库和中央数据库之间进行复制。但本地数据库和中央数据库之间没有像“VPN”那样的直接连接。
那么我怎样才能通过互联网在本地数据库和中央数据库之间进行复制或同步呢?
我正在考虑通过网络服务发送本地数据库。你的想法是什么?
我的本地数据库是Sql server 2000版本
I have a central webservice over the internet which gets different information from different softwares and stores them in a Sql server 2008R2 database.
In addition to webservice some windows applications exist in different cities which all of them have local databses.
Now I wanna have replication between these local databases and the central database. but there is no any direct connection as like as "VPN" between local databases and central database.
so how can I do something like replication or synchronization between local databases and central database over the internet.
I'm thinking about sending local databases via web service. what is your idea?
My local databases are Sql server 2000 version
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
日志传送怎么样?您甚至可以使用 FTP(FTPS--FTP over SSL,为了安全起见)发送日志,以便稍后应用到中央数据库。由于您有 SQL 2000,因此您必须以“恢复”模式将数据恢复到数据库的副本,然后使用 SQL 与中央数据库合并。
另外,从个人经验来看——如果设置VPN成本较高,可以考虑使用SSH。 Windows 上有免费的实现,它们在安全文件复制方面做得很好,就像 FTPS 一样。
我不会为此目的使用网络服务,尤其是在数据量很大的情况下。
How about log shipping? You can even use FTP (FTPS--FTP over SSL, for security) to send the logs to be later on applied to the central DB. Since you have SQL 2000, you'd have to restore data to a copy of the DB in "restore" mode and then merge with central DB using SQL.
Also, from personal experience--if setting VPN is costly, you can consider using SSH. Free implementations for Windows exist, and they do a good job for secure file copy, just like FTPS.
I wouldn't use a webservice for this purpose, especially if the amount of data is large.