From: | Alban Hertroys <alban(at)magproductions(dot)nl> |
---|---|
To: | Jenny <jenny_tania(at)yahoo(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: need help |
Date: | 2005-12-06 10:45:48 |
Message-ID: | 43956BDC.6070704@magproductions.nl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-performance pgsql-sql |
Jenny wrote:
> I'm running PostgreSQL 8.0.3 on i686-pc-linux-gnu (Fedora Core 2). I've been
> dealing with Psql for over than 2 years now, but I've never had this case
> before.
> Then I try to run the query from the psql shell. For example, the table has
> obat_id : A, B, C, D.
> db=# UPDATE s_apotik SET stock = 100 WHERE obat_id='A';
> (.... nothing happens.. I press the Ctrl-C to stop it. This is what comes out
> :)
> Cancel request sent
> ERROR: canceling query due to user request
>
> (If I try another obat_id)
> db=# UPDATE s_apotik SET stock = 100 WHERE obat_id='B';
> (Less than a second, this is what comes out :)
> UPDATE 1
It could well be another client has a lock on that record, for example
by doing a SELECT FOR UPDATE w/o a NOWAIT.
You can verify by querying pg_locks. IIRC you can also see what query
caused the lock by joining against some other system table, but the
details escape me atm (check the archives, I learned that by following
this list).
If it's indeed a locked record, the process causing the lock is listed.
Either kill it or call it's owner back from his/her coffee break ;)
I doubt it's anything serious.
--
Alban Hertroys
alban(at)magproductions(dot)nl
magproductions b.v.
T: ++31(0)534346874
F: ++31(0)534346876
M:
I: www.magproductions.nl
A: Postbus 416
7500 AK Enschede
//Showing your Vision to the World//
From | Date | Subject | |
---|---|---|---|
Next Message | Marcus Engene | 2005-12-06 11:44:27 | Re: fts, compond words? |
Previous Message | Richard van den Berg | 2005-12-06 10:29:39 | Temporary disable autovacuum in pgsql 8.1.0 |
From | Date | Subject | |
---|---|---|---|
Next Message | Steinar H. Gunderson | 2005-12-06 10:59:35 | Re: BLCKSZ |
Previous Message | Olleg | 2005-12-06 10:40:47 | Re: BLCKSZ |
From | Date | Subject | |
---|---|---|---|
Next Message | Magdalena Komorowska | 2005-12-06 13:49:33 | Date Interval |
Previous Message | Jenny | 2005-12-06 09:41:15 | need help (not anymore) |