Re: Best import approach? Delimiters in strings

Поиск
Список
Период
Сортировка
От Adrian Klaver
Тема Re: Best import approach? Delimiters in strings
Дата
Msg-id 511FD02D.70703@gmail.com
обсуждение исходный текст
Ответ на Re: Best import approach? Delimiters in strings  (Andrew Taylor <andydtaylor@gmail.com>)
Список pgsql-general
On 02/16/2013 09:52 AM, Andrew Taylor wrote:
> Unfortunately my starting point is data in the format of that example
> line. I hasn't spotted the lack of quotes on the first value. Given this
> format, is my best bet to write a script transforming it pre-import to
> postgres? I.e. are there no arguments I could pass to the import process
> to handle this directly? Thanks
>

Right now you are processing as text so:

http://www.postgresql.org/docs/9.2/interactive/sql-copy.html

Text Format

...Backslash characters (\) can be used in the COPY data to quote data
characters that might otherwise be taken as row or column delimiters. In
particular, the following characters must be preceded by a backslash if
they appear as part of a column value: backslash itself, newline,
carriage return, and the current delimiter character...

Option 1

If you want to continue to do that you need to escape the delimiter
character or create the *.txt file with a different delimiter, I usually
use '|'.

Option 2
Use the CSV format. By default the delimiter character is a comma and
the quote character is ". So

copy STOPS_LondonBuses from
'/home/andyt/projects/django-stringer/txc/OId_HY/GTFS/stops.txt' WITH
FORMAT csv;


--
Adrian Klaver
adrian.klaver@gmail.com

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

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Best import approach? Delimiters in strings
Следующее
От: Kevin Grittner
Дата:
Сообщение: Re: PG9.2.3. Query hanging: SELECT count(*) FROM pg_catalog.pg_class...