user2160496
user2160496

Reputation: 61

Firebird database error when running GBAK

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

Answers (1)

Andrej Kirejeŭ
Andrej Kirejeŭ

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

Related Questions