Re: security for row level but not based on Database user's

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: security for row level but not based on Database user's
Дата
Msg-id 444DEE78.7020703@archonet.com
обсуждение исходный текст
Ответ на security for row level but not based on Database user's login  ("Friends" <ramasamy.p@gmail.com>)
Список pgsql-performance
Friends wrote:
> Hi
>
> I need to set security for row level but not based on Database user's
> login. It should be based on the user table login. For the particular
> user I need to allow only the particular records to access insert,
> update delete and select.

Well, the data access stuff is all manageable via views, which is the
standard way to do this.

You don't say which version of PostgreSQL you are using, but I'd be
tempted just to switch to a different user after connecting and use the
session_user system function to control what is visible in the view.

For example:
CREATE VIEW my_contacts AS SELECT * FROM contacts WHERE owner =
session_user;

If that's not practical then you'll need to write some functions to
simulate your own session_user (say application_user()). This is easiest
to write in plperl/pltcl or some other interpreted language - check the
list archvies for plenty of discussion.

--
   Richard Huxton
   Archonet Ltd

В списке pgsql-performance по дате отправления:

Предыдущее
От: Tomas Vondra
Дата:
Сообщение: Re: serious problems with vacuuming databases
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: security for row level but not based on Database user's