Import from CSV - Mailing list pgsql-admin

From xuan thang
Subject Import from CSV
Date
Msg-id 988143.4270.qm@web55509.mail.re4.yahoo.com
Whole thread Raw
Responses Re: Import from CSV
List pgsql-admin
Hi,
I'm using The PostgresSQL Interactive Terminal In PostgresSQL 8.1.4.
When I import a table from csv file by command "copy table from './table.csv' with csv header", DB Engine add a new line sequence (\n) after a new line sequence(\n) in origin data automatically.
Example:
My data in Employee.csv file: (this file is exported by The PostgresSQL Interactive terminal )

ID             Name                                       Address
1               John                                          City (one new line sequence here)
                                                                   Country
2.................................................................................

I use The PostgresSQL Interactive terminal to import this csv file to DB by command:
"\copy Employee from './Employee.csv' with csv header"
After import , I have data in table Employee of Postgres DB.

ID             Name                                       Address
1               John                                          City (original new line sequence here)
                                                                         (a new line sequence added here automaticaly)
                                                                   Country
2.................................................................................

Please help me to import origin data in csv into table.
Thanks alot!
Xuan Thang.




You rock. That's why Blockbuster's offering you one month of Blockbuster Total Access, No Cost.

pgsql-admin by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: moving tablespaces
Next
From: "Phillip Smith"
Date:
Subject: Re: Import from CSV