Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Oracle


You have just had to restore from backup and do not have any control files. How would you go about bringing up this database?

I would create a text based backup control file, stipulating where on disk all the data files where and then issue the recover command with the using backup control file clause.

How do you switch from an init.ora file to a spfile?
Issue the create spfile from pfile command.

Explain the difference between a data block, an extent and a segment.
A data block is the smallest unit of logical storage for a database object. As objects grow they take chunks of additional storage that are composed of contiguous data blocks. These groupings of contiguous data blocks are called extents. All the extents that an object takes when grouped together are considered the segment of the database object.
 

Give two examples of how you might determine the structure of the Table DEPT.
Use the describe command or use the dbms_metadata.get_ddl package.

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

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.

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

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.

What type of index should you use on a fact table?
A Bitmap index.

Give two examples of referential integrity constraints.
A primary key and a foreign key.

A table is classified as a parent table and you want to drop and re-create it. How would you do this without affecting the child tables?
Disable the foreign key constraint to the parent, drop the table, re-create the table, and enable the foreign key constraint.

Explain the difference between ARCHIVELOG mode and NOARCHIVELOG mode and the benefits and disadvantages to each.

ARCHIVELOG Mode is a mode that you can put the database in for creating a backup of all transactions that have occurred in the database so that you can recover to any ball in time. NOARCHIVELOG mode is basically the absence of ARCHIVELOG mode and has the disadvantage of not being able to recover to any ball in time. NOARCHIVELOG mode does have the advantage of not having to write transactions to an archive log and thus increases the performance of the database slightly.

What command would you use to create a backup control file?
Alter database backup control file to trace.

Give the stages of instance startup to a usable state where normal users may access it.
STARTUP NOMOUNT - Instance startup
STARTUP MOUNT - The database is mounted
STARTUP OPEN - The database is opened



This post first appeared on Technical Content, please read the originial post: here

Subscribe to Technical Content

Get updates delivered right to your inbox!

Thank you for your subscription

×