Re: Cause of error message?
От | Klint Gore |
---|---|
Тема | Re: Cause of error message? |
Дата | |
Msg-id | 487BF926.5030509@une.edu.au обсуждение исходный текст |
Ответ на | Cause of error message? ("Bayless Kirtley" <bkirt@cox.net>) |
Список | pgsql-general |
Bayless Kirtley wrote: > An old app is giving a new error message. I query a table and make one > update. Later I come back to query the table again and get this error: > > ERROR: current transaction is aborted, commands ignored until end of > transaction block > > The error only occurs after I have made an update. As long as no > updates, I can query multiple times. Can anyone give me an idea of > what sort of actions or errors usually cause this error? > > It means that you have an open transaction and the statement before you get this message failed. e.g. postgres=# begin; BEGIN postgres=# update bob set abc=1; ERROR: relation "bob" does not exist postgres=# select version(); ERROR: current transaction is aborted, commands ignored until end of transaction block postgres=# You need to find which statement failed first and fix it or rollback and have your app deal with the failure. The postgres log is a good place to start looking. klint. -- Klint Gore Database Manager Sheep CRC A.G.B.U. University of New England Armidale NSW 2350 Ph: 02 6773 3789 Fax: 02 6773 3266 EMail: kgore4@une.edu.au
В списке pgsql-general по дате отправления: