Code:
mysqldump: Got error: 1033: Incorrect information in file
The specified error from the mysqldump utility may indicate there is database corruption. I recommend attempting to restore the database from backup. If this is not possible, I would try to use the mysqlcheck utility to perform a basic check and optionally attempt a repair.
Here is an example showing how to perform an extended check a database named "username_testdb" with verbose output:
Code:
# mysqlcheck -cev username_testdb
If the results indicate corruption I recommend restoring from backup and or contacting the upstream service provider for assistance or a qualified database and systems administrator. At one's own risk, it is possible to attempt a repair using the mysqlcheck utility, for additional usage information please refer to the following two commands:
Code:
# mysqlcheck --help
# man mysqlcheck