Firebird - database file completion error message
I have a problem with my Firebird database. The primary key of one of the tables refers to another table that was actually dropped earlier. Thus, this link from a non-existent table was throwing errors when trying to make any changes to the table data.
So, I did a backup and restore and the bad link is gone, but now when I try to connect to my database more than once, I get the following error:
database [file path] shutdown
How can I solve this?
source to share
Your database (file, not the server) has been disconnected, so Firebird does not accept connections for that database until it has been reconnected to the network using gfix
.
Command:
gfix -online <path-to-your-database>
See Starting and Shutting Down a Database in the Firebird Databases Disposal Guide
source to share