Here is the direct link to the article
http://resources.businesso
mlmcc
Main Topics
Browse All TopicsI have a stored procedure I'm using to return a recordset with a cursor as an out parameter to return a recordset. I'm seeing some strange data when I bring the data into Crystal Reports. In the SQL server world, I'd just go directly to Management Studio, open a 'new query' and execute the procedure... but in SQL server I don't need to use a cursor to return a recordset, I just 'DO' the select. How see the results in 'Oracle SQL Developer' the same way I would in sql server management studio (or the old 'query analyzer') ???
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here is the direct link to the article
http://resources.businesso
mlmcc
check this out too...
http://www.oracle-base.com
Oracle PL\SQL stored procedures by default *DO NOT* return record sets!
I have learned that people with SQL Server experience expect this functionality, but Oracle historically did not provide this via PL\SQL. That may be because the standard Oracle client tools (Oracle Forms and Oracle Reports) built their own record sets internally - they did not depend on PL\SQL for this. In recent versions of Oracle, as Oracle has tried to make their database and software get along better with non-Oracle software, support for "ref cursors", arrays, collections. etc has been added to PL\SQL. But getting a "record set" out of a stored procedure may still be an easier task in SQL Server than in Oracle. Now, getting a stored procedure to perform efficiently and scale well to large numbers of users may be a much easier task in Oracle than in SQL Server.
Both systems have things they do very well, but be aware that they are very different systems, and their strengths and weaknesses are different.
If you are just wanting to run a procedure which returns a ref cursor and you want to see the content of that ref cursor, you can do that in SQLPlus. Here is how ...
http://download.oracle.com
once there, go to
Example 6-15 Using REFCURSOR Variables in Stored Procedures
Business Accounts
Answer for Membership
by: mlmccPosted on 2007-10-05 at 08:47:32ID: 20022841
Oracle requires a ref cursor as the first parameter returned to the report.
ects.com/l ibrary/kba se/article s/ c2001157 .asp
This article is a little old but it is still valid
http://support.businessobj
mlmcc