Re: import CSV file - Mailing list pgsql-sql

From T E Schmitz
Subject Re: import CSV file
Date
Msg-id 45F73742.2080505@numerixtechnology.de
Whole thread Raw
In response to Re: import CSV file  ("D'Arcy J.M. Cain" <darcy@druid.net>)
Responses Re: import CSV file  ("Rodrigo De León" <rdeleonp@gmail.com>)
List pgsql-sql
D'Arcy J.M. Cain wrote:
> On Tue, 13 Mar 2007 20:38:33 +0000
> T E Schmitz <mailreg@numerixtechnology.de> wrote:
> 
>>I am trying to batch-load a tab-separated CSV file:
>>
>>psql -h lolek  -U tes -d stockmarket -c "copy history from 
>>'/tmp/FTSE.csv' CSV";
>>
>>ERROR:  could not open file "/tmp/FTSE.csv" for reading: No such file or 
>>directory
>>
>>The file exists. Do I need to escape the quotes?
> 
> 
> From the "-h" option I assume that the server is not on the local
> machine and hence the file is not available to the server.  You need to
> do something like this:
> 
>   psql -h lolek  -U tes -d stockmarket -c "copy history from STDIN CSV" < /tmp/FTSE.csv
> 

This is pretty ingenious!
Just a few minor problems:
- how does COPY know which column is which?
- how do I specify DELIMITER as TAB?



-- 


Regards/Gruß,

Tarlika Elisabeth Schmitz


pgsql-sql by date:

Previous
From: Jure Kodzoman
Date:
Subject: Re: import CSV file
Next
From: T E Schmitz
Date:
Subject: Re: import CSV file