Re: How efficient are Views - Mailing list pgsql-novice

From Tom Lane
Subject Re: How efficient are Views
Date
Msg-id 10056.1023895909@sss.pgh.pa.us
Whole thread Raw
In response to How efficient are Views  (John Taylor <postgres@jtresponse.co.uk>)
List pgsql-novice
John Taylor <postgres@jtresponse.co.uk> writes:
> I'm thinking about using a view for my application.

> However, I'm wondering about how efficient it will be once I have a
> large amount of data loaded.

Views are effectively just query macros --- Postgres doesn't have any
notion of pre-materialized views.

Whether this will be efficient or not depends very much on what the
intended view is and how you use it.

> Whould it maybe be faster to have a seperate table alongside the base
> data, and generate it via a trigger or stored procedure ?

You could do that, and in some cases it'd be helpful; in other cases
it'd be a big loss.  Without any details on your scenario, we really
can't say more than that.  What's the proposed view?  How often will
you access the view as compared to modifying the underlying table?

            regards, tom lane

pgsql-novice by date:

Previous
From: "Henshall, Stuart - WCP"
Date:
Subject: Re: Optimising inside transactions
Next
From: Tom Lane
Date:
Subject: Re: Optimising inside transactions