Created
March 15, 2011 18:38
-
-
Save Pegolon/871206 to your computer and use it in GitHub Desktop.
If you get an error like SQLite error code:11, 'database disk image is malformed' you can try to dump and reload the database with these commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd "$DATABASE_LOCATION" | |
echo '.dump'|sqlite3 $DB_NAME|sqlite3 repaired_$DB_NAME | |
mv $DB_NAME corrupt_$DB_NAME | |
mv repaired_$DB_NAME $DB_NAME |
The repaired$DBNAME file is a text file, containing a set of SQL statements to describe the database contents. To convert it to an actual database file, I needed to replace step 4 with:
sqlite3 $DBNAME < repaired$DBNAME
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you this helped!