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

Answer Posted / madhuri

We can call a procedure into another procedure.

create or replace procedure proc1(empno number) is
begin
proc2(20,'CLERK');
end;

When we execute proc1 as follows
exec proc1(7891);

it will execute proc1 and proc2 as well

Is This Answer Correct ?    7 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the difference between union and union all? : Sql dba

548


how to delete an existing column in a table? : Sql dba

554


What is pls_integer in pl sql?

542


How do I remove duplicates in two columns?

510


How do you go back in sql?

535






what is a database lock ? : Sql dba

594


What is the difference between function, procedure and package in pl/sql?

562


what is a relationship and what are they? : Sql dba

552


What is the maximum number of columns in sql table?

551


Does inner join return duplicate rows?

522


What is an oracle stored procedure?

593


What is the life of an sql statement?

527


How many tables can you join in sql?

535


Is sql a backend language?

625


First round ------------------- - Procedure - Packages - Views - Virtual tables - Can we use dcl with in function? - Joins and few scenarios - Triggers and its type - Pragma, type and its functionality - How to create db link in oracle - Materialized view - How to find duplicate values from table? - Cursor and its functionality - Write a script to display friday and its date from a entire year. - Exception Handling Second round ------------------------ Gave a scenario like. Need to write a function to perform. When user try to change a password. It must not be last five password and a given password can be combination of characters, symbols, upper and lower case.

1143