AW: ask for help !!! (emergency case) - Mailing list pgsql-hackers

From Zeugswetter Andreas SB
Subject AW: ask for help !!! (emergency case)
Date
Msg-id 11C1E6749A55D411A9670001FA68796336820B@sdexcsrv1.f000.d0188.sd.spardat.at
Whole thread Raw
Responses Re: AW: ask for help !!! (emergency case)  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
> I hava 2 problems about view
> 1. i can't insert into view

> I try to insert into view as following
> create table t1 (id int,name varchar(12) check(id<=10));
> create table t2 (id int,name varchar(12) check(id>10));
> create view v1 as select * from t1,t2;

This is not an updateable view in any database product.
It is a cartesian product join of t1 and t2.

You probably wanted:
create view v1 as 
select * from t1
union all
select * from t2;

> insert into v1 values(1,'wan1');
> insert into v1 values(12,'wan12');
> 
> it does not show any problem but it doen't have data in table 
> t1 and table t2

Version 7.1 will give you an error if you don't create an appropriate
insert and update rule for the view.

Insert and update rules are not yet automatically created for views.

Andreas


pgsql-hackers by date:

Previous
From: Dave Mertens
Date:
Subject: Re: Re: [ADMIN] v7.1b4 bad performance
Next
From: "Rod Taylor"
Date:
Subject: Permissions on SERIAL