Database Interview Questions
Database Interview Questions
Database Interview Questions
1. What is database?
A database is a logically coherent collection of data with some inherent meaning,
representing some aspect of real world and which is designed, built and populated
with data for a specific purpose.
2. What is DBMS?
It is a collection of programs that enables user to create and maintain a database. In
other words it is general-purpose software that provides the users with the processes
of defining, constructing and manipulating the database for various applications.
4. Advantages of DBMS?
• Redundancy is controlled.
• Unauthorised access is restricted.
• Providing multiple user interfaces.
• Enforcing integrity constraints.
• Providing backup and recovery.
10. How is the data structure of System R different from the relational
structure?
operate on the object. These bodies of code are called methods. Objects that contain
same types of values and the same methods are grouped together into classes.
• Minimizing redundancy
• Minimizing insertion, deletion and update anomalies.
• Every dependency in F has a single attribute for its right hand side.
• We cannot replace any dependency X A in F with a dependency Y A where Y is
a proper subset of X and still have a set of dependency that is equivalent to F.
• We cannot remove any dependency from F and still have set of dependency that
is equivalent to F.
• t3
52. What are partial, alternate,, artificial, compound and natural key?
Partial Key:
It is a set of attributes that can uniquely identify weak entities and that are related
to same owner entity. It is sometime called as Discriminator.
Alternate Key:
All Candidate Keys excluding the Primary Key are known as Alternate Keys.
Artificial Key:
If no obvious key, either stand alone or compound is available, then the last resort
is to simply create a key, by assigning a unique number to each record or
occurrence. Then this is known as developing an artificial key.
Compound Key:
If no single data element uniquely identifies occurrences within a construct, then
combining multiple elements to create a unique identifier for the construct is known
as creating a compound key.
Natural Key:
When one of the data elements stored within a construct is utilized as the primary
key, then it is called the natural key.
53. What is indexing and what are the different kinds of indexing?
Indexing is a technique for determining how quickly specific data can be found.
Types:
• Binary search style indexing
• B-Tree indexing
• Inverted list indexing
• Memory resident table
• Table indexing
Generated by Foxit PDF Creator © Foxit Software
http://www.foxitsoftware.com For evaluation only.
54. What is system catalog or catalog relation? How is better known as?
A RDBMS maintains a description of all the data that it contains, information about
every relation and index that it contains. This information is stored in a collection of
relations maintained by the system called metadata. It is also called data dictionary.
The phase that identifies an efficient execution plan for evaluating a query that has
the least estimated cost is referred to as query optimization.
Join Dependency:
A Join dependency is generalization of Multivalued dependency.A JD {R1, R2, ...,
Rn} is said to hold over a relation R if R1, R2, R3, ..., Rn is a lossless-join
decomposition of R . There is no set of sound and complete inference rules for JD.
Inclusion Dependency:
An Inclusion Dependency is a statement of the form that some columns of a
relation are contained in other columns. A foreign key constraint is an example of
inclusion dependency.
Once the DBMS informs the user that a transaction has successfully completed, its
effects should persist even if the system crashes before all its changes are reflected
on disk. This property is called durability.
Atomicity:
Either all actions are carried out or none are. Users should not have to worry about
the effect of incomplete transactions. DBMS ensures this by undoing the actions of
incomplete transactions.
Aggregation:
A concept which is used to model a relationship between a collection of entities and
relationships. It is used when we need to express a relationship among relationships.
• Redo Phase
• Undo phase
67. What are the primitive operations common to all record management
systems?
Addition, deletion and modification.
68. Name the buffer in which all the commands that are typed in are stored
‘Edit’ Buffer
70. Are the resulting relations of PRODUCT and JOIN operation the same?
No.
PRODUCT: Concatenation of every row in one relation with every row in another.
JOIN: Concatenation of rows from one relation and related rows from another.
73. Which part of the RDBMS takes care of the data dictionary? How
Data dictionary is a set of tables and database objects that is stored in a special
area of the database and maintained exclusively by the kernel.
77. Define SQL and state the differences between SQL and other
conventional programming Languages
SQL is a nonprocedural language that is designed specifically for data access
operations on normalized relational database structures. The primary difference
between SQL and other conventional programming languages is that SQL statements
specify what data operations should be performed rather than how to perform them.
78. Name the three major set of files on disk that compose a database in
Oracle
There are three major sets of files on disk that compose a database. All the files are
binary. These are
• Database files
• Control files
• Redo logs
The most important of these are the database files where the actual data resides.
The control files and the redo logs support the functioning of the architecture itself.
All three sets of files must be present, open, and available to Oracle for any data on
the database to be useable. Without these files, you cannot access the database, and
the database administrator might have to recover some or all of the database using
a backup, if there is one.
or shared global area. The data and control structures in the SGA are shareable, and
all the Oracle background processes and user processes can use them.
The combination of the SGA and the Oracle background processes is known as an
Oracle instance
80. What are the four Oracle system processes that must always be up and
running for the database to be useable
The four Oracle system processes that must always be up and running for the
database to be useable include DBWR (Database Writer), LGWR (Log Writer), SMON
(System Monitor), and PMON (Process Monitor).
81. What are database files, control files and log files. How many of these
files should a database have at least? Why?
Database Files
The database files hold the actual data and are typically the largest in size.
Depending on their sizes, the tables (and other objects) for all the user accounts can
go in one database file—but that's not an ideal situation because it does not make
the database structure very flexible for controlling access to storage for different
users, putting the database on different disk drives, or backing up and restoring just
part of the database.
You must have at least one database file but usually, more than one files are used.
In terms of accessing and using the data in the tables and other objects, the number
(or location) of the files is immaterial.
The database files are fixed in size and never grow bigger than the size at which they
were created
Control Files
The control files and redo logs support the rest of the architecture. Any database
must have at least one control file, although you typically have more than one to
guard against loss. The control file records the name of the database, the date and
time it was created, the location of the database and redo logs, and the
synchronization information to ensure that all three sets of files are always in step.
Every time you add a new database or redo log file to the database, the information
is recorded in the control files.
Redo Logs
Any database must have at least two redo logs. These are the journals for the
database; the redo logs record all changes to the user objects or system objects. If
any type of failure occurs, the changes recorded in the redo logs can be used to
bring the database to a consistent state without losing any committed transactions.
In the case of non-data loss failure, Oracle can apply the information in the redo logs
automatically without intervention from the DBA.
The redo log files are fixed in size and never grow dynamically from the size at which
they were created.
The ROWID is a unique database-wide physical address for every row on every
table. Once assigned (when the row is first inserted into the database), it never
changes until the row is deleted or the table is dropped.
The ROWID consists of the following three components, the combination of which
uniquely identifies the physical storage location of the row.
Generated by Foxit PDF Creator © Foxit Software
http://www.foxitsoftware.com For evaluation only.
• Oracle database file number, which contains the block with the rows
• Oracle block address, which contains the row
• The row within the block (because each block can hold many rows)
The ROWID is used internally in indexes as a quick means of retrieving rows with a
particular key value. Application developers also use it in SQL statements as a quick
way to access a row once they know the ROWID
83. What is Oracle Block? Can two Oracle Blocks have the same address?
Oracle "formats" the database files into a number of Oracle blocks when they are
first created—making it easier for the RDBMS software to manage the files and
easier to read data into the memory areas.
The block size should be a multiple of the operating system block size. Regardless of
the block size, the entire block is not available for holding data; Oracle takes up
some space to manage the contents of the block. This block header has a minimum
size, but it can grow.
These Oracle blocks are the smallest unit of storage. Increasing the Oracle block size
can improve performance, but it should be done only when the database is first
created.
Each Oracle block is numbered sequentially for each database file starting at 1. Two
blocks can have the same block address if they are in different database files.
A database trigger is a PL/SQL block that can defined to automatically execute for
insert, update, and delete statements against a table. The trigger can e defined to
execute once for the entire statement or once for every row that is inserted,
updated, or deleted. For any one table, there are twelve events for which you can
define database triggers. A database trigger can call database procedures that are
also written in PL/SQL.
85. Name two utilities that Oracle provides, which are use for backup and
recovery.
Along with the RDBMS software, Oracle provides two utilities that you can use to
back up and restore the database. These utilities are Export and Import.
The Export utility dumps the definitions and data for the specified part of the
database to an operating system binary file. The Import utility reads the file
produced by an export, recreates the definitions of objects, and inserts the data
If Export and Import are used as a means of backing up and recovering the
database, all the changes made to the database cannot be recovered since the
export was performed. The best you can do is recover the database to the time when
the export was last performed.
86. What are stored-procedures? And what are the advantages of using
them.
Stored procedures are database objects that perform a user defined operation. A
stored procedure can have a set of compound SQL statements. A stored procedure
executes the SQL commands and returns the result to the client. Stored procedures
are used to reduce network traffic.
Generated by Foxit PDF Creator © Foxit Software
http://www.foxitsoftware.com For evaluation only.
87. How are exceptions handled in PL/SQL? Give some of the internal
exceptions' name
Exception Name
Oracle Error
CURSOR_ALREADY_OPEN ORA-06511
DUP_VAL_ON_INDEX ORA-00001
INVALID_CURSOR ORA-01001
INVALID_NUMBER ORA-01722
LOGIN_DENIED ORA-01017
NO_DATA_FOUND ORA-01403
NOT_LOGGED_ON ORA-01012
PROGRAM_ERROR ORA-06501
STORAGE_ERROR ORA-06500
TIMEOUT_ON_RESOURCE ORA-00051
TOO_MANY_ROWS ORA-01422
Generated by Foxit PDF Creator © Foxit Software
http://www.foxitsoftware.com For evaluation only.
TRANSACTION_BACKED_OUT ORA-00061
VALUE_ERROR ORA-06502
ZERO_DIVIDE ORA-01476
The concept of overloading in PL/SQL relates to the idea that you can define
procedures and functions with the same name. PL/SQL does not look only at the
referenced name, however, to resolve a procedure or function call. The count and
data types of formal parameters are also considered.
PL/SQL also attempts to resolve any procedure or function calls in locally defined
packages before looking at globally defined packages or internal functions. To further
ensure calling the proper procedure, you can use the dot notation. Prefacing a
procedure or function name with the package name fully qualifies any procedure or
function reference.
i. Bad normalization
ii. Theta joins
iii. Updating tables from join
a) i & ii b) ii & iii
c) i & iii d) ii & iii
(a) i & iii because theta joins are joins made on keys that are not primary keys.
AB -> B
AC -> C
C -> B
a) is in 1NF
b) is in 2NF
c) is in 3NF
d) is in BCNF
(d) Error - the ORDER BY clause. Since ORDER BY clause cannot be used in UNIONS
It is a program module that provides the interface between the low-level data stored
in database, application programs and queries submitted to the system.
It is the program module, which tests for the satisfaction of integrity constraint and
checks the authority of user to access data.
102. What is cold backup and hot backup (in case of Oracle)?
• Cold Backup:
It is copying the three sets of files (database files, redo logs, and control file) when
the instance is shut down. This is a straight file copy, usually from the disk directly to
tape. You must shut down the instance to guarantee a consistent copy.
If a cold backup is performed, the only option available in the event of data file loss
is restoring all the files from the latest backup. All work performed on the database
since the last backup is lost.
• Hot Backup:
Some sites (such as worldwide airline reservations systems) cannot shut down the
database while making a backup copy of the files. The cold backup is not an available
option.
So different means of backing up database must be used — the hot backup. Issue a
SQL command to indicate to Oracle, on a tablespace-by-tablespace basis, that the
files of the tablespace are to backed up. The users can continue to make full use of
the files, including making changes to the data. Once the user has indicated that
he/she wants to back up the tablespace files, he/she can use the operating system to
copy those files to the desired backup destination.
The database must be running in ARCHIVELOG mode for the hot backup option.
If a data loss failure does occur, the lost database files can be restored using the hot
backup and the online and offline redo logs created since the backup was done. The
database is restored to the most consistent state without any loss of committed
transactions.
103. What are Armstrong rules? How do we say that they are complete
and/or sound
The well-known inference rules for FDs
• Reflexive rule :
If Y is subset or equal to X then X Y.
• Augmentation rule:
If X Y then XZ YZ.
• Transitive rule:
If {X Y, Y Z} then X Z.
• Decomposition rule :
If X YZ then X Y.
• Union or Additive rule:
Generated by Foxit PDF Creator © Foxit Software
http://www.foxitsoftware.com For evaluation only.
If {X Y, X Z} then X YZ.
• Pseudo Transitive rule :
If {X Y, WY Z} then WX Z.
Of these the first three are known as Amstrong Rules. They are sound because it is
enough if a set of FDs satisfy these three. They are called complete because using
these three rules we can generate the rest all inference rules.
104. How can you find the minimal key of relational schema?
Minimal key is one which can identify each tuple of the given relation schema
uniquely. For finding the minimal key it is required to find the closure that is the set
of all attributes that are dependent on any given set of attributes under the given set
of functional dependency.
Algo. I Determining X+, closure for X, given set of FDs F
1. Set X+ = X
2. Set Old X+ = X+
3. For each FD Y Z in F and if Y belongs to X+ then add Z to X+
4. Repeat steps 2 and 3 until Old X+ = X+
Proactive Update:
The updates that are applied to database before it becomes effective in real world .
Retroactive Update:
The updates that are applied to database after it becomes effective in real world .
Simulatneous Update:
The updates that are applied to database at the same time when it becomes
effective in real world .
= Equal
<> or != Not equal
> Greater than
< Less than
>= Greater than or equal
<= Less than or equal
BETWEEN Between an inclusive range
LIKE Search for a pattern
3. SELECT statements:
4. The SELECT INTO Statement is most often used to create backup copies of
tables or for archiving records.
9. The IN operator may be used if you know the exact value you want to
return for at least one of the columns.
When this clause is used with the DROP command, a parent table can be dropped
even when a child table exists.
DROP TABLE &TABLE_NAME; Variable names should start with an alphabet. Here the
table name starts with an '&' symbol.
USER_TAB_PRIVS_MADE, USER_TAB_PRIVS_RECD
14. Which system table contains information on constraints on all the tables
created?obtained?
USER_CONSTRAINTS.
16. State true or false. !=, <>, ^= all denote the same operation?
True.
17. State true or false. EXISTS, SOME, ANY are operators in SQL?
True.
Generated by Foxit PDF Creator © Foxit Software
http://www.foxitsoftware.com For evaluation only.
20. What is the advantage of specifying WITH GRANT OPTION in the GRANT
command?
The privilege receiver can further grant the privileges he/she has obtained from the
owner to any other user.
START or @.
22. What is the value of comm and sal after executing the following query if
the initial value of ‘sal’ is 10000
23. Which command displays the SQL command in the SQL buffer, and then
executes it?
RUN.
24. What command is used to get back the privileges offered by the GRANT
command?
REVOKE.
26. Which date function is used to find the difference between two dates?
MONTHS_BETWEEN.
LIKE operator.
Generated by Foxit PDF Creator © Foxit Software
http://www.foxitsoftware.com For evaluation only.
28. What is the use of the DROP option in the ALTER TABLE command?
IS NULL operator.
30. What are the privileges that can be granted on a table by a user to
others?
31. Which function is used to find the largest integer less than or equal to a
specific value?
FLOOR.
DESC has two purposes. It is used to describe a schema as well as to retrieve rows
from table in descending order.
Explanation :
The query SELECT * FROM EMP ORDER BY ENAME DESC will display the output
sorted on ENAME in descending order.
Both will result in deleting all the rows in the table EMP..
1200.
Generated by Foxit PDF Creator © Foxit Software
http://www.foxitsoftware.com For evaluation only.
38. What is the parameter substitution symbol used with INSERT INTO
command?
&