What is a named program unit?
What happens internally when the user types userID/password@string in SQL PLUS Thanks-Bhaskar
What is connection pooling in oracle?
What is oracle datasource?
How do I escape a reserved word in oracle?
How to create a server parameter file?
How to execute a stored program unit?
What is data file?
What are the different editions of oracle?
What are the different types of record groups in oracle? Explain each of them
How to check database size in Oracle?
What is enter substitution variable in oracle?
How to turn on or off recycle bin for the session?
How do we represent comments 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?