Re: importing downloaded data

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Sim Zacks <sim(at)compulab(dot)co(dot)il>, PostgreSQL general <pgsql-general(at)postgresql(dot)org>
Subject: Re: importing downloaded data
Date: 2014-04-22 14:52:18
Message-ID: 53568222.50900@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 04/22/2014 07:39 AM, Sim Zacks wrote:
> Postgresql 9.3
> I am downloading data that I want to import into a table. The data comes
> in tab delimited, CRLF format.
> I am using plpython to get the data and I wanted to use copy with stdin
> to import it without having to save it to a file.
> To do this, I am setting sys.stdin to a StringIO object with my data inside.

Not sure that is going to work as:

STDIN

Specifies that input comes from the client application.

I would say a plpython function is actually running as the server and is
not a client.

>
> However, when I call copy I am getting SPI_ERROR_COPY, which the docs
> define as "if COPY TO stdout or COPY FROM stdin was attempted" which is
> exactly what I am trying to do (so the error is logical).
>
> Is there another method of loading delimited data in bulk without saving
> it as a file?

I do it by pushing the data in using a Python script that uses the the
COPY FROM/TO methods of psycopg2:

http://initd.org/psycopg/docs/usage.html#using-copy-to-and-copy-from

>
> Thanks
> Sim

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Torsten Förtsch 2014-04-22 15:03:46 Re: Is this a planner bug?
Previous Message Tom Lane 2014-04-22 14:45:58 Re: Is this a planner bug?