Обсуждение: multiple users

Поиск
Список
Период
Сортировка

multiple users

От
Jaume Pausas
Дата:
Does postgresql support multiple different users of a db?

If I want for example 2 users with different level of privilege, how can
i do it?



Re: [GENERAL] multiple users

От
Paul Branston
Дата:
Yes. It respects the normal database rules

grant select,update on table1 to user1;
grant select on table1 to user2;

'help grant'  st the psql prompt should help.

Paul

On Thu, 3 Feb 2000, Jaume Pausas wrote:

> Does postgresql support multiple different users of a db?
>
> If I want for example 2 users with different level of privilege, how can
> i do it?
>
>
>
> ************
>