Welcome to dbFreaks.com!
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Progress ODBC Connection Problem

 
   Database Help (Home) -> ODBC RSS
Next:  SQL Native Client throws up error while dealing w..  
Author Message
Bill Phillips

External


Since: Mar 25, 2008
Posts: 1



(Msg. 1) Posted: Tue Mar 25, 2008 7:14 am
Post subject: Progress ODBC Connection Problem
Archived from groups: microsoft>public>sqlserver>odbc (more info?)

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,

 >> Stay informed about: Progress ODBC Connection Problem 
Back to top
Login to vote
Ross Culver

External


Since: Feb 04, 2008
Posts: 7



(Msg. 2) Posted: Thu Mar 27, 2008 8:10 am
Post subject: Re: Progress ODBC Connection Problem [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Try
SELECT prod, cono, whse
FROM PUB.icsw

Ross

"Bill Phillips" wrote in message

>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,

 >> Stay informed about: Progress ODBC Connection Problem 
Back to top
Login to vote
user

External


Since: Apr 05, 2008
Posts: 1



(Msg. 3) Posted: Sat Apr 05, 2008 12:31 am
Post subject: Re: Progress ODBC Connection Problem [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Bill Phillips" 写入消息

> 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 AM A CHINESE,I WANT LEARN ENGLISH, EVERYONE ALLOW TECHING WITH ME:) Smile
> Thanks,
 >> Stay informed about: Progress ODBC Connection Problem 
Back to top
Login to vote
Bruce

External


Since: Oct 26, 2007
Posts: 8



(Msg. 4) Posted: Fri Apr 25, 2008 12:39 pm
Post subject: RE: Progress ODBC Connection Problem [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Try:
SELECT PUB."icsw"."prod", PUB."icsw"."cono", PUB."icsw"."whse"
FROM PUB."icsw"



"Bill Phillips" wrote:

> 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,
 >> Stay informed about: Progress ODBC Connection Problem 
Back to top
Login to vote
Jesusma

External


Since: Dec 02, 2009
Posts: 1



(Msg. 5) Posted: Wed Dec 02, 2009 10:45 am
Post subject: Re: Progress ODBC Connection Problem [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi, Try

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




"刘俊谅" wrote:

>
>
> "Bill Phillips" 写入消息
>
> > 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 AM A CHINESE,I WANT LEARN ENGLISH, EVERYONE ALLOW TECHING WITH ME:) Smile
> > Thanks,
>
 >> Stay informed about: Progress ODBC Connection Problem 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
ODBC connection. - Hello I can create a ODBC connection to another database which is not SQL Server. But when I want to choose a Integration Service Destination connection I am not given any ODBC connection type. I would like to transfer and transform data from a SQL..

ODBC connection - I have a DTS package that runs fine, but I can not view any of the transform data tasks. When ever I try to view them it just times out. The SQL connection I can view and edit fine, but not the ODBC. Even if I try to make a new ODBC connection, it..

ODBC connection using AcuODBC - Hi, The DB of my application is running under SQL Server 2000; I need to create a view of a table that is in an external DB of a COBOL-based application. I have the required driver to create an ODBC connection with it, but I'm not able to use it inside...

ODBC Connection Pool - I have a need to find out when any ODBC connection is made to a certain SQL Server. I assume any/all ODBC connections will have to use TCP port 1433 - since SQL uses only TCP 1433 in this server's case. Is there any SQL method to detect a new ODBC..

How to Tell if My ODBC Connection is to a SQL Server? - What is the usual manner to detect if my ODBC connection (based on a DSN) is connected to an instance of SQL Server (including a specific version of SQL Server such as 2005), as opposed to other RDBMSes such as Oracle, DB2, etc? Are we talking..
   Database Help (Home) -> ODBC All times are: Pacific Time (US & Canada)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]