I have a procedure in a procedure. The inner procedure
contains out parameter. How I can call the inner procedure
in the out procedure and send the inner procedure parameter
value(out parameter value) into out procedure?
Answer Posted / bhavani sharan singh
Hi,
If i am correctly understand your question then solution is
given below,
Suppose the Inner procedure is
Prc_inner(pov_out_param OUT varchar2 )
and Outer Procedure is
Prc_outer( pov_out_paaram2 OUT varchar2)
as
lv_out_param VARCHAR2(SIZE)
begin
Prc_inner(lv_out_param );
--Assiging the inner value to outer procedure paramaeter
pov_out_param := lv_out_param ;
EXCEPTIOn
when others then
NULL;
END
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is sql open source?
what is a table called, if it has neither cluster nor non-cluster index? What is it used for? : Sql dba
What is keys and its types?
What are properties of the transaction?
How do I add a primary key to a table?
Where the sql database files are stored?
Is it important to partition hard disk?
What kind of join is join?
how to include numeric values in sql statements? : Sql dba
what is the syntax used for partition in tsql? : Transact sql
Explain lock escalation? : Transact sql
how many values can the set function of mysql take? : Sql dba
Which is better cte or subquery?
when MSQL8.0 is in market
What is difference between cursor and trigger?