Answer Posted / dhanalakshmi.s
I-Stands for Internet.Because of version 9i using this
Fully internet based.So this is correct answer.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is blob datatype?
What are the advantages of oracle 12c?
Is oracle a relational database?
What are the numeric comparison operations?
How to generate query output in html format?
> 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 happens if variable names collide with table/column names?
What is the data pump export utility?
How to start your 10g xe server?
Can we create database in oracle using command line ?
What is the use of file param in imp command?
Can the query output be sorted by multiple columns in oracle?
Give the advantages and disadvantages of clusters.
How can I create database in oracle?
i wrote a pl/sql procedure. it must run every sunday 4.40 How can i schedule it with the help of dbms_jobs (or another other procedure with out creating bat file,exe file)