What is the relation of a user account and a schema in oracle?
No Answer is Posted For this Question
Be the First to Post Answer
What are steps required to ENTER DATA INTO DWH?
Explain oracle’s system global area (sga).
> 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?
How to display First 4 rows From Database Table?
IS it possible to built the oracle database without setting the kernal parameters?
What is an Index ? How it is implemented in Oracle Database ?
What privilege is needed for a user to create tables in oracle?
How can I get column names from a table in oracle?
how to find count rows in table without count function?
Can we create more than one index on particular column?
How to sort the query output in oracle?
what is the need of indexing topic in oracle? where do we use in a Java project? any other option other than using this to get the same result where we use indexing ?