mysql 如何恢复表的部分数据
假设我有表 A,它有 3000 行,我知道前 2000 行已损坏,并且我在另一个 mysql 服务器上有干净的记录。恢复这 2000 行的最简单方法是什么?非常感谢。
Let's say I have table A, it has 3000 rows and I know the first 2000 rows are corrupt and I have a clean records sitting in another mysql server. What would be the easiest way to restore that 2000 rows? Thanks so much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Maatkit 的 mk-table-checksum 工具可以确定两个主机的表之间的差异。
mk-table-sync 用于生成和/或仅运行更新损坏的表所需的语句。
Using Maatkit's mk-table-checksum tool you can determine the differences between the tables of two hosts.
mk-table-sync is used to generate and/or run only the statements necessary to update the corrupted table.
你想要的是从备份服务器复制mysql文件并删除生产服务器上的文件。
What you want is to copy the mysql file from the backup server and delete the file on the production server.