Re: Exporting data from PostgreSQL

Поиск
Список
Период
Сортировка
От Michael Glaesemann
Тема Re: Exporting data from PostgreSQL
Дата
Msg-id 58586F66-9D95-11D7-B593-0005029FC1A7@myrealbox.com
обсуждение исходный текст
Ответ на Re: Exporting data from PostgreSQL  ("paul butler" <paul@entropia.co.uk>)
Ответы Re: Exporting data from PostgreSQL  (Jeff Eckermann <jeff_eckermann@yahoo.com>)
Список pgsql-novice
On Friday, Jun 13, 2003, at 16:38 Asia/Tokyo, paul butler wrote:
> Go into psql
>
> mfx=# \pset fieldsep '\t'       // sets field delimiter to tab
> Field separator is '    '.
> mfx=# select * from actor;     // make your query
> mfx=# \o d:\A\tester.txt       // set file to output results
> mfx=# select * from actor;    // execute query

Thanks, Paul! That is exactly what I was looking for. I was able to
make a file! :)
Though, for some reason still unknown to me, it wasn't tab-delimited,
even though I entered the commands above and I got back the "Field
separator is '  '." line. It came out the standard pipes and dashes,
though that's easily cleaned up in BBEdit. I'll do a bit more reading
about psql and see if I can't work it out.

One question. Is there a reason why the query is included twice, once
before and once after the \o line? I tried it omitting the first query
and the results seemed just fine.

Thanks again for your help, Paul!

Michael Glaesemann
grzm myrealbox com


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

Предыдущее
От: "Marcus Andree S. Magalhaes"
Дата:
Сообщение: number of rows
Следующее
От: Alan Searles
Дата:
Сообщение: Re: Converting IBM DB2 TRIGGERs to PostgreSQL