美文网首页
mysql table is marked as crashe

mysql table is marked as crashe

作者: 格吾刚哥 | 来源:发表于2017-06-30 16:44 被阅读106次

    MySQLDump备份数据库的时候出现了下面的错误提示:

    Error: Table './db_name/table_name' is marked as crashed and last (automatic?) repair failed

    提示数据库中的某个表出现错误了,可以使用myisamchk这个工具进行修复,操作步骤如下:

    1、停止数据库

    service mysqld stop
    

    2、进入数据库目录,修复损坏的表

    myisamchk -r table.name.MYI
    

    3、重启数据库

    service mysqld start
    

    相关文章

      网友评论

          本文标题: mysql table is marked as crashe

          本文链接:https://www.haomeiwen.com/subject/chxicxtx.html