0
Good afternoon,
I already have some experience with PL/SQL but now I started working with oracle and Packages.
I have a problem from which my package process is receiving two parameters and from it running some tasks working with Bulk Collect, forall and rowtype to fetch the information in various tables.
The question is: I need these parameters to come from another function or cursor and from that return, run my Procedure inside the package. This cursor/function needs to be within the same package as well.
This cursor/function will query an X table and if this table contains some results, they will search from the previous table for the necessary information and insert them in a temporary table that will be consumed by another process.
Has anyone ever worked with it or knows more or less the way I can accomplish it?
Thank you
See if I understand your question ... You want a function that returns a collection, this value must be sent by parameter to your procedure, which will process the information and carry out the implementation in a database. This is the desired flow?
– Confundir
Yeah! Exactly
– Mariana Marchi