问题处理分享 SQLSTATE[HY000]: General error: 126 Incorrect

发布时间 2023-03-27 15:35:33作者: 夏沫忆香

今天网站访问内容页突然报错:

SQLSTATE[HY000]: General error: 126 Incorrect key file for table '.\数据库名\qb_cms_content1.MYI'; try to repair it

当mysql的临时文件大小设置太小,或者由于并发量太大导致临时文件存放的目录空间大小不够时都会报这个错误。”incorrect key file for the table ‘/tmp/#sql….';try to repair it”

当网站访问内容页出现这个的时候,可能是索引表损坏,可以尝试这个方法:

执行:

REPAIR TABLE qb_cms_content1;