How does Oracle9i make sure that the database is available to users at all times?

What will be an ideal response?


The database must be readily available to the users at all times. There are safety measures
considered at the planning phase, configuration phase, and implementation phase for the
availability issue. The three configurations are replication, hot standby database, and parallel
server. The Replication method uses separate databases by duplicating the entire
implementation of the database on multiple computer systems, where all updates are
performed on all database implementations. The operations can still continue if one of the
databases crashes. The hot standby database method uses only one database at a time. The
other standby copy is in recover mode at all times. The redo log files are used to recover the
standby copy. If the primary copy fails, the standby copy is recovered completely and is
brought up as the primary database. In an Oracle parallel server configuration, multiple
computer systems are used with parallel processing capability to share a common
database. In the event of a computer system failure, the operations still continue as long as
the shared database is available.

Computer Science & Information Technology

You might also like to view...

The most commonly used arrays in business applications are three-dimensional.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The default value for the border property for an element is:

a. 1 pixel b. 0 pixels c. 3 pixels d. 10 pixels

Computer Science & Information Technology

What is wrong in the following code?

``` #include #include using namespace std; int main() { vector v; cout << v[0]; return 0; } ``` a. The program has a compile error on v[0]. b. The program has a compile error on vector v. c. The program has a runtime error on vector v. d. The program has a runtime error on v[0], because the vector is empty. Key:d

Computer Science & Information Technology

The control unit is one component of the ________

A) front side bus B) clock C) CPU D) cache

Computer Science & Information Technology