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) What are the built-in routines is available in forms 4.0 to create and manipulate a parameter list?
1 5016
How to load data through external tables?
How can you find all the processes on your system?
What are bind variables and why are they important?
Explain how one can iterate through items and records in a specified block?
How would you configure your networking files to connect to a database by the name of DSS which resides in domain icallinc.com?
How to call a sub procedure?
What is meant by joins?
What is the difference between restoring a database and recovering a database?
What is a junior dba?
In what situation u create the BPA.
I have a database backup file in .db (ext) form how to conver it into .dmp (ext.) for oracle database
> 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 system tablespace?
What are the predefined tablespaces in a database?
what is IDE,DMV in sql server?