You are here:
» Mysqldump: Error 1194: Table 'boost_cache_relationships' Is Marked As Crashed And Should Be Repaired When Dumping Table
mysqldump: Error 1194: Table 'boost_cache_relationships' is marked as crashed and should be repaired when dumping table
This Comment will be submitted for moderation and will not be accessible to other users until it has been approved.
Hi,
I am taking backup of my mysql database using mysqldump:
mysqldump -uroot -ppass drupal6 > drupal.sql
and it shows that my boost_cache_relationships table in drupal is crashed and gives following error:
mysqldump: Error 1194: Table 'boost_cache_relationships' is marked as crashed and should be repaired when dumping table
Please help.

1 year 39 weeks ago
Tags:
This means that you need to repair your table. Connect to your mysql table and then repair the table as follows:
Step 1: Connect and go to mysql shell:
Step 2: Use "Repair Table" command on mysql shell as follows:
This should fix it.
Post Comment