Re: Read MS-SQL data into Postgres via ODBC link?

From: Sim Zacks <sim(at)compulab(dot)co(dot)il>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Read MS-SQL data into Postgres via ODBC link?
Date: 2011-07-05 07:37:13
Message-ID: 4E12BF29.5090408@compulab.co.il
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I've done similar things with a plpythonu function.

Basically, import the mysql module, call your select statement and then
for each row do a plpy.execute(insert stmt)

Sim

On 07/05/2011 12:10 AM, Jonathan Brinkman wrote:

> Greetings
>
> I'd like to INSERT data into my Postgresql 8.4.8 table directly from an
> ODBC-linked MS-SQL table or view.
>
> I'm looking at using the Cybertec tool "ODBC-LINK"
> (http://www.cybertec.at/en/postgresql_products/odbc-link) but I'm wondering
> if there isn't a way to do this through Postgresql directly?
>
> I saw a post about someone doing a "SELECT * FROM XXX ODBC SOURCE" or
> something like that
> (http://archives.postgresql.org/pgsql-odbc/2009-07/msg00032.php) and that
> would be cool. I don't need to import massive datasets, only 20-30K records
> at a time.
>
> Thanks much
>
> Jonathan
>
>
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Daniel Farina 2011-07-05 07:43:08 Re: Finding latest record for a number of groups in an INSERT-only table
Previous Message Simon Riggs 2011-07-05 07:32:30 Re: Finding latest record for a number of groups in an INSERT-only table