Oracle General (1809)
Oracle DBA (Database Administration) (261)
Oracle Call Interface (OCI) (10)
Oracle Architecture (90)
Oracle Security (38)
Oracle Forms Reports (510)
Oracle Data Integrator (ODI) (120)
Oracle ETL (15)
Oracle RAC (93)
Oracle D2K (72)
Oracle AllOther (241)
How to change user password in oracle?
i am working with OC 4.5 i have numbers in table in 10 row with some null values please tell me how to find total? Thanks
How many anonymous blocks can be defined?
How do I uninstall oracle client from windows?
How i can handle exception in large code like 1000 line without distrubing the code or without exception handler sction?
How to define default values for formal parameters?
what we specify the in XML data server and parameters for to connect to xml file?
What query tells you how much space a tablespace named test is taking up, and how much space is remaining?
What is end user in database?
What is an Oracle Data Dictionary?
Which dba certification is best?
> 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 what are the characteristics of data files?
What is the disadvantage of User defind function?
What does a dba stand for?