can we pass two out parameters at a time in function?please
answer to my question
Answer Posted / nathan
Yes,We can pass two out parameters in a function, but there
should at least one in parameter, because using the in the
function will do something.It'll not throw any errors.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is java required for oracle client?
What are privileges and grants?
What is the difference between sharding and replication?
Assuming today is Monday, how would you use the DBMS_JOB package to schedule the execution of a given procedure owned by SCOTT to start Wednesday at 9AM and to run subsequently every other day at 2AM.
Use of an integrity constraint is better to validate data. Explain
How to use fetch statement in a loop?
How to establish administrator authentication to the server?
Query to retrieve record for a many to many relationship ?
Can you have more than one content canvas view attached with a window ?
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
How do you find current date and time in oracle?
How do I use unicode codesets with the weblogic jdriver for oracle driver?
What are ddl statements in oracle?
How to open and close an explicit cursor in oracle?
What is proxy method?