Re: import CSV file

Поиск
Список
Период
Сортировка
От T E Schmitz
Тема Re: import CSV file
Дата
Msg-id 45F80A81.3010900@numerixtechnology.de
обсуждение исходный текст
Ответ на Re: import CSV file  ("Rodrigo De León" <rdeleonp@gmail.com>)
Ответы Re: import CSV file
Список pgsql-sql
Rodrigo De León wrote:
> On 3/13/07, T E Schmitz <mailreg@numerixtechnology.de> wrote:
> 
>> This is pretty ingenious!
>> Just a few minor problems:
>> - how does COPY know which column is which?
>> - how do I specify DELIMITER as TAB?
> 
> 
> See:
> http://www.postgresql.org/docs/8.2/static/sql-copy.html

Thank you for the links. I had read of the manual entry for the COPY 
command and I know that I need something like

psql -h lolek  -U tes -d stockmarket -c "copy history from STDIN 
DELIMITER AS TAB CSV" < /tmp/FTSE.csv

My problem is how to specify the tab character on the command line 
seeing as the COPY command is already enclosed in quotes.
When creating CSV output I use -F $'\t' on Unix. However,
DELIMITER AS $'\t' doesn't work.

>> Also, it's nopt happy about the date format : 2007/02/09
> 
> See:
> http://www.postgresql.org/docs/current/static/runtime-config-client.html#GUC-DATESTYLE 

-- 


Regards,

Tarlika Elisabeth Schmitz


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

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: How to declare cursor if tablename is a variable?
Следующее
От: T E Schmitz
Дата:
Сообщение: Re: import CSV file