Problem copying polygon data into a table

Поиск
Список
Период
Сортировка
От Brent Wood
Тема Problem copying polygon data into a table
Дата
Msg-id 385493F8.D8D17B68@blazemail.com
обсуждение исходный текст
Ответы Re: [SQL] Problem copying polygon data into a table  (wieck@debis.com (Jan Wieck))
Re: [SQL] Problem copying polygon data into a table  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-sql
I have an text file in the format:

800|((180.87575,-45.98757),(180.87868, -45.98798),...,(Xn,Yn))

to be read into a table of:
 attr        type
id          int
region   polygon

using the command

copy <table> from '<file>' using delimiters '|';

The polygon has about 800 vertices (& is relatively small as some of the
polygons in my dataset go).

Trying to copy this into the table generates the error msg:

ERROR: Tuple is too big: size 12892

Does this mean that I've done summat incorrect, or that there is an
undocumented limit in what can be loaded in a "copy" command, or a limit
in the size (not area) of a polygon attribute?

The message gives me the impression that there is a limit in the length
of the string representing the polygon, so I could possibly fit more
vertices by reducing the precision of each, but it still implies a limit
which may render PostgreSQL unsuitable for my purposes.


Any advice appreciated....
 Thanks,
    Brent



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

Предыдущее
От: Alex Howansky
Дата:
Сообщение: Re: [SQL] how to tell the difference between empty field and null field
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [SQL] how to tell the difference between empty field and null field