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
How to empty your oracle recycle bin?
What are the components of logical database structure in oracle database?
How do I learn what codesets are available in oracle?
How to login to the server without an instance?
If any one has information regarding interview of NIC (National Informatics Centre),it would be of great help...
What happens to the data files if a tablespace is dropped?
How can you use check constraints for self referential integrity?
What is an index associated with a constraint?
Explain an index?
What is the usage of save points in oracle database?
What is archive log in Oracle?
What are the limitations of check constraint?
How to see the table columns used in an index?
What is index-organized table in Oracle?
Can you assign multiple query result rows to a variable?