修复./mysql/proc
Posted 小刀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修复./mysql/proc相关的知识,希望对你有一定的参考价值。
mysql数据库只能建不能删的错误提示及处理方法:
mysql> drop database zabbixaa; ERROR 145 (HY000): Table ‘./mysql/proc‘ is marked as crashed and should be repaired
处理方法:直接在mysql数据库里面使用root帐号登录后,进行修复:
mysql> repair table mysql.proc; +------------+--------+----------+----------+ | Table | Op | Msg_type | Msg_text | +------------+--------+----------+----------+ | mysql.proc | repair | status | OK | +------------+--------+----------+----------+ 1 row in set (0.05 sec)
再次执行删除正常
mysql> drop database zabbixaa; Query OK, 0 rows affected (0.02 sec)
以上是关于修复./mysql/proc的主要内容,如果未能解决你的问题,请参考以下文章
出现Table ‘./mysql/proc’ is marked as crashed and should be repaired