Out of nothing, my mysql backup would refuse to dump a database to a file, complaining that:
omph.'table' is marked as crashed and should be repaired when using LOCK TABLES
[SOLUTION]
I've been running Drupal, so I took the site accessing that database offline for maintenance (Cheap "lock tables")
Then I went into mysql's data folder that keeps the data of the affected database 'ouch' and used 'myisamchk -r' to repair the 'table_that_crashed':
Code: Select all
cd /var/lib/mysql/ouch
myisamchk -r table_that_crashed