"table './mysql/proc' is marked as crashed and should be repaired" Code Answer

2

try these:

mysqlcheck --auto-repair -a -u username -ppassword

inside mysql terminal

repair table mysql.proc;

reference: https://dev.mysql.com/doc/refman/5.1/en/repair-table.html modify the my.cnf

[mysqld]
character-sets-dir=/usr/share/mysql/charsets

reference: http://dev.mysql.com/doc/refman/5.0/en/repair-table.html

By msefer on February 3 2022

Answers related to “table './mysql/proc' is marked as crashed and should be repaired”

Only authorized users can answer the Search term. Please sign in first, or register a free account.