Monday 9 February 2015

Oracle Core DBA Interview questions - Backup and Recovery

Below are some important Oracle DBA interview questions which are asked in most MNC company interviews for beginners or professionals.

6.    Where would you look for errors from the database engine?
In the alert log.

7.    Compare and contrast TRUNCATE and DELETE for a table.
Both the truncate and delete command have the desired outcome of getting rid of all the rows in a table. The difference between the two is that the truncate command is a DDL operation and just moves the high water mark and produces a now rollback. The delete command, on the other hand, is a DML operation, which will produce a rollback and thus take longer to complete.

8.    Give the reasoning behind using an index.
Faster access to data blocks in a table.

9.    Give the two types of tables involved in producing a star schema and the type of data they hold.
Fact tables and dimension tables. A fact table contains measurements while dimension tables will contain data that will help describe the fact tables.

10.    What type of index should you use on a fact table?
A Bitmap index.
More Questions & Answers :-
Page1  Page2  Page3  Page4

No comments:

Post a Comment