|
Looks like your tables are corrupt, try running the REPAIR command on them or if you have root do this:
Kill the mysql process and make sure it is not running (mysqld)... you can either use the mysql.sh stop command or kill PID
cd into the directory where your database files are located and run
myisamchk -r */*.MYI
this should repair all your indexes
|