Reputation: 61
I am getting an "internal firebird consistency check (can't continue after bugcheck)" when trying to run the GBAK commands on the database. Please explain what this means and how I best can solve this problem.
Upvotes: 3
Views: 7507
Reputation: 5481
Usually it means that database file is corrupted. In most cases a run of gfix utility would be enough to mend a database:
gfix -mend -full -ignore -user SYSDBA -pas masterkey database.gdb
Then do backup-restore using gbak.
Upvotes: 3