Subject | RE: [Firebird-Java] What means this exception ? |
---|---|
Author | Paul Beach |
Post date | 2004-09-14T14:45:48Z |
> org.firebirdsql.jdbc.FBSQLException: GDS exception. deadlock record fromIt means exactly what it says, I suspect. You have a limbo transaction, thats
> transaction 19474 is stuck in limbo
generating a deadlock error. Try getting rid of the limbo transaction in your
database by using gfix .. e.g.
gfix -t all database_name
Paul