What is a Database instance ? Explain?

Answer Posted / nishi

A database instance is a set of memory structures that manage database files. A database is a set of physical files on disk created by the CREATE DATABASE statement. The instance manages its associated data and serves the users of thedatabase.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to create lov dynamically at runtime & attach to text field?

676


What query tells you how much space a tablespace named test is taking up, and how much space is remaining?

1816


How to use fetch statement in a loop?

572


What are data pump export and import modes?

623


How can we delete duplicate rows in a table?

572






Explain a synonym?

614


What are the types of partitions in oracle?

545


What is connection pooling in oracle?

564


What do database buffers contain?

578


What are the most common interview questions on ETL Testing for experience?

608


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

1581


How to connect to the server with user account: sys?

572


What is the difference between online and offline backups?

567


Why do we use bulk collect in oracle?

583


Why do I get unexpected characters from 8-bit character sets in weblogic jdriver for oracle?

620