Re: Trigger on select? - Mailing list pgsql-sql

From Karsten Hilbert
Subject Re: Trigger on select?
Date
Msg-id 20050803092307.GA2991@merkur.hilbert.loc
Whole thread Raw
In response to Re: Trigger on select?  (Chris Travers <chris@travelamericas.com>)
List pgsql-sql
On Tue, Aug 02, 2005 at 05:54:59PM -0700, Chris Travers wrote:

> >Hey, anyone know if it is possible to fire a trigger before a select?  
> >I'm considering creating some tables which contain data summarized 
> >from other tables as kind of a cache mechanism.  The hope is I can 
> >speed up some queries that get executed a lot (and are kind of slow) 
> >by maintaining data (like sums of big columns, for example).  I was 
> >all ready to go and then I discovered that trigger-before-select is 
> >not supported.  (Is it in any DB?)
> >
> >The idea is this:
> >
> >Any time I execute a query that would access the summary data, the 
> >"before select" trigger fires and goes out and builds any summary data 
> >missing from the summary table.
> 
> No.  You must instead generate a view.

And then it needs to be a materialized view of some sort
to achieve the caching he's after.

Karsten
-- 
GPG key ID E4071346 @ wwwkeys.pgp.net
E167 67FD A291 2BEA 73BD  4537 78B9 A9F9 E407 1346


pgsql-sql by date:

Previous
From: Chris Travers
Date:
Subject: Re: Trigger on select?
Next
From: daq
Date:
Subject: Re: [NOVICE] SQL error code -601