浏览文章

文章信息

Mysql 表损坏修复过程Table is marked as crashed and should be repaired 15253

1、登录数据库

mysql -uroot -p # 回车后填写root账户密码

2、选择数据库

mysql>use ceshi; # 这里选择ceshi数据库,你的数据库则自己选择

3、检查表

mysql>check table ceshi_table; # 这里选择表ceshi_table,你的你自行选择检查

如果发现检查出来有:Table  is marked as crashed and should be repaired

说明这个表崩溃了,需要修复;

4、修复表

mysql>repair table ceshi_table; # 修复ceshi_table表,你的表是什么自己选择

5、检查修复状态

mysql>check table ceshi_table; # 检查如果status是OK,就修复完毕了,否则可能需要备份恢复了


到此结束!

原创