RE: [SQL] RV: A little problem updating data with views

From: Michael J Davis <michael(dot)j(dot)davis(at)tvguide(dot)com>
To: "'Chris Bitmead'" <chris(dot)bitmead(at)bigfoot(dot)com>, pgsql-sql(at)postgreSQL(dot)org
Subject: RE: [SQL] RV: A little problem updating data with views
Date: 1999-06-04 16:25:35
Message-ID: 93C04F1F5173D211A27900105AA8FCFC145565@lambic.prevuenet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

You can create rules that simulate views and allow you to update the
database. I have not done this myself but have heard they work. Rules are
more complex that views. The html documentation has a lot of information
about rules. Views are implemented in Postgres using rules without the
update capabilities.

-----Original Message-----
From: Chris Bitmead [SMTP:chris(dot)bitmead(at)bigfoot(dot)com]
Sent: Friday, June 04, 1999 7:25 AM
To: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] RV: A little problem updating data with
views

I don't believe views are updatable in postgresql.

Jorge Herrera Piñero wrote:
>
> Hello,
>
> We are using PostgreSQL v6.4 and have problems when we want
update
> data throught views.
> When we issue an update statment within a view, always obtain
'UPDATE 0'
> and the data is not updated. We have checked write permissions
on view
> and are right.
>
> Any ideas was going wrong?
>
> thanks in advance.
>
> A complete UPDATE test:
>
> test=> create table ttest (t varchar(20), n int4);
> test=> create view vtest as select t from ttest;
> test=> insert into ttest values('asd', 0);
> test=> select * from vtest;
> t
> ---
> asd
> (1 row)
>
> test=> grant all on ttest, vtest to postgres;
> CHANGE
>
> test=> update vtest set t='asdasd';
> UPDATE 0

--
Chris Bitmead
http://www.bigfoot.com/~chris.bitmead
mailto:chris(dot)bitmead(at)bigfoot(dot)com

Browse pgsql-sql by date

  From Date Subject
Next Message Martin Leja 1999-06-04 17:22:21 Re: [SQL] Howto convert floats to text?
Previous Message Chris Bitmead 1999-06-04 16:10:22 Re: [SQL] Slashdot Query