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
mention if it is possible to import data directly from t-sql commands without using sql server integration services? If yes, what are the commands? : Transact sql
Which are the different character-manipulation functions in sql?
What is the purpose of the partition table?
What are different joins used in sql?
How to read/write files from pl/sql?
Are ddl triggers fired for ddl statements within a pl/sql code executed using the dbms.sql package?
what are the differences between public, private, protected, static, transient, final and volatile? : Sql dba
What does trigger mean in psychology?
Does sql between include endpoints?
How to change the order of columns in Oracle SQL Plus ?
Explain how to use transactions efficiently : transact sql
How can check sql version from command line?
What is sql server and ase?
Can we connect to postgresql using sql developer?
What is mdb stand for?