Re: Read-Only Views?

From: "scott(dot)marlowe" <scott(dot)marlowe(at)ihs(dot)com>
To: Naomi Walker <nwalker(at)eldocomp(dot)com>
Cc: "pgsql-admin(at)postgresql(dot)org" <pgsql-admin(at)postgresql(dot)org>
Subject: Re: Read-Only Views?
Date: 2003-07-18 17:39:00
Message-ID: Pine.LNX.4.33.0307181136100.2444-100000@css120.ihs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Yep. by default views are not updateable in postgresql. However, they
can be made updateable by triggers. Note that not all views are
inherently updateable, just the simplest. for instance how would you
update:

create view bigview as select g1.id, t1.f1*t2.f2, t1.f3/t3.f4 from tabl1
t1, table2 t2, table3 t3 where t1.id=t2.t1id and t1.id=t3.t1id

?

On Fri, 18 Jul 2003, Naomi Walker wrote:

>
> I noticed in some (older) documentation that views were read-only? Is this
> still the case?
>
> Naomi
>
>
> -------------------------------------------------------------------------------------------------------------------------
> Naomi Walker Chief Information Officer
> Eldorado Computing, Inc.
> nwalker(at)eldocomp(dot)com 602-604-3100
> -------------------------------------------------------------------------------------------------------------------------
> Do not follow where the path may lead. Go, instead and leave a trail.
> -Robert Frost
> -------------------------------------------------------------------------------------------------------------------------
>
> -- CONFIDENTIALITY NOTICE --
>
> This message is intended for the sole use of the individual and entity to whom it is addressed, and may contain information that is privileged, confidential and exempt from disclosure under applicable law. If you are not the intended addressee, nor authorized to receive for the intended addressee, you are hereby notified that you may not use, copy, disclose or distribute to anyone the message or any information contained in the message. If you have received this message in error, please immediately advise the sender by reply email, and delete the message. Thank you.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: the planner will ignore your desire to choose an index scan if your
> joining column's datatypes do not match
>

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Jeff Ward 2003-07-18 17:44:57 Restore "data/base/myDB/" raw data files
Previous Message Naomi Walker 2003-07-18 17:26:10 Read-Only Views?