Re: Define permissions at database level

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: Define permissions at database level
Дата
Msg-id 4B7D1D9F.9070301@archonet.com
обсуждение исходный текст
Ответ на Re: Define permissions at database level  (dipti shah <shahdipti1980@gmail.com>)
Ответы Re: Define permissions at database level  (dipti shah <shahdipti1980@gmail.com>)
Список pgsql-general
On 18/02/10 10:54, dipti shah wrote:
> Okay then I think below works:
>
>     1. Revoke permission ALL permissions from PUBLIC on schema.
>
>                REVOKE ALL ON ALL TABLES IN SCHEMA mySchema FROM PUBLIC;
>
>     2. Give store procedure for creating table with SECURITY DEFINER marked
> so that all tables owner will be "postgres" user.
>     3. Grant SELECT permission to required group on created table.
>     4. Give store procedure for droping the table with SECURITY DEFINER
> marked so that droping will happen in the context of "postgres" user.
>
> I think above will not allow anyone to create and/or drop tables directly
> without using store procedures.
>
> Please let me know if I am missing anything.

Sounds about right. Always test though.

--
   Richard Huxton
   Archonet Ltd

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

Предыдущее
От: dipti shah
Дата:
Сообщение: Re: Define permissions at database level
Следующее
От: dipti shah
Дата:
Сообщение: Re: Define permissions at database level