Posted: Fri Aug 18, 2006 7:43 am
try repairing the tables? REPAIR TABLE TABLENAME;
Security for Everyone
https://forums.atomicorp.com/
Code: Select all
mysqlcheck --repair --all-databases -uadmin -p`cat /etc/psa/.psa.shadow`
I got that for 90% of the psa tables (about 5 returned 'OK'). If I run the --analyze option, those 5 tables returned the following:psa.BackupTasks
note : The storage engine for the table doesn't support repair
The rest say 'OK'Table is already up to date
Code: Select all
mysql> check table BackupTasks;
+-----------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+-----------------+-------+----------+----------+
| psa.BackupTasks | check | status | OK |
+-----------------+-------+----------+----------+
1 row in set (0.01 sec)
mysql> repair table BackupTasks;
+-----------------+--------+----------+---------------------------------------------------------+
| Table | Op | Msg_type | Msg_text |
+-----------------+--------+----------+---------------------------------------------------------+
| psa.BackupTasks | repair | note | The storage engine for the table doesn't support repair |
+-----------------+--------+----------+---------------------------------------------------------+
1 row in set (0.00 sec)