Answer Posted / mohd akhtar
select sum(1) from emp
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
query optmization techniques and quwry analyser+projects+ppts
What are the limitations of check constraint?
How to drop a stored procedure in oracle?
How to connect asp pages to oracle servers?
What is sequence?
> 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 oracle instant client?
What is bulk load in oracle?
what is the difference between substr and instr function in oracle?
How to install oracle database 10g xe?
What is the difference between formal parameters and actual parameters?
What are triggers in oracle?
How to use null as conditions in oracle?
What is program global area (pga) in oracle?
IS it possible to built the oracle database without setting the kernal parameters?