Skip to content
Discussion options

You must be logged in to vote

You can confirm if it’s corrupt

sqlite3 frigate.db "PRAGMA integrity_check;"

If it comes back with an error then you can:

sqlite3 frigate.db ".dump" > new.sql
sqlite3 new.db "PRAGMA integrity_check;"
mv frigate.db old.db
sqlite3 frigate.db < new.sql

Replies: 2 comments 7 replies

Comment options

You must be logged in to vote
6 replies
@beginner2047
Comment options

@NickM-27
Comment options

NickM-27 Oct 19, 2025
Collaborator Sponsor

@beginner2047
Comment options

@NickM-27
Comment options

NickM-27 Oct 19, 2025
Collaborator Sponsor

Answer selected by beginner2047
@beginner2047
Comment options

Comment options

You must be logged in to vote
1 reply
@NickM-27
Comment options

NickM-27 Oct 26, 2025
Collaborator Sponsor

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment