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 a segment?
What is the relation of a user account and a schema in oracle?
What is a subquery in oracle?
What is define in oracle?
22. Display the order number, number of lines in the order, total number of items and total value for all orders that have a total value greater than $100
Does facebook use oracle?
What is the data pump import utility?
How to export data with a field delimiter?
How to pass parameters to procedures in oracle?
How can windows applications connect to oracle servers?
How to open a cursor variable?
hey friends, What are the steps I can do to transfer the database from Microsoft Access 2003 to oracle10g (or SQL) Best regards
What is connection pool in oracle?
How do I connect to oracle database?
How does one get the view definition of fixed views/tables?