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


Please Help Members By Posting Answers For Below Questions

What is redo log?

787


What is procedure overloading in oracle?

766


How to rename an existing table?

777


What are the attributes that are found in a cursor?

818


How to use "in" parameter properly?

805


How to get a list of all user accounts in the database?

823


How to update values in a table in oracle?

749


what is partitioning? Types of partitioning. explain? what is the new kind of partitioning type introduced in 9i?

2036


What is an oracle data file?

812


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??

1795


How to create a new user account in oracle?

772


What is a read write transaction in oracle?

797


> 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?

1785


What is a connect identifier?

740


What is a partition in oracle?

764