how to invoke a procedure from another procedure in plsql
give me the code........
Thanks
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shankar MPosted Nov 9, 2012, 4:53 AM
Here is the Code:
CREATE PROCEDURE p_procexec
IS
BEGIN
palindrome;
END;
Here palindrome is the Procedure name for the Procedure which you are Calling from p_procexec.
Thanks,
Shankar