What is the relation of a user account and a schema?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different approaches used by Optimizer in choosing an execution plan ?
What happens internally when the user types userID/password@string in SQL PLUS Thanks-Bhaskar
Table1- have two column filename data AFGDFD-20112011 hi how r u bsdasd-23042011 name shoud be in bold Now i want output like filename data AFGDFD hi how r u bsdasd name shoud be in bold Kindly answer this
What is the CAP theorem?
Explain the use of show option in imp command.
Differentiate between TRUNCATE and DELETE?
What are the Characteristics of Data Files ?
What is meant by raw datatype?
How to create an oracle database manually?
Please explan Why static query is more faster than dynamic query ?
> 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 create a new database in oracle?