How to use "startup" command to start default instance?
What is the difference between postgresql and oracle?
How can I introduce multiple conditions in like operator?
What operating systems are supported by oracle database 10g xe?
Explain the use of full option in exp command.
What is the Tune Query
What is a proxy object?
How to create an initialization parameter file?
what is the use of system.effective.date variable in oracle?
List out the components of logical database structure of oracle database.
What is recovery manager in Oracle?
Explain the use of log option in exp command.
What are triggers in oracle?
> 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?
Describe an oracle table?