Answer Posted / devaraj
Because, emp number is unique. so easy to retrieve
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
What is the difference between translate and replace?
What are the advantages of oracle?
What are the ansi data types supported in oracle?
How to bring a tablespace online?
How a tablespace is related to data files?
Explain the use of control file?
What is an Oracle Instance?
Is there an oracle sql query that aggregates multiple rows into one row?
Can we convert a date to char in oracle and if so, what would be the syntax?
How many types of synonyms in Oracle?
Is it possible to center an object horizontally in a repeating frame that has a variable horizontal size ?
> 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 raw datatype?
Give the different types of rollback segments.
What privilege is needed for a user to create views in oracle?