What is the difference between an Oracle Schema and an
Oracle Instance?
Answer Posted / udayah shankar dokku
oracle schema: generally it is static,having tablr
name,column name & associated datatypes
oracle instance : generelly it is dynamic,at ay instance of
time the collection of all records is called oracle instance
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is redo log?
What is procedure overloading in oracle?
How to rename an existing table?
What are the attributes that are found in a cursor?
How to use "in" parameter properly?
How to get a list of all user accounts in the database?
How to update values in a table in oracle?
what is partitioning? Types of partitioning. explain? what is the new kind of partitioning type introduced in 9i?
What is an oracle data file?
There are n numbers of flatfile of exactly same format are placed in a folder.Can we load these flatfile's data one by one to a single relational table by a single session??
How to create a new user account in oracle?
What is a read write transaction in oracle?
> 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 a connect identifier?
What is a partition in oracle?