Re: List users privileges for whole cluster/all databases in the cluster

From: Dominique Devienne <ddevienne(at)gmail(dot)com>
To: Jana Mihalidesová <Mihi(dot)Jana(at)seznam(dot)cz>
Cc: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: List users privileges for whole cluster/all databases in the cluster
Date: 2023-10-12 14:49:50
Message-ID: CAFCRh-972az5YNOJAu7R5aujCPbLGaf8FDAF6bUPHDQTcod-cQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thu, Oct 12, 2023 at 3:42 PM Jana Mihalidesová <Mihi(dot)Jana(at)seznam(dot)cz>
wrote:

> I try to find out some view, select or something what show me the
> privileges for the user across the whole postgresql cluster. The
> username/user is global for whole cluster not individual database, so I
> would like to know the privileges for the user in all databases in the
> cluster using one view, select.
> I know how to list user's privileges in the individual database, but for
> all databases...
>

As Tom already mentioned, this is per-DB. So you have to aggregate the
privileges yourself,
i.e. connect to any DB, lookup all databases the user can connect to, then
connect to each DB
in turn (possibly in parallel using several concurrent connections) to get
the privs in that DB.
This presumes the user doing the lookup can connect to at least the DBs
that user's has access to.

The query below should get you started on the first part. Just move the
can-CONNECT test
to the WHERE-clause instead of the SELECT-clause, and change session_user.
--DD

SELECT datname, datdba::regrole::text as owner,
has_database_privilege(session_user, datname, 'CONNECT') as
can_connect,
has_database_privilege(session_user, datname, 'CREATE') as
can_create
FROM pg_database
WHERE datistemplate = false

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Олег Самойлов 2023-10-12 14:56:10 Re: Can not drop partition if exist foreign keys
Previous Message Tom Lane 2023-10-12 14:25:02 Re: List users privileges for whole cluster/all databases in the cluster