Re: Moving data from SQL Server to Postgres via VFP ODBC Driver - Mailing list pgsql-odbc

From Richard Broersma
Subject Re: Moving data from SQL Server to Postgres via VFP ODBC Driver
Date
Msg-id AANLkTik8QBPwGOTbRpdXm+3+6O2wJ1LE5P3WnmPwcyyB@mail.gmail.com
Whole thread Raw
In response to Moving data from SQL Server to Postgres via VFP ODBC Driver  (Calvin <calvinsmith266@hotmail.com>)
List pgsql-odbc
On Mon, Aug 9, 2010 at 10:13 AM, Calvin <calvinsmith266@hotmail.com> wrote:
> I am attempting to move data from a SQL Server 2008 database to Postgres v8.4. I
> am using Visual Fox Pro as an intermediate step in this process. I open a
> connection to the SQL tables using the ODBC driver and at the same time open a
> connect to the PostGres table using PostgresSQL30. The reason I am doing it this
> way is I cannot seem to overcome issues concerning bit fields in SQL Server and
> Booleans in Postgres. Using VFP I can do a quick and dirty conversion. However,
> the problem is that when I look at the data in Postgres it converted
> successfully with the exception of varying character fields which have been
> padded to their maximum length. My insert statement is in the form :

It would seem that the string padding is taking place on the
SQL-Server side.  Is there anyway to verify if it is treating the
varchar type as char in its odbc driver?

If you need to you can put the trimming operation in before insert
trigger functions on these columns. But I expect this solution is not
optimal.


--
Regards,
Richard Broersma Jr.

Visit the Los Angeles PostgreSQL Users Group (LAPUG)
http://pugs.postgresql.org/lapug

pgsql-odbc by date:

Previous
From: Calvin
Date:
Subject: Moving data from SQL Server to Postgres via VFP ODBC Driver
Next
From: Richard Broersma
Date:
Subject: Re: Moving data from SQL Server to Postgres via VFP ODBC Driver