Answer Posted / sathish kumar
i stands for internet. from 8i , 9i onwords oracle supports
internet applications.( webbased applications like
ERP,SAP,Oracle.). we can run the java application through
oracle. oracle built in with this software from 8i onwords.
in 10g 'g' stands for grid computing.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
> 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 are the uses of synonyms?
What is ceil and floor in oracle?
What is the difference difference between $ORACLE_HOME and $ORACLE_BASE.
What is transaction control statement and how many types of transaction control statement in Oracle?
What is raw datatype?
Please explain compound trigger in oracle?
Explain the use of online redo log files in oracle.
How does Oracle guarantee data integrity of data changes?
How to change system global area (sga) in oracle?
how to make an oracle object
How to store pictures on to the database?
What is oracle data type?
What is a tns service name?
What are the differences between lov and list item?