Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Get a ref cursor from within another procedure

Status
Not open for further replies.

llmclaughlin

Programmer
Aug 20, 2004
140
0
0
US
I have procedure which returns a ref cursor like.
PROCEDURE DEST_WORK_LIST_DATE (outCURSOR OUT OUTPUTCURSOR)
IS
BEGIN
OPEN outCURSOR FOR
SELECT u_worklist_date, u_worklist_increment
FROM u_worklist_user
WHERE TRUNC (u_worklist_date) = TRUNC (SYSDATE)
AND u_type = 'DESTINATIONALIQUOT';
END DEST_WORK_LIST_DATE;

Is there a way I can call this from another procedure to return the data to it or maybe should say get this cursor into another cursor in another procedure.



Louie
 
What results did you receive when you tried it?

[santa]Mufasa
(aka Dave of Sandy, Utah, USA)
“People may forget what you say, but they will never forget how you made them feel.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top