What is schema?
Answer Posted / kamal saxena
XML Schema is an XML-based alternative to DTD.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
 How to use an oracle sequence generator in a mapping?
How to create a server parameter file?
How view is different from a table?
Can select statements be used on views in oracle?
How to find out what oracle odbc drivers are installed?
How to rename an existing table?
> 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 the difference between PFILE and SPFILE in Oracle?
What is pragma autonomous transaction in oracle?
What is a proxy class?
What is archive log in Oracle?
How to view all columns in an existing table?
In not less than 100 words what's the main difference between Rolap and Molap in ORACLE ?
Explain joins in oracle?
What is integrity and what is constraint??Explain with example