Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Calling a procedure from a procedure

Re: Calling a procedure from a procedure

From: Sybrand Bakker <postbus_at_sybrandb.demon.nl>
Date: Tue, 6 Feb 2001 01:14:59 +0100
Message-ID: <t7ugc9p05qi804@beta-news.demon.nl>

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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US