Re: Moving data from SQL Server to Postgres via VFP ODBC Driver

Поиск
Список
Период
Сортировка
От Richard Broersma
Тема Re: Moving data from SQL Server to Postgres via VFP ODBC Driver
Дата
Msg-id AANLkTik8QBPwGOTbRpdXm+3+6O2wJ1LE5P3WnmPwcyyB@mail.gmail.com
обсуждение исходный текст
Ответ на Moving data from SQL Server to Postgres via VFP ODBC Driver  (Calvin <calvinsmith266@hotmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Calvin
Дата:
Сообщение: Moving data from SQL Server to Postgres via VFP ODBC Driver
Следующее
От: Richard Broersma
Дата:
Сообщение: Re: Moving data from SQL Server to Postgres via VFP ODBC Driver