Re: unbale to list schema - Mailing list pgsql-general

From Erik Wienhold
Subject Re: unbale to list schema
Date
Msg-id wpe4bpabsh6tkg4yb55pxz6skylqakrrcowzhammbxjw3hya6n@wfa5rljvq2vn
Whole thread Raw
In response to unbale to list schema  (Atul Kumar <akumar14871@gmail.com>)
List pgsql-general
On 2024-01-17 19:46 +0100, Atul Kumar wrote:
> I am not able to find any solution to list all schemas in all databases at
> once, to check the structure of the whole cluster.

You have to connect to each database and run the necessary statements
per database.

> As I need to give a few privileges to a user to all databases, their
> schemas and schemas' objects (tables sequences etc.).
> 
> Please let me know if there is any solution/ query that will serve the
> purpose.

What is your environment?  You can do that with psql and shell.

For example, in Bash I use the following pattern: select the relevant
database names and loop over the psql output to connect to each
database to run the relevant statements (\dn in this case to list all
schemas).

    psql postgres --no-psqlrc -A -t -c "select datname from pg_database where datname <> 'template0'" |
        while IFS= read -r dbname
        do
            psql -d "$dbname" -c '\dn'
        done

-- 
Erik



pgsql-general by date:

Previous
From: Johnathan Tiamoh
Date:
Subject: Re: pg_basebackup Restore problem
Next
From: Ron Johnson
Date:
Subject: Re: pg_basebackup Restore problem