What is the difference between database and instance

What is an Oracle index?

What are the Common Oracle DBA Tasks?

Explain Oracle Grid Architecture?

The Oracle grid architecture pools large numbers of servers, storage, and networks into a flexible, on-demand computing resource for enterprise computing needs. The grid computing infrastructure continually analyzes demand for resources and adjusts supply accordingly.
For example, you could run different applications on a grid of several linked database servers. When reports are due at the end of the month, the database administrator could automatically provision more servers to that application to handle the increased demand.
Grid computing uses sophisticated workload management that makes it possible for applications to share resources across many servers. Data processing capacity can be added or removed on demand, and resources within a location can be dynamically provisioned. Web services can quickly integrate applications to create new business processes.

== What are the different phases of database startup?

What are the different states of a redolog member and its significance

We can find the status of redologs from v$log.

select group#,status from v$log;

Different status of redolog are:

UNUSED– Online redo log has never been used. This is the status of a redo log that was newly added, or just after a RESETLOGS, and not being used yet.
CURRENT– Means this redo log is currently getting written. This implies that the redo log is active.
ACTIVE– Log is active but is not the current log. It is needed for crash recovery. It may be in use for block recovery. It may or may not be archived.
CLEARING– Log is being re-created as an empty log after an ALTER DATABASE CLEAR LOGFILE statement. After the log is cleared, the status changes to UNUSED.
CLEARING CURRENT- Current log is being cleared of a closed thread. The log can stay in this status if there is some failure in the switch such as an I/O error writing the new log header.
INACTIVE– Log is no longer needed for instance recovery. It may be in use for media recovery. It might or might not be archived.

What is Rollback Segment?

What are the different type of Segments ?

  1. Data Segment(for storing User Data)
  2. Index Segment (for storing index)
  3. Rollback Segment and Temporary Segment.

How do you recover the database if you lost one of the controlfile in the database?

How do you recover the database if you lost all of the controlfile in the database?

How can you rebuild an index?

What is SCN (System Change Number) ?

désert/Oracle/Interview (last edited 2019-05-23 09:14:53 by localhost)