Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

can we call a procedure into another procedure?If yes means
how you can pass the perameters for the two procedures?

Answer Posted / swapna

while creating a procedure body we can call other procedure
in that body

for example if your creating the procedure body p1 we can
call the procedure p2 in the procedure body p1

syntax

create or replace procedure p1(a number) is
b number;
begin
p1(10);-- calling first procedure
end;
when you execute procedure p1
exec p1(10) -- it will execute both p1 and p2

Is This Answer Correct ?    9 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is over () in sql?

1014


What is sql trigger example?

1115


what are date and time intervals? : Sql dba

1105


what is a database? : Sql dba

1242


What is a loop in sql?

1037


What are % type and % rowtype?

1083


What are the advantages of pl sql over sql?

1078


How does join work in sql?

1054


Which command is used to call a stored procedure?

1055


How do I get sql certification?

1018


What is a sql select statement?

1082


How do I remove sql plus from windows 10?

1147


What are the types of variables use in pl sql?

1093


Where is sql database stored?

1039


explain the difference between bool, tinyint and bit. : Sql dba

1063