Re: "Transaction over connections"

From: Shridhar Daithankar <shridhar_daithankar(at)myrealbox(dot)com>
To: Lada 'Ray' Lostak <ray(at)unreal64(dot)net>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: "Transaction over connections"
Date: 2003-11-20 09:23:15
Message-ID: 3FBC8803.7060300@myrealbox.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Lada 'Ray' Lostak wrote:
>>You can add an attribute "work-in-progress" to your tables. Then
>>set up views that filter out rows with work-in-progress=true.
>>Your production client then needs to be modified to look at
>>those views instead of the tables.
>
> I also though about this, but what about performance ? I have hundreds
> tables. Anyone have experimence withs TONS of views ?
>
> Is it possible to setup 'view' on whole database ? Or a 'part' of DB ? Same
> expression for all/setof tables.

how about all non-approved product goes to a in development schema and all
approved products are moved to production schema when approved.

Sure it means lot more than mainening single column but development schema would
be as slim as productio and further more it is totally invisible from client side.

Just set the schema search pats correctly.

HTH..

Shridhar

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Holger Klawitter 2003-11-20 09:24:30 Re: SELECT Question
Previous Message Shridhar Daithankar 2003-11-20 08:54:31 Re: "Transaction over connections"