Call Stored procedure from another Stored procedure.

2001-06-13 Thread Bartolo, David
Hi all, This may have been discussed earlier, but can I call a stored procedure from another stored procedure? What access must be given to the calling SP to the called SP, and syntax from the calling SP. TIA David -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author

RE: Call Stored procedure from another Stored procedure.

2001-06-13 Thread Guy Hammond
To: Multiple recipients of list ORACLE-L Hi all, This may have been discussed earlier, but can I call a stored procedure from another stored procedure? What access must be given to the calling SP to the called SP, and syntax from the calling SP. TIA David -- Please see the official ORACLE-L FAQ: http

RE: Call Stored procedure from another Stored procedure.

2001-06-13 Thread MacGregor, Ian A.
earlier, but can I call a stored procedure from another stored procedure? What access must be given to the calling SP to the called SP, and syntax from the calling SP. TIA David -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Bartolo, David INET: [EMAIL PROTECTED] Fat

RE: Call Stored procedure from another Stored procedure.

2001-06-13 Thread MacGregor, Ian A.
To: Multiple recipients of list ORACLE-L Hi all, This may have been discussed earlier, but can I call a stored procedure from another stored procedure? What access must be given to the calling SP to the called SP, and syntax from the calling SP. TIA David -- Please see the official ORACLE-L FAQ: http

Re: Call Stored procedure from another Stored procedure.

2001-06-13 Thread nlzanen1
/nlzanen1/External/MEY/NL) O.edu Subject: Call Stored procedure from another Stored procedure. Sent by: [EMAIL

Re: call stored procedure from a stored procedure

2001-05-03 Thread Witold . Iwaniec
Let say you have my_procedure1 (param1 IN VARCHAR, param2 OUT VARCHAR); In procedure2 code you could write: PROCEDURE my_procedure2 AS par_1 VARCHAR2(10) := My Test; par_2 VARCHAR2(5); BEGIN my_procedure1(par_1, par_2); DBMS_OUTPUT.PUT_LINE(par_2); -- etc END; HTH