Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Progress ODBC Connection Problem

12 views
Skip to first unread message

Bill Phillips

unread,
Mar 25, 2008, 10:14:00 AM3/25/08
to
I am trying to create an SSIS package. I am using SQL Server 2005 and am
trying to connect to a progress 9.1E db. I have the Datadirect drivers setup
on the SQL server and can connect to the Progress db if I go through
Administrative Tools-ODBC.

I tried creating the import through SMS right clicking the SQL db - Tasks -
Import data. I used the .NET ODBC driver, created the dsn, uid and password
for the connection string. I then click NEXT until I reach the query dialog
box. For testing I am creating a trivially simple query where I am selecting
3 fields from my Progress db. I have tried both of the following queries:

SELECT prod
cono
whse
FROM PUB.icsw


SELECT PUB.icsw.prod
PUB.icsw.cono
PUB.icsw.whse
FROM PUB.icsw

I get the following error for all variations of the query:

SQL Server Inport & Export Wizard
The statement could not be parsed. ERROR [42000] [DataDIrect][ODBC PROGRESS
Driver][PROGRESS]Syntax Error (7587) (PGPRO918.DLL)

I ahve not been able to find any solutions to this problem. Does anyone have
any additional ideas as to why I am getting this error?

Thanks,

Ross Culver

unread,
Mar 27, 2008, 9:10:25 AM3/27/08
to
Try
SELECT prod, cono, whse
FROM PUB.icsw

Ross

"Bill Phillips" <BillPh...@discussions.microsoft.com> wrote in message
news:4BAE2AF1-64E1-464C...@microsoft.com...

刘俊谅

unread,
Apr 4, 2008, 12:31:59 PM4/4/08
to

"Bill Phillips" <BillPh...@discussions.microsoft.com> 写入消息
news:4BAE2AF1-64E1-464C...@microsoft.com...

> I AM A CHINESE,I WANT LEARN ENGLISH, EVERYONE ALLOW TECHING WITH ME:) :)
> Thanks,

Bruce

unread,
Apr 25, 2008, 3:39:00 PM4/25/08
to
Try:
SELECT PUB."icsw"."prod", PUB."icsw"."cono", PUB."icsw"."whse"
FROM PUB."icsw"

Jesusma

unread,
Dec 2, 2009, 1:45:01 PM12/2/09
to
Hi, Try

SQL SELECT "prod", "cono", "whse"
FROM PUB.icsw

0 new messages