To repair a MySQL table, here are some VERY BASIC steps:
1.) Start admin tool:
# mysql –u root
2.) Connect to db
# connect DBNAME
3.) Repair it and cross fingers
# repair table TABLENAME
Ofcourse you need to replace the DBNAME and TABLENAME with you settings ;)
