"=?UTF-8?Q?Rodrigo_De_Le=C3=B3n?=" <[EMAIL PROTECTED]> writes:
> On 8/16/07, Joshua_Kramer <[EMAIL PROTECTED]> wrote:
>> If I want to create a role who can create other roles, but not have other
>> SUPERUSER priveleges - how can I do that?
> create role foo createrole login password 'foo';
CREATE
Am Donnerstag, 16. August 2007 17:36 schrieb Joshua_Kramer:
> In the pg_users view - is there a way to differentiate between a role with
> SUPERUSER priveleges, and a user who merely has the CREATEUSER flag?
No, because they are the same.
> If I want to create a role who can create other roles, b
On 8/16/07, Joshua_Kramer <[EMAIL PROTECTED]> wrote:
> In the pg_users view - is there a way to differentiate between a role with
> SUPERUSER priveleges, and a user who merely has the CREATEUSER flag?
select * from pg_roles;
> If I want to create a role who can create other roles, but not have ot
On Aug 16, 2007, at 10:36 , Joshua_Kramer wrote:
In the pg_users view - is there a way to differentiate between a
role with SUPERUSER priveleges, and a user who merely has the
CREATEUSER flag?
If I want to create a role who can create other roles, but not have
other SUPERUSER priveleges
Hello,
In the pg_users view - is there a way to differentiate between a role with
SUPERUSER priveleges, and a user who merely has the CREATEUSER flag?
If I want to create a role who can create other roles, but not have other
SUPERUSER priveleges - how can I do that?
Cheers,
-J
--