Oracle Architecture Interview Questions
Oracle Architecture Interview Questions
PMON (Process Monitor) failed process resources. In shared server architecture monitor and
restarts any failed dispatcher or server process. It is mandatory process of DB and starts by
default.
What is a system change number (SCN)?SCN is a value that is incremented whenever a dirty
read occurs.
SCN is incremented whenever a deadlock occurs.
SCN is a value that keeps track of explicit locks.
SCN is a value that is incremented whenever database changes are made.
What is the main purpose of CHECKPOINT in oracle database? How do you
automatically force the oracle to perform a checkpoint?
A checkpoint is a database event, which synchronize the database blocks in memory with the
datafiles on disk. It has two main purposes: To establish a data consistency and enable faster
database Recovery.
The following are the parameter that will be used by DBA to adjust time or interval of how
frequently its checkpoint should occur in database.
LOG_CHECKPOINT_TIMEOUT = 3600; # Every one hour
LOG_CHECKPOINT_INTERVAL = 1000; # number of OS blocks.
What happens when we fire SQL statement in Oracle?
First it will check the syntax and semantics in library cache, after that it will create execution
plan.
If already data is in buffer cache it will directly return to the client.
If not it will fetch the data from datafiles and write to the database buffer cache after that it will
send server and finally server send to the client.
What is the use of large pool, which case you need to set the large pool?
You need to set large pool if you are using: MTS (Multi thread server) and RMAN Backups.
Large pool prevents RMAN & MTS from competing with other sub system for the same
memory. RMAN uses the large pool for backup & restore when you set the DBWR_IO_SLAVES
or BACKUP_TAPE_IO_SLAVES parameters to simulate asynchronous I/O. If neither of these
parameters is enabled, then Oracle allocates backup buffers from local process memory rather
than shared memory. Then there is no use of large pool.
What does database do during the mounting process?
While mounting the database oracle reads the data from controlfile which is used for verifying
physical database files during sanity check. Background processes are started before mounting
the database only.
What are logfile states?
CURRENT state means that redo records are currently being written to that group. It will be
until a log switch occurs. At a time there can be only one redo group current.
If a redo group containing redos of a dirty buffer that redo group is said to be ACTIVE state.
As we know log file keep changes made to the data blocks then data blocks are modified in
buffer cache (dirty blocks). These dirty blocks must be written to the disk (RAM to permanent
media).
And when a redolog group contains no redo records belonging to a dirty buffer it is in an
"INACTIVE" state. These inactive redolog can be overwritten.
One more state UNUSED initially when you create new redo log group its log file is empty on
that time it is unused. Later it can be any of the above mentioned state.
What is log switch?
The point at which oracle ends writing to one online redo log file and begins writing to another is
called a log switch. Sometimes you can force the log switch.
ALTER SYSTEM SWITCH LOGFILE;
How to check Oracle database version?
SQL> Select * from v$version;
Explain Oracle Architecture?
Oracle Instance:
a means to access an Oracle database,always opens one and only one database and consists of
memory structures and background process.
Oracle server:
a DBMS that provides an open, comprehensive, integrated approach to information
management,Consists of an Instance and a database.
Oracle database:
a collection of data that is treated as a unit,Consists of Datafiles, Control files, Redo log files.
(optional param file, passwd file, archived log)
Instance memory Structures:
System Global Area (SGA):
Allocated at instance startup, and is a fundamental component of an Oracle Instance.
SGA Memory structures:
Includes Shared Pool, Database Buffer Cache, Redo Log Buffer among others.
Shared Pool :
Consists of two key performance-related memory structures Library Cache and Data Dictionary
Cache.
Library Cache:
Stores information about the most recently used SQL and PL/SQL statements and enables the
sharing of commonly used statements.
Data Dictionary Cache :
Stores collection of the most recently used definitions in the database Includes db files, tables,
indexes, columns etc. Improves perf. During the parse phase, the server process looks at the data
dictionary for information to resolve object names and validate access.
Database Buffer Cache:
Stores copies of data blocks that have been retrieved from the datafiles. Everything done here.
Pfile :
Spfile:
Control file:
Redo log file:
Archive log file:
Data file:
Alert log files:
Trace log files:
Password file:
Extension
ORA
ORA
CTL
LOG
LOG
DBF
LOG
TRC
ORA
oraInventory is repository (directory) which store/records oracle software products & their
oracle_homes location on a machine. This Inventory now a days in XML format and called as
XML Inventory where as in past it used to be in binary format & called as binary Inventory.
There are basically two kind of inventories,
One is Local Inventory (also called as Oracle Home Inventory) and other is Global Inventory
(also called as Central Inventory).
What is Global Inventory ?
Global Inventory holds information about Oracle Products on a Machine. These products can be
various oracle components like database, oracle application server, collaboration suite, soa suite,
forms & reports or discoverer server . This global Inventory location will be determined by file
oraInst.loc in /etc (on Linux) or /var/opt/oracle (solaris). If you want to see list of oracle products
on machine check for file inventory.xml under ContentsXML in oraInventory Please note if you
have multiple global Inventory on machine check all oraInventory directories)
You will see entry like
HOME NAME=ORA10g_HOME LOC=/u01/oracle/10.2.0/db TYPE=O IDX=1?/
What is Local Inventory ?
Inventory inside each Oracle Home is called as local Inventory or oracle_home Inventory. This
Inventory holds information to that oracle_home only.
What is Oracle Home Inventory?
Oracle home inventory or local inventory is present inside each Oracle home. It only contains
information relevant to a particular Oracle home. This file is located in the following location:
$ORACLE_HOME/inventory
It contains the following files and folders:
Components File
Other Folders
Can I have multiple Global Inventory on a machine ?
Quite common questions is that can you have multiple global Inventory and answer is YES you
can have multiple global Inventory but if your upgrading or applying patch then change
Inventory Pointer oraInst.loc to respective location. If you are following single global Inventory
and if you wish to uninstall any software then remove it from Global Inventory as well.
What to do if my Global Inventory is corrupted ?
No need to worry if your global Inventory is corrupted, you can recreate global Inventory on
machine using Universal Installer and attach already Installed oracle home by option
-attachHome
./runInstaller -silent -attachHome -invPtrLoc $location_to_oraInst.loc
ORACLE_HOME=Oracle_Home_Location
ORACLE_HOME_NAME=Oracle_Home_Name
CLUSTER_NODES={}
What is RESULT Cache?
11G Backgroung Processes?
The following process are added in 11g as new background processes.
1 dbrm DB resource manager
this feature is called Automatic Shared Memory Management. With ASMM, the parameters
java_pool_size, shared_pool_size, large_pool_size and db_cache_size are affected.
SGA_MAX_SIZE & SGA_TARGET
http://maxwellmiranda.wordpress.com/2009/09/17/sga_max_size-sga_targe/
SGA_MAX_SIZE sets the overall amount of memory the SGA can consume but is not dynamic.
The SGA_MAX_SIZE parameter is the max allowable size to resize the SGA Memory area
parameters. If the SGA_TARGET is set to some value then the Automatic Shared Memory
Management (ASMM) is enabled, the SGA_TARGET value can be adjusted up to the
SGA_MAX_SIZE parameter, not more than SGA_MAX_SIZE parameter value.
I.e. If SGA_MAX_SIZE=4GB and SGA_TARGET=2GB, later period of time, if you want you
can resize your SGA_TARGET parameter to the value of SGA_MAX_SIZE i.e. 4GB, you cant
resize the SGA_TARGET value to more than 4GB.
It is significant that SGA_TARGET includes the entire memory for the SGA, in contrast to
earlier releases in which memory for the internal and fixed SGA was added to the sum of the
configured SGA memory parameters. Thus, SGA_TARGET gives you precise control over the
size of the shared memory region allocated by the database. If SGA_TARGET is set to a value
greater than SGA_MAX_SIZE at startup, then the latter is bumped up to accommodate
SGA_TARGET
Do not dynamically set or unset the SGA_TARGET parameter. This should be set only at startup.
SGA_TARGET is a database initialization parameter (introduced in Oracle 10g) that can be used
for automatic SGA memory sizing.
SGA_TARGET provides the following:
Single parameter for total SGA size
Automatically sizes SGA components
Memory is transferred to where most needed
Uses workload information
Uses internal advisory predictions
STATISTICS_LEVEL must be set to TYPICAL
SGA_TARGET is dynamic
Can be increased till SGA_MAX_SIZE
Can be reduced till some component reaches minimum size
Change in value of SGA_TARGET affects only automatically sized components
If I keep SGA_TARGET =0 then what will happen ?
Disable automatic SGA tuning by setting sga_target=0
Disable ASMM by setting SGA_TARGET=0
http://www.orafaq.com/wiki/SGA_target
SGA_TARGET is a database initialization parameter (introduced in Oracle 10g) that can be used
for automatic SGA memory sizing.
Default value 0 (SGA auto tuning is disabled)
What happens when you run ALTER DATABASE OPEN RESETLOGS ?
The current online redo logs are archived, the log sequence number is reset to 1, new database
incarnation is created, and the online redo logs are given a new time stamp and SCN.
The reason to do the open the database with the resetlogs is that after doing an incomplete
recovery , the data files and control files still don't come to the same point of the redo log files.
And as long as the database is not consistent within all the three file-data, redo and control, you
can't open the database. The resetlogs clause would reset the log sequence numbers within the
log files and would start them from 0 thus enabling you to open the database but on the cost of
losing all what was there in the redo log files.
In what scenarios open resetlogs required ?
An ALTER DATABASE OPEN RESETLOGS statement is required,
1.after incomplete recovery (Point in Time Recovery) or
2.recovery with a backup control file.
3. recovery with a control file recreated with the reset logs option.
http://onlineappsdba.com/index.php/2009/09/11/oracle-database-incarnation-open-resetlogs-scn/
http://web.njit.edu/info/limpid/DOC/backup.102/b14191/osrecov009.htm
Whenever you perform incomplete recovery or recovery with a backup control file, you must
reset the online logs when you open the database. The new version of the reset database is called
a new incarnation..
Difference between RESETLOGS and NORESETLOGS ?
http://oracleappstechnology.blogspot.in/2008/05/difference-between-resetlogs-and.html
After recover database operation, open the database with: ALTER DATABASE OPEN
[NO]RESETLOGS
NORESETLOGS:
The NORESETLOGS option does not clear the redo log files during startup and the online redo
logs to be used for recovery. Only used in scenario where MANUAL RECOVERY is started,
CANCEL is used, and then RECOVER DATABASE is started.
RESETLOGS:
CAUTION: Never use RESETLOGS unless necessary.
Once RESETLOGS is used then the redo log files cannot be used and any completed
transactions in those redo logs are lost!!
Before using the RESETLOGS option take an offline backup of the database.
What is SCN (System Change Number) ?
The system change number (SCN) is an ever-increasing value that uniquely identifies a
committed version of the database at a point in time. Every time a user commits a transaction
Oracle records a new SCN in redo logs.
Oracle uses SCNs in control files datafile headers and redo records. Every redo log file has both
a log sequence number and low and high SCN. The low SCN records the lowest SCN recorded
in the log file while the high SCN records the highest SCN in the log file.
What is Database Incarnation ?
Database incarnation is effectively a new version of the database that happens when you reset
the online redo logs using alter database open resetlogs;.
Database incarnation falls into following category Current, Parent, Ancestor and Sibling
i) Current Incarnation : The database incarnation in which the database is currently generating
redo.
ii) Parent Incarnation : The database incarnation from which the current incarnation branched
following an OPEN RESETLOGS operation.
iii) Ancestor Incarnation : The parent of the parent incarnation is an ancestor incarnation. Any
parent of an ancestor incarnation is also an ancestor incarnation.
iv) Sibling Incarnation : Two incarnations that share a common ancestor are sibling incarnations
if neither one is an ancestor of the other.
How to view Database Incarnation history of Database ?
Using SQL> select * from v$database_incarnation;
Using RMAN>LIST INCARNATION;
However, you can use the RESET DATABASE TO INCARNATION command to specify that
SCNs are to be interpreted in the frame of reference of another incarnation.
For example my current database INCARNATION is 3 and now I have used
FLASHBACK DATABASE TO SCN 3000;then SCN 3000 will be search in current incarnation
which is 3. However if I want to get back to SCN 3000 of INCARNATION 2 then I have to use,
RMAN> RESET DATABASE TO INCARNATION 2;
RMAN> RECOVER DATABASE TO SCN 3000;