Re: Question About Roles

Поиск
Список
Период
Сортировка
От David G Johnston
Тема Re: Question About Roles
Дата
Msg-id 1404310616339-5810189.post@n5.nabble.com
обсуждение исходный текст
Ответ на Re: Question About Roles  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Question About Roles  (Rich Shepard <rshepard@appl-ecosys.com>)
Список pgsql-general
Tom Lane-2 wrote
> Rich Shepard <

> rshepard@

> > writes:
>> ... my question is what do I need to do so when a user is added to the
>> system the local administrator and the group specified during the
>> createuser
>> process, she or he can be granted that group's privileges?
>
> I might be misunderstanding, but I think you're looking for GRANT/REVOKE:
>
>   GRANT rolename TO newuser;

or if you want to do it as part of creating a new user:

CREATE ROLE new_management_user
[other stuff here]
IN ROLE management;

http://www.postgresql.org/docs/9.2/interactive/sql-createrole.html




--
View this message in context: http://postgresql.1045698.n5.nabble.com/Question-About-Roles-tp5810176p5810189.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.


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

Предыдущее
От: Rich Shepard
Дата:
Сообщение: Re: Question About Roles [ANSWERED]
Следующее
От: David G Johnston
Дата:
Сообщение: Re: How can I replace the year of the created_at column with the current year dynamically ?