今天客户在启动服务器时出现这两个错,经过各种搜索总结出如下几种方式:
一:使用myisamchk
1
2
3
|
myisamchk --recover --quick tablePath
myisamchk --recover tablePath
myisamchk --safe-recover tablePath
|
注:这里的tablePath直MYI路径如:../data/demo/user.MYI
二:使用check AND repair
1 check table tableName 2 repair table tablename
注:这里的tableName就是字面上的意思,如user
相关解释:
一:myisamchk支持通配符,即:
myisamchk --recover --quick ../data/demo/*.MYI
二:check语句是用来检查表是否有错误,repair是用来修复表,如果已经确定有错误,则可以不用执行check语句。
关于MYSQL:Got error 134 from storage engine/is marked as crashed and should be repaired,布布扣,bubuko.com
关于MYSQL:Got error 134 from storage engine/is marked as crashed and should be repaired