Re: Different views with same name for different users

From: Holger Krug <hkrug(at)rationalizer(dot)com>
To: Harald Massa <HaraldMassa(at)ghum(dot)de>
Subject: Re: Different views with same name for different users
Date: 2002-01-16 14:50:28
Message-ID: 20020116155028.A22911@dev12.rationalizer.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, Jan 16, 2002 at 02:21:39PM +0100, Harald Massa wrote:
> i've got a table of around 10.000 records.
>
> Users A, B, C are allowed to see all the records
>
> user D only some
> user E only some others
>
> Which is the most elegant way to do this?
> (is there any way at all????)

You cannot create different views with the same name in one PostgreSQL
database. Hence the first answer is: there is no way.

Nevertheless that's not the right answer. You can create only one view:

CREATE VIEW PERS as SELECT * FROM TOTALDATABASE where (criteria)

Within criteria you can check the user (`current_user') and return
`true' or `false' depending on the record at hand and the current
user.

--
Holger Krug
hkrug(at)rationalizer(dot)com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Darren Ferguson 2002-01-16 14:59:42 Re: Different views with same name for different users
Previous Message Esger Abbink 2002-01-16 14:44:44 oid problem with dumping database (failed sanity check, opr with oid 280515 was not found)