How can i repair this, is there a neat piece of software for ?
MYSQL database corrupt
Collapse
X
-
you should have made backups yo, that would have fixed your problem.
i'll search around for you but i haven't ever been able to fix a corrupt dbase yet. -
I didn't know that could happen.
By corrupt, do you mean the actual data or the index to the data?Done.Comment
-
Can you do a mysqldump [db] > textfile.sql ?
Or is it really fucked?
Regardless, here's the MySQL doc on checking databases:
http://dev.mysql.com/doc/refman/5.0/en/repair.htmlYour post count means nothing.Comment
-
Have you tried doing a simple export yet?? If the data is still able to be pulled from the database and shown on pages you should be able to export the data fine.Last edited by Nookster; 02-24-2007, 01:11 PM.Comment
-
you can use the repair table command.
1. log into your server via ssh.
2. then use the mysql client to connect to the database like:
mysql -uYourUserNAme -pYourPassword YourDatabasename
3. issue this command for every broken table:
repair table YourTableName;
After this all your tables will be fixed and you can export themComment
-
Can also be done in phpMyAdmin pretty easily if that's on there.you can use the repair table command.
1. log into your server via ssh.
2. then use the mysql client to connect to the database like:
mysql -uYourUserNAme -pYourPassword YourDatabasename
3. issue this command for every broken table:
repair table YourTableName;
After this all your tables will be fixed and you can export themComment

Comment