How many views is ok?

From: "Petr Kavan" <petr(dot)kavan(at)marekmicro(dot)cz>
To: <pgsql-performance(at)postgresql(dot)org>
Subject: How many views is ok?
Date: 2005-08-12 06:53:33
Message-ID: 001a01c59f0a$8e8d9560$de01a8c0@kavan
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

I have database of company data, and some of them is table of information
about employees. I need each employee to have access only to his own row.
Postgre cannot do this by system of privileges, because that can give
privileges only to whole tables.

Possibility is to create a view for each employee that chooses only his data
and give employee privileges to this view. But I am not sure if such number
of views does not have some performance drawbacks or even if postgre can
support it (I expect i can). I would need several tables protected like this
and it can result in, say 1000 views in maximum.

Because access to DB will go through PHP information system, other
possibility to protect data is to let IS connect as more privileged than
user really is, but let it retrieve only data for that user.

View-approach seems far more clear than this, but im not sure if postgre can
handle it without problems.

Thanks for any reply :-)

-----------------------------------------------------------
Petr Kavan
Database Development

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Greg Stark 2005-08-12 07:32:37 Re: Mostly read performance
Previous Message Michael Stone 2005-08-12 00:30:31 Re: Mostly read performance