Write a simple Store procedure and pass parameter to it ?
Answer Posted / sanjay
Create Or Replace Procedure Test(p_Var1 In Number)
As
v_Var1 Number;
Begin
v_Var1 := p_Var1;
Dbms_Output.Put_Line(v_Var1);
Exception
When Others Then
Dbms_Output.Put_Line(Sqlerrm(Sqlcode));
End Test;
/
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain an exception and its types?
How to empty your oracle recycle bin?
20. Using a set operator, display the client number of all clients who have never placed an order.
Using the relations and the rules set out in the notes under each relation, write statements to create the two sequence generators specified in the notes.
How to use subqueries in the from clause in oracle?
How to create a new table in oracle?
How do I uninstall oracle client from windows?
How to test null values?
What is a nested table?
What is the implicit cursor in oracle?
What is an oracle wallet?
How to drop an index in oracle?
How do I start tns listener?
Can we write dml statement in function in oracle?
How to check the oracle tns settings?