Re: Question About Roles - Mailing list pgsql-general

From David G Johnston
Subject Re: Question About Roles
Date
Msg-id 1404310616339-5810189.post@n5.nabble.com
Whole thread Raw
In response to Re: Question About Roles  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Question About Roles  (Rich Shepard <rshepard@appl-ecosys.com>)
List 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 by date:

Previous
From: Rich Shepard
Date:
Subject: Re: Question About Roles [ANSWERED]
Next
From: David G Johnston
Date:
Subject: Re: How can I replace the year of the created_at column with the current year dynamically ?