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


Please Help Members By Posting Answers For Below Questions

What does the hierarchical profiler does?

553


what is the difference between blob and text? : Sql dba

515


How much does sqlite cost?

543


How does sql profiler work?

557


How is pl sql different from sql?

525






How many clustered indexes can you have?

518


Do we need to rebuild index after truncate?

514


how are mysql timestamps seen to a user? : Sql dba

549


What is anonymous block in sql?

625


What is numeric function sql?

529


what are wild cards used in database for pattern matching ? : Sql dba

529


what are the advantages and disadvantages of views in a database? : Sql dba

522


What are sql functions? Describe in brief different types of sql functions?

478


What is the usage of sql functions?

531


What is orm in sql?

522