in procedure how to return a value
Answers were Sorted based on User's Feedback
Answer / amit
In a procedure, we can return a value using OUT PARAMETER
or EVEN USING IN OUT PARAMETER.
For Eg:
CREATE OR REPLACE PROCEDURE add_num(a IN NUMBER, b IN OUT
NUMBER) IS
BEGIN
b:= a + b;
END add_num;
The IN OUT / OUT parameters can be modified within PLSQL
block and the updated values of this parameter can be
refered using a actual paramter once the execution of this
procedure is completed.
| Is This Answer Correct ? | 8 Yes | 0 No |
In procedure we can return value using Out Parameter,
| Is This Answer Correct ? | 1 Yes | 3 No |
If there is any issue then whom do you report.(this is imp question for every interview)
In hierarchical structure of a database? we have write query from where we should start?
How You Will display the key flexifields in your report
Hi, Anybody please send me the Oracle APPS 1i technical interview questions (Real time) as wel as sample resume also?
what are the tables of auto invoice.
hi friends! i need sample codes for oracle apps 11i conversion and interfaces.If u have,plz send me
2 Answers Pathway Technologies,
What is the difference between BPA AND Contract.
Attribute data types?
what is the purpose of standard cost update?
PL/SQL stored procedure parameters?
Oracle E-Business suite?
HOW CAN YOU KNOW UPDATE STMT IS WORKED OR NOT IN PL/SQL?