What Are The Back Ground Processes in Oracle and What Are They?
What Are The Back Ground Processes in Oracle and What Are They?
What Are The Back Ground Processes in Oracle and What Are They?
What are the Back ground processes in Oracle and what are they?
This is one of the most frequently asked question. There are basically 9 Processes
but in a general system we need to mention the first five background processes.
They do the house keeping activities for the Oracle and are common in any system.
The various background processes in oracle are
a) Data Base Writer (DBWR): Data Base Writer Writes Modified blocks from
Database buffer cache to Data Files. This is required since the data is not written
whenever a transaction is committed.
b)LogWriter (LGWR) : LogWriter writes the redo log entries to disk. Redo Log data
is generated in redo log buffer of SGA. As transaction commits and log buffer fills,
LGWR writes log entries into a online redo log file.
c) System Monitor(SMON) : The System Monitor performs instance recovery at
instance startup. This is useful for recovery from system failure
d)Process Monitor(PMON) : The Process Monitor performs process recovery when
user Process fails. Pmon Clears and Frees resources that process was using.
e) CheckPoint(CKPT) : At Specified times, all modified database buffers in SGA are
written to data files by DBWR at Checkpoints and Updating all data files and control
files of database to indicate the
most recent checkpoint
f)Archieves(ARCH) : The Archiver copies online redo log files to archival storal
when they are busy.
g) Recoveror(RECO) : The Recoveror is used to resolve the distributed transaction
in network
h) Dispatcher (Dnnn) : The Dispatcher is useful in Multi Threaded Architecture
i) Lckn : We can have upto 10 lock processes for inter instance locking in parallel
sql.
2
How many types of Sql Statements are there in Oracle?
There are basically 6 types of sql statements. They are
a) Data Definition Language (DDL): The DDL statements define and maintain
objects and drop objects.
b) Data Manipulation Language (DML): The DML statements manipulate
database data.
c) Transaction Control Statements : Manage change by DML
d) Session Control : Used to control the properties of current session enabling and
disabling roles and changing .e.g : Alter Statements, Set Role
e) System Control Statements : Change Properties of Oracle Instance .e.g: Alter
System
f) Embedded Sql : Incorporate DDL, DML and T.C.S in Programming Language. e.g:
Using the Sql Statements in languages such as 'C', Open, Fetch, execute and close
3
What is a Transaction in Oracle?
A transaction is a Logical unit of work that compromises one or more SQL
Statements executed by a single User. According to ANSI, a transaction begins with
first executable statement and ends when it is explicitly committed or rolled back.
4
List some Key Words Used in Oracle.
The Key words that are used in Oracle are
a) Committing: A transaction is said to be committed when the transaction makes
permanent changes resulting from the SQL statements.
b) Rollback A transaction that retracts any of the changes resulting from SQL
statements in Transaction.
c) SavePoint : For long transactions that contain many SQL statements,
intermediate markers or savepoints are declared. Savepoints can be used to divide a
transaction into smaller points.
d) Rolling Forward : Process of applying redo log during recovery is called rolling
forward.
e) Cursor : A cursor is a handle ( name or a pointer) for the memory associated with
a specific statement. A cursor is basically an area allocated by Oracle for executing
the Sql Statement. Oracle uses an implicit cursor statement for Single row query and
Uses Explicit cursor for a multi row query.
f) System Global Area (SGA): The SGA is a shared memory region allocated by
the Oracle that contains Data and control information for one Oracle Instance. It
consists of Database Buffer Cache and Redo log Buffer.
g) Program Global Area (PGA): The PGA is a memory buffer that contains data
and control information for server process.
g) Database Buffer Cache: Database Buffer of SGA stores the most recently used
blocks of database data. The set of database buffers in an instance is called
Database Buffer Cache.
h) Redo log Buffer: Redo log Buffer of SGA stores all the redo log entries.
i) Redo Log Files: Redo log files are set of files that protect altered database data in
memory that has not been written to Data Files. They are basically used for backup
when a database crashes.
j) Process : A Process is a 'thread of control' or mechanism in Operating System
that executes series of steps.
5
What are Procedure, functions and Packages?
Procedures and functions consist of set of PL/SQL statements that are grouped
together as a unit to solve a specific problem or perform set of related tasks.
Procedures do not Return values while Functions return one One Value
Packages: Packages Provide a method of encapsulating and storing related
procedures, functions, variables and other Package Content
6
What are Database Triggers and Stored Procedures?
Database Triggers : Database Triggers are Procedures that are automatically
executed as a result of insert in, update to, or delete from table.
Database triggers have the values old and new to denote the old value in the table
before it is deleted and the new indicated the new value that will be used. DT are
useful for implementing complex business rules which cannot be enforced using the
integrity rules. We can have the trigger as Before trigger or After Trigger and at
Statement or Row level.
e.g: operations insert, update ,delete 3
before ,after 3*2 A total of 6 combinations
At statement level (once for the trigger) or row level( for every execution ) 6 * 2 A
total of 12.
Thus a total of 12 combinations are there and the restriction of usage of 12 triggers
has been lifted from Oracle 7.3 Onwards.
Stored Procedures : Stored Procedures are Procedures that are stored in Compiled
form in the database. The advantage of using the stored procedures is that many
users can use the same procedure in compiled and ready to use format.
7
How many Integrity Rules are there and what are they?
There are Three Integrity Rules. They are as follows :
a) Entity Integrity Rule : The Entity Integrity Rule enforces that the Primary key
cannot be Null
b) Foreign Key Integrity Rule : The FKIR denotes that the relationship between
the foreign key and the primary key has to be enforced. When there is data in Child
Tables the Master tables cannot be deleted.
c) Business Integrity Rules : The Third Integrity rule is about the complex
business processes which cannot be implemented by the above 2 rules.
8
What are the Various Master and Detail Relation ships?
The various Master and Detail Relationship are
a) NonIsolated : The Master cannot be deleted when a child is existing
b) Isolated : The Master can be deleted when the child is existing
c) Cascading : The child gets deleted when the Master is deleted.
9
What are the Various Block Coordination Properties?
The various Block Coordination Properties are
a) Immediate
Default Setting. The Detail records are shown when the Master Record are shown.
b) Deferred with Auto Query
Oracle Forms defer fetching the detail records until the operator navigates to the
detail block.
c) Deferred with No Auto Query
The operator must navigate to the detail block and explicitly execute a query
10
What are the Different Optimization Techniques?
The Various Optimization techniques are
a) Execute Plan : we can see the plan of the query and change it accordingly based
on the indexes
b) Optimizer_hint :
set_item_property('DeptBlock',OPTIMIZER_HINT,'FIRST_ROWS');
Select /*+ First_Rows */ Deptno,Dname,Loc,Rowid from dept
where (Deptno > 25)
c) Optimize_Sql :
By setting the Optimize_Sql = No, Oracle Forms assigns a single cursor for all SQL
statements. This slow downs the processing because for evertime the SQL must be
parsed whenever they are executed.
f45run module = my_firstform userid = scott/tiger optimize_sql = No
d) Optimize_Tp :
By setting the Optimize_Tp= No, Oracle Forms assigns separate cursor only for each
query SELECT statement. All other SQL statements reuse the cursor.
f45run module = my_firstform userid = scott/tiger optimize_Tp = No
11
How do u implement the If statement in the Select Statement?
We can implement the if statement in the select statement by using the Decode
statement.
e.g select DECODE (EMP_CAT,'1','First','2','Second'Null);
Here the Null is the else statement where null is done .
12
How many types of Exceptions are there?
There are 2 types of exceptions. They are
a) System Exceptions
e.g. When no_data_found, When too_many_rows
b) User Defined Exceptions
e.g. My_exception exception
When My_exception then
13
What are the inline and the precompiler directives?
The inline and precompiler directives detect the values directly
14
How do you use the same lov for 2 columns?
We can use the same lov for 2 columns by passing the return values in global values
and using the global values in the code
15
How many minimum groups are required for a matrix report?
The minimum number of groups in matrix report are 4
16
What is the difference between static and dynamic lov?
The static lov contains the predetermined values while the dynamic lov contains
values that come at run time
17
What are snap shots and views?
Snapshots are mirror or replicas of tables. Views are built using the columns from
one or more tables. The Single Table View can be updated but the view with multi
table cannot be updated
18
What are the OOPS concepts in Oracle?
Oracle does implement the OOPS concepts. The best example is the Property
Classes. We can categorize the properties by setting the visual attributes and then
attach the property classes for the
objects. OOPS supports the concepts of objects and classes and we can consider the
property classes as classes and the items as objects
19
Privileges and Grants
Privileges are the right to execute a particular type of SQL statements.
e.g : Right to Connect, Right to create, Right to resource
Grants are given to the objects so that the object might be accessed accordingly. The
grant has to be
given by the owner of the object.
20
What is the difference between candidate key, unique key and primary key?
Candidate keys are the columns in the table that could be the primary keys and the
primary key
is the key that has been selected to identify the rows. Unique key is also useful for
identifying the distinct rows in the table.
21
What is concurrency?
Concurrency is allowing simultaneous access of same data by different users. Locks
useful for accessing the database are
a) Exclusive
The exclusive lock is useful for locking the row when an insert, update or delete is
being done. This lock should not be applied when we do only select from the row.
b) Share lock
We can do the table as Share_Lock as many share_locks can be put on the same
resource.
22
Table Space, Data Files, Parameter File, Control Files
Table Space : The table space is useful for storing the data in the database. When a
database is created two table spaces are created.
a) System Table space : This data file stores all the tables related to the system and
dba tables
b) User Table space : This data file stores all the user related tables
We should have separate table spaces for storing the tables and indexes so that the
access is fast.
Data Files : Every Oracle Data Base has one or more physical data files. They store
the data for the database. Every datafile is associated with only one database. Once
the Data file is created the size cannot change. To increase the size of the database
to store more data we have to add data file.
Parameter Files : Parameter file is needed to start an instance. A parameter file
contains the list of instance configuration parameters e.g.:
db_block_buffers = 500
db_name = ORA7
db_domain = u.s.acme lang
Control Files : Control files record the physical structure of the data files and redo log
files
They contain the Db name, name and location of dbs, data files ,redo log files and
time stamp.
23
What is Row Chaining?
The data of a row in a table may not be able to fit the same data block. Data for row
is stored in a chain of data blocks .
24
What are the Pct Free and Pct Used?
Pct Free is used to denote the percentage of the free space that is to be left when
creating a table. Similarly Pct Used is used to denote the percentage of the used
space that is to be used when creating a table
eg.: Pctfree 20, Pctused 40
25
Physical Storage of the Data
The finest level of granularity of the data base are the data blocks.
Data Block : One Data Block correspond to specific number of physical database
space
Extent : Extent is the number of specific number of contiguous data blocks.
Segments : Set of Extents allocated for Extents. There are three types of Segments
a) Data Segment : Non Clustered Table has data segment data of every table is
stored in
cluster data segment
b) Index Segment : Each Index has index segment that stores data
c) Roll Back Segment : Temporarily store 'undo' information
51
61
What are the states of a rollback segment ? What is the difference between partly
available and needs recovery ?
The various states of a rollback segment are :
ONLINE, OFFLINE, PARTLY AVAILABLE, NEEDS RECOVERY and INVALID.
75
96
Definition of relational DataBase by Dr. Codd (IBM)?
A Relational Database is a database where all data visible to the user is organized
strictly as tables of data values and where all database operations work on these
tables.
97
What is Multi Threaded Server (MTA) ?
In a Single Threaded Architecture (or a dedicated server configuration) the database
manager creates a separate process for each database user. But in MTA the database
manager can assign multiple users (multiple user processes) to a single dispatcher
(server process), a controlling process that queues request for work thus reducing
the databases memory requirement and resources.
98
Which are initial RDBMS, Hierarchical & N/w database ?
RDBMS - R system
Hierarchical - IMS
N/W - DBTG
99
Difference between Oracle 6 and Oracle 7
ORACLE 7 ORACLE 6
Cost based optimizer ? Rule based optimizer
Shared SQL Area ? SQL area allocated for each user
Multi Threaded Server ? Single Threaded Server
Hash Clusters ? Only B-Tree indexing
Roll back Size Adjustment ? No provision
Truncate command ? No provision
Database Integrity
Constraints ? Provision at Application Level
Stored procedures, functions
packages & triggers ? No provision
Resource profile limit. It
prevents user from running
away with system resources ? No provision
Distributed Database ? Distributed Query
Table replication & snapshots? No provision
Client/Server Tech. ? No provision
100
What is Functional Dependency
Given a relation R, attribute Y of R is functionally dependent on attribute X of R if and
only if each X-value has associated with it precisely one -Y value in R
101
What is Auditing ?
The database has the ability to audit all actions that take place within it.
a) Login attempts, b) Object Accesss, c) Database Action
Result of Greatest(1,NULL) or Least(1,NULL)
NULL
102
While designing in client/server what are the 2 imp. things to be considered ?
Network Overhead (traffic), Speed and Load of client server
103
What are the disadvantages of SQL ?
Disadvantages of SQL are :
? Cannot drop a field
? Cannot rename a field
? Cannot manage memory
? Procedural Language option not provided
? Index on view or index on index not provided
? View updation problem
104
When to create indexes ?
To be created when table is queried for less than 2% or 4% to 25% of the table
rows.
105
How can you avoid indexes ?
TO make index access path unavailable
? Use FULL hint to optimizer for full table scan
? Use INDEX or AND-EQUAL hint to optimizer to use one index or set to
indexes instead of another.
? Use an expression in the Where Clause of the SQL.
106
What is the result of the following SQL :
Select 1 from dual
UNION
Select 'A' from dual;
Error
107
Can database trigger written on synonym of a table and if it can be then what would
be the effect if original table is accessed.
Yes, database trigger would fire.
108
Can you alter synonym of view or view ?
No
109
Can you create index on view
No.
110
What is the difference between a view and a synonym ?
Synonym is just a second name of table used for multiple link of database. View can
be created with many tables, and with virtual columns and with conditions. But
synonym can be on view.
111
What is the difference between alias and synonym ?
Alias is temporary and used with one query. Synonym is permanent and not used as
alias.
112
What is the effect of synonym and table name used in same Select statement ?
Valid
113
What's the length of SQL integer ?
32 bit length
114
What is the difference between foreign key and reference key ?
Foreign key is the key i.e. attribute which refers to another table primary key.
Reference key is the primary key of table referred by another table.
115
Can dual table be deleted, dropped or altered or updated or inserted ?
Yes
116
If content of dual is updated to some value computation takes place or not ?
Yes
117
If any other table same as dual is created would it act similar to dual?
Yes
118
For which relational operators in where clause, index is not used ?
<> , like '% ...' is NOT functions, field +constant, field || ''
119
Assume that there are multiple databases running on one machine. How can you
switch from one to another ?
Changing the ORACLE_SID
120
What are the advantages of Oracle ?
Portability : Oracle is ported to more platforms than any of its competitors, running
on more than 100 hardware platforms and 20 networking protocols.
Market Presence : Oracle is by far the largest RDBMS vendor and spends more on R
& D than most of its competitors earn in total revenue. This market clout means that
you are unlikely to be left in the lurch by Oracle and there are always lots of third
party interfaces available.
Backup and Recovery : Oracle provides industrial strength support for on-line backup
and recovery and good software fault tolerence to disk failure. You can also do point-
in-time recovery.
Performance : Speed of a 'tuned' Oracle Database and application is quite good, even
with large databases. Oracle can manage > 100GB databases.
Multiple database support : Oracle has a superior ability to manage multiple
databases within the same transaction using a two-phase commit protocol.
121
What is a forward declaration ? What is its use ?
PL/SQL requires that you declare an identifier before using it. Therefore, you must
declare a subprogram before calling it. This declaration at the start of a subprogram
is called forward declaration. A forward declaration consists of a subprogram
specification terminated by a semicolon.
122
What are actual and formal parameters ?
Actual Parameters : Subprograms pass information using parameters. The variables
or expressions referenced in the parameter list of a subprogram call are actual
parameters. For example, the following procedure call lists two actual parameters
named emp_num and amount:
Eg. raise_salary(emp_num, amount);