Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Circular references between stored procedures

779152Jun 14 2010 — edited Nov 23 2011
Hi, i need help about circular references. I have two stored procedures that references like that:

create or replace
procedure ciclico2 as
begin
ciclico1;
end;

create or replace
procedure ciclico1 as
begin
ciclico2;
end;

I can't compile both... so i want to know if there are ways to do that...

Thanks

Marcos (from Argentina... with a medium level english)
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 21 2011
Added on Jun 14 2010
8 comments
1,443 views