Hi Paul, > /usr/bin/mysqldump: Can't get CREATE TABLE for table `threadviews` (Can't > open file: 'threadviews.MYI'. (errno: 145))
Outch. The table "threadviews" has been corrupted. Think of it like a defective file or corrupted harddisk. Try to repair it with the mechanisms that MySQL provides: Connect to the server by SSH and establish a connection to MySQL: mysql -u root -p threadviews Enter password: <Your-MySQL-Root-Password> ... mysql> REPAIR TABLE tablename; ... mysql> exit Then try a MySQLdump again and see if that fixed the problem. -- With best regards, Michael Stauber _______________________________________________ Cobaltfacts site list [email protected] http://list.cobaltfacts.com/mailman/listinfo.cgi/cobaltfacts
