Re: I need to take metadata from a shell script.

Поиск
Список
Период
Сортировка
От Scott Mead
Тема Re: I need to take metadata from a shell script.
Дата
Msg-id n2yd3ab2ec81005060813z922572e5x71984b85de78b600@mail.gmail.com
обсуждение исходный текст
Ответ на I need to take metadata from a shell script.  ("Jaume Calm" <jaume@isac.cat>)
Список pgsql-general


On Thu, May 6, 2010 at 3:57 AM, Jaume Calm <jaume@isac.cat> wrote:

Hi! I was searching for a command like pg_dumpall but with the difference that I don’t want a single file for all databases, i would like to have a file for each one.

 

I couldn’t fins such command, so the only option I see is to write a shell script with a loop for all the DBs. The problem is that I’m unable to find the way to obtain the DBs’ names in a shell script. Can someone help me with this?



 for line in  `psql -t postgres -c "select datname from pg_database" `; do printf "$line\n"; done

--Scott

 

Best regards and thank you all for your time.

 

 


В списке pgsql-general по дате отправления:

Предыдущее
От: Dave Vitek
Дата:
Сообщение: pre-existing shared memory block is still in use after crashes
Следующее
От: Andy Colson
Дата:
Сообщение: Re: I need to take metadata from a shell script.