how do u call in & out parameters for stored procedures?
Answer Posted / susila
create or replace procedure <pocedure_name>(x in number,y
out number) is begin
{
executable statements;
}
end <procedure_name>;
exec <procedure_name>(10,y);
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What is the max nvarchar size?
Can we use insert statement in function?
What are the benefits of pl sql?
in oracle 10g sw after compiling procedure how to pass parameter values ,if we (v_empid out number)how to give empid after successful compilation program.This site exact suitable for 10g with respect to question & answer same format , im trying sql browser & sql command prompt using exec procedure name & respective parameters.
how to calculate expressions with sql statements? : Sql dba
Which is better varchar or nvarchar?
What is the best sql course?
What do you mean by table in sql?
What are operators available in sql?
Can we use views in stored procedure?
what are date and time functions in mysql? : Sql dba
what is “go” in t-sql? : Transact sql
What does the acronym acid stand for in database management?
What are transaction and its controls?
How can a pl sql block be executed?