Newbie question: How to check how many user avaliable at postgreSQL?

Started by Carfield Yimalmost 25 years ago3 messagesgeneral
Jump to latest
#1Carfield Yim
carfield@programmer.net

I am a new user of PostgreSQL dbms, how can I check how many users
avaliable at PostgreSQL?
--

Carfield Yim, visit my homepage at http://www.carfield.com.hk

#2Carfield Yim
carfield@programmer.net
In reply to: Carfield Yim (#1)
Re: Newbie question: How to check how many user avaliable at postgreSQL?

Carfield Yim wrote:

I am a new user of PostgreSQL dbms, how can I check how many users
avaliable at PostgreSQL?

I mean the user created by createuser command.
--

Carfield Yim, visit my homepage at http://www.carfield.com.hk

#3Nils Zonneveld
nils@mbit.nl
In reply to: Carfield Yim (#1)
Re: Newbie question: How to check how many user avaliable at postgreSQL?

Carfield Yim wrote:

Carfield Yim wrote:

I am a new user of PostgreSQL dbms, how can I check how many users
avaliable at PostgreSQL?

I mean the user created by createuser command.

To get a listing of all the catalogtables:

select relname from pg_class where relname like 'pg_%';

You will discover that this includes the table pg_user. To get a listing
of all the users in the postgres installation:

select usename from pg_user;

HTH,

Nils Zonneveld