使用Mysql在两个服务器之间同步表数据
我在一台实时服务器上有一个数据库 1,在我的开发服务器上有另一个数据库 2。现在我想要实现的是,如果在实时服务器上的一个表中发生任何操作,那么它也应该反映在我的开发服务器的数据库 2 中的同一个表中。
是否可以通过触发器或者我需要进行任何类型的复制...?
谢谢
I am having one database 1 on one live server and another database 2 on my developement server. Now what i want to achieve is if on live server in one of the table any operation occurs than it should also be reflected in my same table in database 2 of my development server.
Is it possible via trigger or i need to do any kind of replication...?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该为此使用复制。
您可以使用触发器和远程表重新发明整个过程,但是您将重新发明复制,并且它不会比内置复制更好。
You should use replication for that.
You can re-invent the whole process using triggers and remote tables, but you would be re-inventing replication and it would not be better than the built-in replication.