You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the DB file was copied while a transaction was ongoing, the resulting file will likely be corrupt.
To prevent wasting time trying to import such a corrupted file, it might make sense to check the DB's integrity using sqlite's built-in tools, before attempting the import.
Integrity can be checked by executing PRAGMA integrity_check. If the result is a single ok all is good, otherwise there's issues with the DB file.
The text was updated successfully, but these errors were encountered:
If the DB file was copied while a transaction was ongoing, the resulting file will likely be corrupt.
To prevent wasting time trying to import such a corrupted file, it might make sense to check the DB's integrity using sqlite's built-in tools, before attempting the import.
Integrity can be checked by executing
PRAGMA integrity_check
. If the result is a singleok
all is good, otherwise there's issues with the DB file.The text was updated successfully, but these errors were encountered: