-5

can I call a stored procedure from another stored procedure in oracle?give me examples.

diya
  • 1
  • 3

1 Answers1

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