Sync between Sql Server and Mysql Server

六月ゝ 毕业季﹏ 提交于 2019-12-12 03:47:22

问题


I have 2 big tables in sql server that i need to sync to mysql. now, i need that as an ongoing process. the tables are 1 GB each and getting new/update/delete row every 0.1 second.

Can you recommend me a tool that can do it that is not resource expensive.

you can offer OPEN SOURCE and commercial as well

Thanks


回答1:


You could create a linked server instance in SQL Server, pointing to the MySQL instance. This article gives the step-by-step process. Once that is in place, providing you grant the MySQL user you connect on behalf of proper permissions, you can write to the MySQL instance as you like. So you could easily update stored procedures to do an additional step to insert records into MySQL.



来源:https://stackoverflow.com/questions/14259953/sql-server-sync-to-mysql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!