Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7605157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T00:05:40+00:00 2026-05-31T00:05:40+00:00

I am working on a package that will return two cursors. One cursor is

  • 0

I am working on a package that will return two cursors. One cursor is a list of items with a numeric primary key. The other cursor is a list of files associated with the items

Code so far:

procedure get_items_with_files(
           o_results out sys_refcursor,
           o_files out sys_refcursor
) is 
begin

   begin
      open o_results for
          select item_id,
                 item_name
          from items;
   end;

   begin
      open o_files for
           select item_id
                  item_file_name
           from item_files if
           where if.item_id in (select item_id from TABLE(CAST(o_results)));
   end;
end get_items_with_files;

The areas I am running into problems with:

  1. Getting a missing keyword error on the table(cast(cursor)) section
  2. Can I access the cursor in the code as I am or do i need to copy it to an internal variable? I tried to create a variable of sys_refcursor type and a “set v_cursor := o_results” but got a missing or invalid option error.
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T00:05:41+00:00Added an answer on May 31, 2026 at 12:05 am

    You can’t use the O_RESULTS cursor to open the O_FILES cursor.

    You can query the ITEMS table in order to open both cursors but that introduces the possibility that some data changes between when you open the O_RESULTS cursor and the time you open the O_FILES cursor and that the two result sets are out of sync.

    procedure get_items_with_files(
               o_results out sys_refcursor,
               o_files out sys_refcursor
    ) is 
    begin
    
       begin
          open o_results for
              select item_id,
                     item_name
              from items;
       end;
    
       begin
          open o_files for
               select item_id
                      item_file_name
               from item_files if
               where if.item_id in (select item_id from items);
       end;
    end get_items_with_files;
    

    It would be much more common to return a single cursor that represents the result of joining the two tables

    procedure get_items_with_files(
               o_results out sys_refcursor
    ) is 
    begin
      open o_results for
          select item_id,
                 item_name,
                 item_file_name
            from items
                 join item_files using (item_id);
    end get_items_with_files;
    

    If all your procedure is doing is opening a cursor, however, it would be more common to create a view rather than creating a procedure and then query the view rather than calling the procedure.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In the current package that I am working on for a project I have
I am working on a SSIS package that extracts some data from DB to
I'm working on a Python package named lehmer that includes a bunch of extension
I'm working with SOAP using the javax.xml.soap package. I have a javax.xml.soap.SOAPMessage object that
HI I have a working SmsReceiver and a method that will search to contacts
I'm working on a Mac app that will optionally provide the ability to install
I'm working on a new storage system for a business solution package that consists
Hello, Im working on a solution for Android that will record calls (both out
So i am working on a web service that will obtain data from a
I'm working on a new feature in an existing Perl codebase that will allow

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.