Re: How to get the users name from users group?

From: Jignesh Shah <jignesh(dot)shah1980(at)gmail(dot)com>
To: Magnus Hagander <magnus(at)hagander(dot)net>
Cc: pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: How to get the users name from users group?
Date: 2010-02-19 11:39:04
Message-ID: c11950271002190339l21dc323ewa7b173e96a005a15@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Exactly the same!

Thanks a ton.

On Fri, Feb 19, 2010 at 3:58 PM, Magnus Hagander <magnus(at)hagander(dot)net>wrote:

> 2010/2/19 Jignesh Shah <jignesh(dot)shah1980(at)gmail(dot)com>:
> > Hello All,
> >
> > I have created role "database-users" and inserted some of users inside
> it. Could you tell me which query to use for listing out those users name? I
> went through pg_users, pg_group but no luck.
> >
> > CREATE ROLE database-users
> > NOSUPERUSER INHERIT NOCREATEDB NOCREATEROLE;
> >
> > CREATE ROLE "dbuser1" LOGIN
> > NOSUPERUSER INHERIT NOCREATEDB NOCREATEROLE;
> > GRANT database-users TO "dbuser1";
> >
> > CREATE ROLE "dbuser2" LOGIN
> > NOSUPERUSER INHERIT NOCREATEDB NOCREATEROLE;
> > GRANT database-users TO "dbuser2";
> >
> > How to query database-users to list the dbuser1 and dbuser2?
>
> I think you're looking for:
> SELECT rolname from pg_authid a INNER JOIN pg_auth_members m ON
> m.member=a.oid WHERE m.roleid=(SELECT oid FROM pg_authid WHERE
> rolname='database-users')
>
> or something similar to that.
>
>
> --
> Magnus Hagander
> Me: http://www.hagander.net/
> Work: http://www.redpill-linpro.com/
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Alban Hertroys 2010-02-19 11:43:12 Re: Getting number of affected row after performing update
Previous Message Alban Hertroys 2010-02-19 11:24:24 Re: Setting a table to be ignored by autovacuum