Link to home
Start Free TrialLog in
Avatar of bryanparke
bryanparke

asked on

Return recordset from Oracle via Linked Server and OPENQUERY

I have verified that I am able to use OPENQUERY to query tables in the linked server, even the table being queried from within the oracle stored procedure.  I have already executed the oracle stored procedure from the oracle command line utility and it works properly.

I have tried so many variations of the openquery and changes to the oracle procedure that i'm out of options.  Here is the error message i receive when running the openquery (see code snippet's).

(note: i have tried it using the MS Oledb Driver for Oracle and the Oracle provided drivers, same result, though a slightly different message - both still indicate the "no columns" issue)

OLE DB error trace [Non-interface error:  OLE DB provider unable to process object, since the object has no columnsProviderName='OraOLEDB.Oracle', Query=GET_AGE_OF_FIRST_OFFENSE'].
Msg 7357, Level 16, State 2, Line 1
Could not process object 'GET_AGE_OF_FIRST_OFFENSE'. The OLE DB provider 'OraOLEDB.Oracle' indicates that the object has no columns.

To give the bigger picture, a third party vendor (with an oracle database) has some data for our application to consume. Our application is limited to only using OPENQUERY to get that data and insert it into our database for later processing.  For 99% of the data the vendor has provided views that we can query without any issues using OPENQUERY - however, they have one stored procedure that returns a ref cursor and we need to receive it via OPENQUERY and subsequently insert it into one of our local tables (its more complicated than that, but suffice to say, we are stuck with openquery and stuck with the remote data coming from a stored procedure).

If all were working well we would do something like this

INSERT INTO OUR_LOCAL_TABLE
EXEC(@SQL)

where @SQL contains the openquery dynamic SQL - again, this works wonderfully when the remote data is in a view, but we get the above error when the remote data is in a stored procedure.

thank you


Oracle code example:
create or replace PROCEDURE GET_AGE_OF_FIRST_OFFENSE  
( t_cursor OUT SYS_REFCURSOR ) 
AS
BEGIN
    OPEN t_cursor FOR 
        select * from age_of_first_offense;
END GET_AGE_OF_FIRST_OFFENSE;
 
Openquery example(s):
select * from openquery(ORACLE_TEST,'GET_AGE_OF_FIRST_OFFENSE')

Open in new window

Avatar of dotnetpro
dotnetpro

How about if you did like this in the last line of your code snippet ?
select * from openquery(ORACLE_TEST,'Execute GET_AGE_OF_FIRST_OFFENSE'). I think with in the single quotes it should be a proper Oracle syntax for executing a sproc.

Avatar of bryanparke

ASKER

For some reason it (Oracle) still doesn't accept this, same exact error.  I'm at a loss. Thanks for the suggestion.
ASKER CERTIFIED SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
thank you angellll - i will give this a try.  because we didn't find a way to make a stored procedure to work, the external vender re-wrote the procedure into a view (must be a nasty looking view in order to do what we needed, but they made it happen) - so for now the problem is averted, but i'm sure we will run into this again.  I'm going to give you the points because i'm sure it will work.  thanks again.