How to define a specific record type?
No Answer is Posted For this Question
Be the First to Post Answer
What are the sql clauses supported in the link property sheet ?
What operating systems are supported by oracle database 10g xe?
How to test null values?
What are the differences between number and binary_float in oracle?
What is difference between a formal and an actual parameter?
What is object data modeling?
What is a Schema ?
> 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?
Hi friends can u send the oracle 9i full version download link?????????????? please reply ?
How can we delete duplicate rows in a table?
How to use subqueries with the in operator using oracle?
How to get a list of all tables in the database?