Synchronizing data between two different databases [closed]

醉酒当歌 提交于 2019-11-28 02:06:10

问题


I need to synchronize data between two databases. The primary database is a SQL server database where all insert, update and delete operations take place. The other database is a MySQL database that reflects the state of primary database at the time of synchronization.

Note that Real-time synchronization is not important, the synchronization will done randomly depending on operator and network availability.

My questions:

  • What are the possible ways to determine that the two databases are already in sync and synchronization is NOT required
  • What are the possible ways to push data from SQL to MySQL server (no need to pull data from MySQL)
  • Should I use custom scripting or is there a tool that can take care of the preocess

回答1:


Try Pentaho Kettle, which is an industrial strength ETL tool. We wrote a custom Perl script to synchronize, which also works, before finding Kettle.



来源:https://stackoverflow.com/questions/8984517/synchronizing-data-between-two-different-databases

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