Firebird - database file shutdown error message

后端 未结 2 684
刺人心
刺人心 2021-01-12 11:22

I have a problem with my Firebird database. The primary key of one of the tables is referenced by another table that was actually dropped earlier. So this reference from a n

相关标签:
2条回答
  • 2021-01-12 12:04

    use online

    gfix  -user "SYSDBA" -password "masterkey"  -online DATA.FDB
    

    after database is used retry

    gfix  -user "SYSDBA" -password "masterkey"   -shut -force 0 DATA.FDB
    
    0 讨论(0)
  • 2021-01-12 12:09

    Your database (file, not server) has been shutdown, so Firebird does not accept connections for this database until it has been brought online again using gfix.

    The command is:

    gfix -online <path-to-your-database>
    

    See Database Startup and Shutdown in the Firebird Database Housekeeping Utility manual

    0 讨论(0)
提交回复
热议问题