Table ‘xxx‘is marked as crashed and last (automatic) repair failed

Table 'xxx'is marked as crashed and last (automatic) repair failed。表被标记为跌宕了。

  只好通过mysql命令行来执行了。

  1)service mysqld stop  停止mysql服务;

  2)cd /var/local/mysql/tbl  切换到该表目录下(注意:不切换过来会总提示myisamchk一些错误导致失败);

  3)myisamchk -r xxx.MYI  (如果还是提示错误,就多加一个参数-f  强制进行。)

[root@localhost tjinfo]# myisamchk -r dede_archives.MYI
- recovering (with sort) MyISAM-table 'dede_archives.MYI'
Data records: 1781
- Fixing index 1
- Fixing index 2
- Fixing index 3
- Fixing index 4

  最后查看,成功!

注意:虽然这样成功了,但是当你再次添加文章的时候,又会出现这样的问题,所以长久的解决办法如下:
        把服务器上的数据导入到本地,然后在本地用myisamchk -r -f *.MYI修复了下,然后导回去。

 

 

 

myisamchk: error: 140 when opening MyISAM-table 'percentage_log.MYI'

这是Mysql5.6的一个Bug 去掉.MYI即可

你可能感兴趣的:(Table ‘xxx‘is marked as crashed and last (automatic) repair failed)