Re: unbale to list schema

Поиск
Список
Период
Сортировка
От Erik Wienhold
Тема Re: unbale to list schema
Дата
Msg-id wpe4bpabsh6tkg4yb55pxz6skylqakrrcowzhammbxjw3hya6n@wfa5rljvq2vn
обсуждение исходный текст
Ответ на unbale to list schema  (Atul Kumar <akumar14871@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Johnathan Tiamoh
Дата:
Сообщение: Re: pg_basebackup Restore problem
Следующее
От: Ron Johnson
Дата:
Сообщение: Re: pg_basebackup Restore problem