Can we interchange parameters in procedure while calling
Answer / 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 |
Write a query to find the name of employees those who have joined on Monday.(based on column hire_date)
If a cursor is open, how can we find in a pl/sql block?
How to load data with sql*loader?
If records are inserted into table without committing.How to refer to these values in a procedure?
How do I find sql profiler?
Where is all the data on the internet stored?
What is sql partition?
Explain what is table in a database?
What are the benefits of pl sql?
what are integrity rules?
What are the 3 types of behavioral triggers?
How to run sql commands in sql*plus?