Re: Issue with UPDATE statement on v8 - Mailing list pgsql-sql

From Michael Fuhr
Subject Re: Issue with UPDATE statement on v8
Date
Msg-id 20050923133021.GA72851@winnie.fuhr.org
Whole thread Raw
In response to Issue with UPDATE statement on v8  ("Kenneth Hutchinson" <kenneth.hutchinson@mpfyieldstar.com>)
List pgsql-sql
On Thu, Sep 22, 2005 at 11:22:22AM -0500, Kenneth Hutchinson wrote:
> UPDATE t_summary
> SET        availability = 7
> WHERE  oid = 28245084
> 
> When this query is executed (within a function or without) the database
> will simply hang.  If the UPDATE is turned into a SELECT, the query
> works just fine.

One possibility is that another transaction has updated this row
or done a SELECT FOR UPDATE and hasn't committed yet.  Does just
this one record cause the update to hang or do all updates to the
table hang?  Have you queried pg_locks in another session while the
update is hung?

-- 
Michael Fuhr


pgsql-sql by date:

Previous
From: "Stewart Ben (RBAU/EQS4) *"
Date:
Subject: Re: Functions, transactions and RETURN
Next
From: Hilary Forbes
Date:
Subject: Where are user defined functions stored?