i have a corrupted Lightroom catalog file(.lrcat) which is a SQL database, which i usually repair by creating an SQL file using these commands:
echo .dump | sqlite3 CorruptedFile.lrcat > Temp.sql
From the SQL file i then rebuild the lrcat file with this command:
sqlite3 -init Temp.sql New.lrcat
In this case it loads the resources from the SQL file and after a while i get this message:
Error: incomplete SQL: ■P
Since I am not a programmer, but a somewhat nerdy photographer I am stuck at this point. Any hints would be greatly appreciated.
Thanks, Holger