Advertisement

06.09.2008 at 04:40PM PDT, ID: 23470917
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

10.0

Return recordset from Oracle via Linked Server and OPENQUERY

Asked by bryanparke in MS SQL Server, Oracle Database

Tags: , , ,

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

Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
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')
[+][-]06.09.2008 at 08:07PM PDT, ID: 21748210

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06.16.2008 at 08:21PM PDT, ID: 21799358

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.19.2008 at 10:48AM PDT, ID: 21824600

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]06.19.2008 at 02:13PM PDT, ID: 21826548

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: MS SQL Server, Oracle Database
Tags: Microsoft, SQL Server, 2000, Linked Server
Sign Up Now!
Solution Provided By: angelIII
Participating Experts: 2
Solution Grade: A
 
 
[+][-]06.20.2008 at 09:47AM PDT, ID: 21832900

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628