I am using oracle pl/sql procedure. I am calling one procedure inside the another. I want to return a cursor from the nested procedure to the outer procedure.Is this possible.How adversely does it affect the procedure if its possible ? below is the calling structure.
Proc1( data1 IN integer, cursor1 OUT SYS_REFCURSOR ) {
Proc2(data2 IN , cursor1 out) {
open cursor1 FOR
select * from table;
}
}