Re: [despammed] \d output to a file

Поиск
Список
Период
Сортировка
От Geoffrey
Тема Re: [despammed] \d output to a file
Дата
Msg-id 41C0570A.7010505@3times25.net
обсуждение исходный текст
Ответ на Re: [despammed] \d output to a file  (Andreas Kretschmer <akretschmer@despammed.com>)
Ответы Re: [despammed] \d output to a file  (Kretschmer Andreas <andreas_kretschmer@despammed.com>)
Список pgsql-novice
Andreas Kretschmer wrote:
> am  15.12.2004, um  6:38:22 -0800 mailte sarlav kumar folgendes:
>
>>Hi All,
>>
>>I would like to write the output of the \d command on all tables in a database to an output file. There are more than
200tables in the database. I am aware of \o command to write the output to a file. But, it will be tough to do the \d
foreach table manually and write the output to a file. Is there a command/ way in which I can achieve this without
havingto do it for each table? 
>>Any help in this regard would be really appreciated.
>
>
> You can write a little shell-script to list all tables via \d and parse
> the output to generate for each table a '\d table'.

Or:

for table in $(<filethatcontainsalistofthetables); do

    echo "\d $table" | psql $DATABASE > ${table}.out
done

--
Until later, Geoffrey

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

Предыдущее
От: Geoffrey
Дата:
Сообщение: Re: \d output to a file
Следующее
От: Kretschmer Andreas
Дата:
Сообщение: Re: [despammed] \d output to a file