how do u call in & out parameters for stored procedures?
Answer Posted / madhav
create or replace procedure proc_in_out
(p_empno in number,p_ename out varchar2)
as
begin
.......
.......
end;
execute proc_in_out(7369,p_ename)--out parameter can't
like this
declare
v_ename varchar2(10);
begin
proc_in_out(7369,v_ename);
end;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How subquery works in sql?
Is primary key a clustered index?
What are hotfixes and patches?
What is embedded sql what are its advantages?
What is sql stand for?
Can we insert in sql function?
What is record in pl sql?
How many primary keys can a table have?
a table has 2 classifications 1)liabilities 2)earnings this liabitity has 2 elements with 2 input values and the earnings have 2 elements with 2 input values i wrote a query so that my input is liability savings amount1 amount2 xxxx null xxxxxx 0 xxx1 null xxxxx1 0 null yyyy 0 yyyy null yyy1 0 yyy1 my problem is --when i developed a report(d2k) with this data my o/p is liabilities,amount1,savings,amount2 xxxx xxxxxx xxx1 xxxxx1 yyyy yyyy yyy1 yyy1 how could i move this savings,savings values 2 palces up. can any body provide me witha better solution
what is top in tsql? : Transact sql
what are myisam tables? : Sql dba
How can one get sql*loader to commit only at the end of the load file? : aql loader
how to include numeric values in sql statements? : Sql dba
What is db journal file?
How much does sql certification cost?