Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Calling a procedure from a procedure
Yes it is possible.
create procedure bar is
begin
null;
end;
create procedure foo is
begin
bar;
end;
Hth,
Sybrand Bakker, Oracle DBA
<alvie_at_my-deja.com> wrote in message news:95n8p0$lci$1_at_nnrp1.deja.com...
> Hi group
> Is it possible to call a procedure from a procedure? I have a parent
> child relationship where I INSERT INTO the parent table, then I want to
> call a procedure (from the parent INSERT procedure )that INSERTS INTO
> the child.
>
> thanks
>
>
> Sent via Deja.com
> http://www.deja.com/
Received on Mon Feb 05 2001 - 18:14:59 CST
![]() |
![]() |