How does Oracle guarantee data integrity of data changes?
What do you mean by cdb and pdb in oracle 12c?
How do I limit the number of oracle database connections generated by weblogic server?
How many file formats are supported to export data?
What is raw datatype in oracle?
Select all the employees who were hired in last 2 years and who works in dept where max managers are working.
How to create a new view in oracle?
How to create a table in a specific tablespace?
What exactly do quotation marks around the table name do?
How to create a stored function in oracle?
can u send the sql dumps to sivakumarr1987@gmail.com plz help me
What is a partition in oracle?
What view(s) do you use to associate a users SQLPLUS session with his o/s process?
> 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?
What is the difference between the Oracle ODBC driver and a Microsoft ODBC (Open Database Connectivity) Driver?