恢复 MySQL 表(MyISAM 和 InnoDB)所需的最小文件集
恢复 MyISAM 表时,唯一严格需要的文件是数据文件 (tablename.MYD
) - 其余文件(索引文件 tablename.MYI
和 < code>tablename.frm)可以使用REPAIR TABLE
从数据文件重新创建。
假设我使用 InnoDB(带有“innodb_file_per_table
”设置) - 从文件恢复数据库表所需的最小文件集是什么?
When recovering a MyISAM table the only file that is strictly needed is the data file (tablename.MYD
) - the rest of the files (the index file tablename.MYI
and tablename.frm
) can be recreated from the data file using REPAIR TABLE
.
Assume I'm using InnoDB (with the "innodb_file_per_table
" setting) instead - what is the minimum set of files needed to recover a database table from file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只要你有数据文件和日志文件那么InnoDB就能够恢复。 请参阅此页面(并包含章节)请访问 MySQL.com 了解更多信息。 InnoDB 恢复与 MyISAM 完全不同,因为它更“内置”。
As long as you have the data file and the log files then InnoDB will be able to recover. See this page (and containing chapter) on MySQL.com for more. InnoDB recover is quite different to MyISAM in that is more "built-in" as it were.
要恢复 MyISAM 表,您需要 frm 和 MYD 文件。 myisamchk 可以为 InnoDB 重建索引(MYI 文件)
- 取决于 innodb_file_per_table。 如果关闭(默认),则您的数据位于 ibdata1 中。 但您也需要 .frm 文件。
如果它打开 - 您需要 ibdata1,即相应的 .ibd 和 .frm 文件。
To recover MyISAM table you need frm and MYD file. myisamchk can rebuild the index (MYI file)
For InnoDB - depends on innodb_file_per_table. If it's OFF (default), your data in ibdata1. But you need .frm file too.
If it's ON - you need ibdata1, the respective .ibd and .frm file.