Re: dumping 8M bit fields

Поиск
Список
Период
Сортировка
От Jeff Davis
Тема Re: dumping 8M bit fields
Дата
Msg-id 1158944469.7578.30.camel@dogma.v10.wvs
обсуждение исходный текст
Ответ на dumping 8M bit fields  (Rajarshi Guha <rguha@indiana.edu>)
Список pgsql-general
On Thu, 2006-09-21 at 20:14 -0400, Rajarshi Guha wrote:
> Hi, I have a table with 8M rows and one of the fields is a bit (1024
> bits) field. I am trying to dump the bit field for 8M rows to a file:
>
> psql -U cicc3 -A -F " " -t -o pubchem.fp -c "select cid,gfp from
> pubchem_compound;
>
> However I get
>
> out of memory for query result
>

psql is trying to load all of the data into RAM before outputting any of
it. More specifically, it's trying to load all of the output
representations of all the data into RAM before outputting it.

For 1024 bits, the output representation will be 1k. For 8M rows that's
a lot of RAM needed.

It would be better to use something like COPY or a cursor.

Regards,
    Jeff Davis


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

Предыдущее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: CLUSTERing on Insert
Следующее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: postgresql rising