Database Administration Questions

Q:

Describe what redo logs are.

Answer

Redo logs are logical and physical structures that are designed to hold all the changes made to a database and are intended to aid in the recovery of a database.

Report Error

View answer Workspace Report Error Discuss

0 1160
Q:

How can you rebuild an index?

Answer

ALTER INDEX <index_name> REBUILD;

Report Error

View answer Workspace Report Error Discuss

0 1134
Q:

What is the use of ANALYZE command?

Answer

To perform one of these function on an index, table, or cluster:


 - To collect statistics about object used by the optimizer and store them in the data dictionary. 


 - To delete statistics about the object used by object from the data dictionary.


 - To validate the structure of the object.


 - To identify migrated and chained rows off the table or cluster.

Report Error

View answer Workspace Report Error Discuss

0 1125
Q:

What is Distributed database?

Answer

A distributed database is a network of databases managed by multiple database servers that appears to a user as single logical database. The data of all databases in the distributed database can be simultaneously accessed and modified.

Report Error

View answer Workspace Report Error Discuss

0 1099
Q:

What are the advantages of operating a database in ARCHIVELOG mode over operating it in NO ARCHIVELOG mode?

Answer

Complete database recovery from disk failure is possible only in ARCHIVELOG mode. Online database backup is possible only in ARCHIVELOG mode.

Report Error

View answer Workspace Report Error Discuss

0 1091