同步两个不同的mysql数据库
因此,我正在使用全新的标准化数据库为我的公司构建一个新的电子商务应用程序。目前,有一个旧数据库,非规范化的糟糕数据库。旧数据库仍有大约 5 个遗留系统在其上运行,因此当我的应用程序启动时,它仍将处于生产状态。问题是,当遗留应用程序更新旧数据库中的数据时,如何将数据更新到新数据库中?
So, I am building a new e-commerce application for my company with a brand new normalized database. Currently, there is an old database, non normalized awful database. The old database has about 5 legacy systems still running on it so it will still be in production when my application is launched. The question being as a legacy application updates data in the old database, how can I update the data into the new database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在旧的上创建一个TRIGGER,因此,当执行插入/更新/删除时,它应该正确复制另一个数据库中的更改。
在触发器中,您可以处理两个模式之间的任何差异。
用户需要拥有这两个数据库的权限,并且在触发器表中必须以数据库名称作为前缀,例如
mydb.table2
You need to create a TRIGGER on the old one, so when insert/update/delete is performed, it should replicate the change in the other database properly.
In the trigger you can handle any differences between the two schemas.
The user needs to have permission for both of the database, and in the trigger tables must be prefixed with database name like
mydb.table2
我不确定它是否符合您的要求,但您可以尝试在两台服务器上设置复制。
http://dev.mysql.com/doc/refman/5.1/en /replication.html
I am not sure if it will fit your requirement but you could try to set up replication on both servers.
http://dev.mysql.com/doc/refman/5.1/en/replication.html