What is the quickest way to fetch the data from a table?
What are the differences between char and nchar in oracle?
How to return top 5 rows in oracle?
Explain the use of full option in exp command.
What is an oracle wallet?
How to use "while" statements in oracle?
What is primefaces used for?
What is merge statement used for?
> 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?
Explain the truncate in oracle?
What are the components of logical database structure in oracle database?
What is the relationship among database, tablespace and data file?
What do you mean by a database transaction & what all tcl statements are available in oracle?
How to assign values to variables?
Explain oracle insert into command?