Re: How efficient are Views

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: How efficient are Views
Дата
Msg-id 10056.1023895909@sss.pgh.pa.us
обсуждение исходный текст
Ответ на How efficient are Views  (John Taylor <postgres@jtresponse.co.uk>)
Список 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 по дате отправления:

Предыдущее
От: "Henshall, Stuart - WCP"
Дата:
Сообщение: Re: Optimising inside transactions
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Optimising inside transactions