can I call a stored procedure from another stored procedure in oracle?give me examples.
Asked
Active
Viewed 590 times
-5
-
Yes............ – Gurwinder Singh Jan 25 '18 at 06:49
-
yes you can, i think it's better if you try it first before you ask – eifla001 Jan 25 '18 at 06:52
1 Answers
0
Suppose you have two procedures, P_FIRST and P_SECOND and want to call P_SECOND from P_FIRST. The simplest example is this:
create or replace procedure p_first as
begin
p_second;
end;
/

Littlefoot
- 131,892
- 15
- 35
- 57