Top
PRIMECLUSTER Wizard for Oracle 4.5 Configuration and Administration Guide
FUJITSU Software

G.3.2 Oracle database Control (Scalable Operation with Oracle RAC)

This section describes startup, shutdown and monitoring of Oracle resources in scalable operation with Oracle RAC using Oracle Data Guard/Oracle Active Data Guard.

Oracle RAC instance startup

Startup procedure of an Oracle RAC instance is as follows:

  1. su - <Oracle user>

  2. srvctl stop instance -d $DB_NAME -i $ORACLE_SID

  3. srvctl start instance -d $DB_NAME -i $ORACLE_SID -o mount

  4. The procedure according to the database role is executed.

    • Primary Database

      ALTER DATABASE OPEN;

    • Physical Standby Database

      • ReceiveOnly

        No procedure.

      • NormalApply

        ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING ARCHIVED LOGFILE DISCONNECT;

      • RealTimeApply

        ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT;

      • ReadOnlyOPEN

        ALTER DATABASE OPEN;

      • RealTimeQueryN

        ALTER DATABASE OPEN;

        ALTER DATABASE RECOVER MANAGED STANDBY DATABASE USING ARCHIVED LOGFILE DISCONNECT;

      • RealTimeQueryR

        ALTER DATABASE OPEN;

        ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT;

    • Logical Standby Database

      The procedure according to the REDOApply of the Oracle instance resource is executed.

      • ReceiveOnly, ReadOnlyOPEN, RealTimeQueryN, RealTimeQueryR

        ALTER DATABASE OPEN;

      • NormalApply

        ALTER DATABASE OPEN;

        ALTER DATABASE START LOGICAL STANDBY APPLY;

      • RealTimeApply

        ALTER DATABASE OPEN;

        ALTER DATABASE START LOGICAL STANDBY APPLY IMMEDIATE;

    • Snapshot Standby Database

      ALTER DATABASE OPEN;

Oracle RAC instance shutdown

Shutdown procedure of an Oracle RAC instance is as follows:

Monitoring Oracle RAC instance

Monitoring of the Oracle RAC is same as that of Oracle instance in the standby operation, except for the following points. For details, see "G.3.1 Oracle database Control (Standby Operation)"

Listener startup, shutdown and monitoring

Startup, shutdown and monitoring of listeners are same as does not use Oracle Data Guard. For details, see "3.1.2 Scalable Operation with Oracle RAC".