同步两个不同的mysql数据库

发布于 2024-10-21 06:26:44 字数 148 浏览 1 评论 0原文

因此,我正在使用全新的标准化数据库为我的公司构建一个新的电子商务应用程序。目前,有一个旧数据库,非规范化的糟糕数据库。旧数据库仍有大约 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沒落の蓅哖 2024-10-28 06:26:44

您需要在旧的上创建一个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

笑叹一世浮沉 2024-10-28 06:26:44

我不确定它是否符合您的要求,但您可以尝试在两台服务器上设置复制。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文