Re: What's going on here? - Mailing list pgsql-general

From Stephan Szabo
Subject Re: What's going on here?
Date
Msg-id Pine.BSF.4.21.0107261220530.77833-100000@megazone23.bigpanda.com
Whole thread Raw
In response to What's going on here?  ("Dave Cramer" <Dave@micro-automation.net>)
List pgsql-general
On Thu, 26 Jul 2001, Dave Cramer wrote:

>
>
> I can't seem to change any rows in this table. Are there locks somewhere
> that I can look at or fix
>
> ebox=# select version();
>                            version
> -------------------------------------------------------------
>  PostgreSQL 7.0.3 on i686-pc-linux-gnu, compiled by gcc 2.96
> (1 row)
>
> ebox=# select eitemcode,itemavail from inventory where itemavail = 1
> limit 1;
>  eitemcode | itemavail
> -----------+-----------
>    6100122 |         1
> (1 row)
>
> ebox=# update inventory set itemavail=0 where eitemcode=6100122;
> UPDATE 0

Hmm, could it perhaps be a view (rather than a table)?  If it is a table,
are there any views or triggers on the table that might be interfering
with the update?



pgsql-general by date:

Previous
From: "Dave Cramer"
Date:
Subject: What's going on here?
Next
From: jdassen@cistron.nl (J.H.M. Dassen (Ray))
Date:
Subject: Re: What's going on here?