Can we interchange parameters in procedure while calling
Answer Posted / vidya
If you name the parameter then you can interchange
otherwise you cannot. Like in the following example the
first case is positional and you cannot interchange. In the
second one its named and you can interchange.
Regular OraDatabase.standproc(102,'RAM'); -- Positional
OraDatabase.standproc(empno=>102,ename=>'RAM'); --Named
OraDatabase.standproc(ename=>'RAM',empno=>102);
| Is This Answer Correct ? | 22 Yes | 0 No |
Post New Answer View All Answers
What is the difference between row level and statement level trigger?
How do you define a foreign key?
What is trigger in sql?
Is natural join and inner join same?
What is package in pl sql?
What is sql mysql pl sql oracle?
Why cannot I use bind variables in ddl/scl statements in dynamic sql?
Are stored procedures faster than queries?
Is sql developer case sensitive?
What are the types of functions in sql?
Explain aggregate functions are available there in sql?
How can you get sql*loader to commit only at the end of the load file? : aql loader
How do I run pl sql in sql developer?
What is a sql statement?
What is an implicit commit?