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)
Список
Дерево обсуждения
Re: How efficient are Views "Henshall, Stuart - WCP" <SHenshall@westcountrypublications.co.uk>
John Taylor 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 по дате отправления