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)
Explain the difference between repeating frame and frame.
What is the easiest method to create a file on unix?
What is catalog in Oracle?
What are the types of locks in database?
What happens if you keep split brain syndrome in rac unresolved? How it can be resolved?
> 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?
did u received a single file or multiple files
Is oracle a language?
Difference between cartesian join and cross join?
Explain index?
Explain an index segment?
What to do if the startbd.bat failed to start the xe instance?
Is oracle a programming language?
What privilege is needed for a user to connect to oracle server?
what we specify the in XML data server and parameters for to connect to xml file?