Oracle Core DBA Interview questions -
Backup and Recovery
1.
Which types of backups you can take in Oracle?
2.
A database is running in NOARCHIVELOG mode then which type of backups
you can take?
3.
Can you take partial backups if the Database is running in NOARCHIVELOG
mode?
4.
Can you take Online Backups if the the database is running in
NOARCHIVELOG mode?
5.
How do you bring the database in ARCHIVELOG mode from NOARCHIVELOG mode?
6.
You cannot shutdown the database for even some minutes, then in which
mode you should run
the database?
7.
Where should you place Archive logfiles, in the same disk where DB is or
another disk?
8.
Can you take online backup of a Control file if yes, how?
9.
What is a Logical Backup?
10.
Should you take the backup of Logfiles if the database is running in
ARCHIVELOG mode?
11.
12.
What is the advantage of RMAN utility?
13.
How RMAN improves backup time?
14.
Can you take Offline backups using RMAN?
15.
How do you see information about backups in RMAN?
16.
What is a Recovery Catalog?
17.
Should you place Recovery Catalog in the Same DB?
18.
Can you use RMAN without Recovery catalog?
19.
Can you take Image Backups using RMAN?
20.
Can you use Backupsets created by RMAN with any other utility?
21.
Where RMAN keeps information of backups if you are using RMAN without
Catalog?
22.
You have taken a manual backup of a datafile using o/s. How RMAN will
know about it?
23.
You want to retain only last 3 backups of datafiles. How do you go for
it in RMAN?
24.
Which is more efficient Incremental Backups using RMAN or Incremental
Export?
25.
Can you start and shutdown DB using RMAN?
26.
How do you recover from the loss of datafile if the DB is running in
NOARCHIVELOG mode?
27.
You loss one datafile and it does not contain important objects. The
important objects are there in other datafiles which are intact. How do you
proceed in this situation?
28.
You lost some datafiles and you don't have any full backup and the
database was running in NOARCHIVELOG mode. What you can do now?
29.
How do you recover from the loss of datafile if the DB is running in
ARCHIVELOG mode?
30.
You loss one datafile and DB is running in ARCHIVELOG mode. You have
full database backup of 1 week old and partial backup of this datafile which is
just 1 day old. From which backup should you restore this file?
31.
You loss controlfile how do you recover from this?
32.
The current logfile gets damaged. What you can do now?
33.
What is a Complete Recovery?
34.
What is Cancel Based, Time based and Change Based Recovery?
35.
Some user has accidentally dropped one table and you realize this after
two days. Can you recover this table if the DB is running in ARCHIVELOG mode?
36.
Do you have to restore Datafiles manually from backups if you are doing
recovery using RMAN?
37.
A database is running in ARCHIVELOG mode since last one month. A
datafile is added to the database last week. Many objects are created in this
datafile. After one week this datafile gets damaged before you can take any
backup. Now can you recover this datafile when you don't have any backups?
38.
How do you recover from the loss of a controlfile if you have backup of
controlfile?
39.
Only some blocks are damaged in a datafile. Can you just recover these
blocks if you are using RMAN?
40.
Some datafiles were there on a secondary disk and that disk has become damaged
and it will take some days to get a new disk. How will you recover from this
situation?
41.
Have you faced any emergency situation. Tell us how you resolved it?
42.
At one time you lost parameter file accidentally and you don't have any
backup. How you will recreate a new parameter file with the parameters set to
previous values.
43.
What is Consistent Backup?
A Consistent backup is one in which the
files being backed up contain all changes upto the same system change number
(SCN)
44.
What is fractured Block?
Because the database continues writing to
the file during an online backup, there is the possibility of backing up
inconsistent data within a block. For example, assume that either RMAN or an
operating system utility reads the block while database writer is in the middle
of updating the block. In this case, RMAN or the copy utility could read the
old data in the top half of the block and the new data in the bottom top half
of the block. The block is a fractured block, meaning that the data in this
block is not consistent.
45.
What are the steps to performing complete recovery on the whole
database?
Mount the database
Ensure that all datafiles you want to
recover are online
Restore a backup of the whole database or
the files you want to recover
Apply online or archived redo logs, or a
combination of the two
46.
What are the steps to performing complete recovery on a tablespace or
datafile?
Take the tablespace or datafile to be
recovered offline if the database is open
Restore a backup of the datafiles you want
to recover
Apply online or archived redo logs, or a
combination of the two
47.
What are the components of physical database structure of Oracle
database?
Oracle database is comprised of three types
of files. One or more datafiles, two are more redo log files, and one or more
control files.
48.
What are the components of logical database structure of Oracle
database?
There are tablespaces and database's schema
objects.
49.
What is a tablespace?
A database is divided into Logical Storage
Unit called tablespaces. A tablespace is used to grouped related logical
structures together.
50.
What is SYSTEM tablespace and when is it created?
Every Oracle database contains a tablespace
named SYSTEM, which is automatically created when the database is created. The
SYSTEM tablespace always contains the data dictionary tables for the entire
database.
51.
Explain the relationship among database, tablespace and data file.
Each databases logically divided into one
or more tablespaces one or more data files are explicitly created for each
tablespace.
52.
What is schema?
A schema is collection of database objects
of a user.
53.
What are Schema Objects?
Schema objects are the logical structures
that directly refer to the database's data. Schema objects include tables,
views, sequences, synonyms, indexes, clusters, database triggers, procedures,
functions packages and database links.
54.
Can objects of the same schema reside in different tablespaces?
Yes.
55.
Can a tablespace hold objects from different schemes?
Yes.
56.
What is Oracle table?
A table is the basic unit of data storage
in an Oracle database. The tables of a database hold all of the user accessible
data. Table data is stored in rows and columns.
57.
What is an Oracle view?
A view is a virtual table. Every view has a
query attached to it. (The query is a SELECT statement that identifies the
columns and rows of the table(s) the view uses.)
58.
Do a view contain data?
Views do not contain or store data.
59.
Can a view based on another view?
Yes.
60.
What are the advantages of views?
- Provide an additional level of table
security, by restricting access to a predetermined set of rows and columns of a
table.
- Hide data complexity.
- Simplify commands for the user.
- Present the data in a different
perspective from that of the base table.
- Store complex queries.
61.
What is an Oracle sequence?
A sequence generates a serial list of
unique numbers for numerical columns of a database's tables.
62.
What is a synonym?
A synonym is an alias for a table, view,
sequence or program unit.
63.
What are the types of synonyms?
There are two types of synonyms private and
public.
64.
What is a private synonym?
Only its owner can access a private
synonym.
65.
What is a public synonym?
66.
Any database user can access a public synonym.
67.
What are synonyms used for?
- Mask the real name and owner of an
object. - Provide public access to an object - Provide location transparency
for tables, views or program units of a remote database. - Simplify the SQL
statements for database users.
68.
What is an Oracle index?
An index is an optional structure
associated with a table to have direct access to rows, which can be created to
increase the performance of data retrieval. Index can be created on one or more
columns of a table.
69.
How are the index updates?
Indexes are automatically maintained and
used by Oracle. Changes to table data are automatically incorporated into all
relevant indexes.
70.
What are clusters?
Clusters are groups of one or more tables
physically stores together to share common columns and are often used together.
71.
What is cluster key?
The related columns of the tables in a
cluster are called the cluster key.
72.
What is index cluster?
A cluster with an index on the cluster key.
73.
What is hash cluster?
A row is stored in a hash cluster based on
the result of applying a hash function to the row's cluster key value. All rows
with the same hash key value are stores together on disk.
74.
When can hash cluster used?
Hash clusters are better choice when a
table is often queried with equality queries. For such queries the specified
cluster key value is hashed. The resulting hash key value points directly to
the area on disk that stores the specified rows.
75.
What is database link?
A database link is a named object that
describes a "path" from one database to another.
76.
What are the types of database links?
Private database link, public database link
& network database link.
77.
What is private database link?
Private database link is created on behalf
of a specific user. A private database link can be used only when the owner of
the link specifies a global object name in a SQL statement or in the definition
of the owner's views or procedures.
78.
What is public database link?
Public database link is created for the
special user group PUBLIC. A public database link can be used when any user in
the associated database specifies a global object name in a SQL statement or
object definition.
79.
What is network database link?
Network database link is created and
managed by a network domain service. A network database link can be used when
any user of any database in the network specifies a global object name in a SQL
statement or object definition.
80.
What is data block?
Oracle database's data is stored in data
blocks. One data block corresponds to a specific number of bytes of physical
database space on disk.
81.
How to define data block size?
A data block size is specified for each
Oracle database when the database is created. A database users and allocated
free database space in Oracle data blocks. Block size is specified in init.ora
file and cannot be changed latter.
82.
What is row chaining?
In circumstances, all of the data for a row
in a table may not be able to fit in the same data block. When this occurs, the
data for the row is stored in a chain of data block (one or more) reserved for
that segment.
83.
What is an extent?
An extent is a specific number of
contiguous data blocks, obtained in a single allocation and used to store a
specific type of information.
84.
What is a segment?
A segment is a set of extents allocated for
a certain logical structure.
85.
What are the different types of segments?
Data segment, index segment, rollback
segment and temporary segment.
86.
What is a data segment?
Each non-clustered table has a data
segment. All of the table's data is stored in the extents of its data segment.
Each cluster has a data segment. The data of every table in the cluster is
stored in the cluster's data segment.
87.
What is an index segment?
Each index has an index segment that stores
all of its data.
88.
What is rollback segment?
A database contains one or more rollback
segments to temporarily store "undo" information.
89.
What are the uses of rollback segment?
To generate read-consistent database
information during database recovery and to rollback uncommitted transactions
by the users.
90.
What is a temporary segment?
Temporary segments are created by Oracle
when a SQL statement needs a temporary work area to complete execution. When
the statement finishes execution, the temporary segment extents are released to
the system for future use.
91.
What is a datafile?
Every Oracle database has one or more
physical data files. A database's data files contain all the database data. The
data of logical database structures such as tablesand indexes is physically
stored in the data files allocated for a database.
92.
What are the characteristics of data files?
A data file can be associated with only one
database. Once created a data file can't change size. One or more data files
form a logical unit of database storage called a tablespace.
93.
What is a redo log?
The set of redo log files for a database is
collectively known as the database redo log.
94.
What is the function of redo log?
The primary function of the redo log is to
record all changes made to data.
95.
What is the use of redo log information?
The information in a redo log file is used
only to recover the database from a system or media failure prevents database
data from being written to a database's data files.
96.
What does a control file contains?
- Database name - Names and locations of a
database's files and redolog files. - Time stamp of database creation.
97.
What is the use of control file?
When an instance of an Oracle database is
started, its control file is used to identify the database and redo log files
that must be opened for database operation to proceed. It is also used in
database recovery.
No comments:
Post a Comment