What is schema?
Answer Posted / nilesh i
Schema is collection of object and attribute which is store
in forest root domaain
Regards
Nilesh I
Wipro Infotech
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is oracle a language?
Explain the types of exception?
What do you mean by a tablespace?
Explain the use of control file?
> 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 data pump export and import modes?
How to rollback the current transaction in oracle?
Can we store images in oracle database?
What are the different types of trigger and explain its various uses and functions?
How to select some rows from a table in oracle?
How does Oracle guarantee data integrity of data changes?
What is archive log in Oracle?
Explain about achiever in sql?
What is the difference between postgresql and oracle?
What is define in oracle?