141 DBMS_ROLLING
The DBMS_ROLLING
PL/SQL package is used to implement the Rolling Upgrade Using Active Data Guard feature, which streamlines the process of upgrading Oracle Database software in a Data Guard configuration in a rolling fashion. The Rolling Upgrade Using Active Data Guard feature requires a license for the Oracle Active Data Guard option, and can be used for database version upgrades starting with the first patchset of Oracle Database 12c.
Additionally, you can use this feature immediately for other database maintenance tasks. The database where maintenance is performed must be operating at a minimum of Oracle Database 12c Release 1 (12.1). Such maintenance tasks include:
-
Adding partitioning to non-partitioned tables
-
Changing BasicFiles LOBs to SecureFiles LOBs
-
Changing
XMLType
stored asCLOB
toXMLtype
stored as binary XML -
Altering tables to be OLTP-compressed
This chapter contains the following topics:
See Also:
-
Oracle Data Guard Concepts and Administration for information about using
DBMS_ROLLING
to perform a rolling upgrade
141.1 DBMS_ROLLING Overview
The DBMS_ROLLING
PL/SQL package provides procedures that you can use to perform any change throughout a Data Guard configuration in a rolling fashion, including a rolling upgrade of the Oracle Database software. Although the focus of this document is rolling upgrade operations, the content is applicable to the deployment of any rolling changes.
All the procedures are executed at the current primary database, which eliminates the potential confusion of moving between remote databases to perform various operations related to the rolling upgrade. If necessary, all the procedures can be called again to resume the rolling upgrade after an error or interruption. (The upgrade script must still be run at the standby.)
The package also provides a procedure that allows you to return a Data Guard configuration back to its original, pre-upgrade state in the event users wish to abandon the rolling upgrade.
The actual execution of a rolling upgrade has been reduced to three steps (excluding the upgrade of the Oracle Database software itself and the on-disk setup of the new Oracle Database software). The number of steps remains the same regardless of the size of the Data Guard configuration.
Conceptually, for the purposes of the DBMS_ROLLING
package, you divide your Data Guard configuration into two groups: the leading group and the trailing group. The databases in the leading group undergo the upgrade operation (or any other change that you are deploying) first. The databases in the trailing group undergo the upgrade of the Oracle Database software (or any other change that you are deploying) only after the switchover operation. This insulates them from the upgrade and gives you time to evaluate the effect of the change in the leading group databases.
Each group has a master database: the future primary database as specified in the DBMS_ROLLING.INIT_PLAN
procedure is the master of the leading group, called Leading Group Master (LGM), while the original primary database is the master of the trailing group called Trailing Group Master (TGM). You can configure databases to protect the LGM and the TGM. Standbys designated to protect the LGM are referred to as Leading Group Standbys (LGS). Standbys designated to protect the TGM are referred to as Trailing Group Standbys (TGS). These terms are used throughout this documentation.
141.2 DBMS_ROLLING Security Model
The DBMS_ROLLING
package is available to users who have been granted the DBA role.
141.3 Summary of DBMS_ROLLING Subprograms
This table lists and briefly describes the DBMS_ROLLING
package subprograms.
Table 141-1 DBMS_ROLLING Package Subprograms
Subprogram | Description |
---|---|
Initializes a rolling operation plan with system-generated default values. |
|
Destroys any existing rolling operation plan, its parameters, and all resources associated with the rolling operation. |
|
Validates plan parameters and creates or modifies a rolling operation plan. |
|
Modifies a rolling operation parameter. |
|
Starts the rolling operation. |
|
Performs a switchover between the current primary database and the transient logical standby database. |
|
Finalizes the rolling operation. |
|
Completely rolls back the rolling operation. |
141.3.1 INIT_PLAN Procedure
This procedure initializes a rolling operation plan with system-generated default values.
Syntax
DBMS_ROLLING.INIT_PLAN ( future_primary IN VARCHAR2);
Parameters
Table 141-2 INIT_PLAN Procedure Parameters
Parameter | Description |
---|---|
|
|
Exceptions
-
ORA-45400
: operation not permitted on current database -
ORA-45401
: upgrade plan is already active -
ORA-45402
:LOG_ARCHIVE_CONFIG
must contain theDG_CONFIG
attribute -
ORA-45403
: database %s must be specified inDG_CONFIG
-
ORA-45411
: operation requires additional arguments -
ORA-65040
: operation not allowed from within a pluggable database
Usage Notes
-
A plan must be prepared before any parameters can be customized.
141.3.2 DESTROY_PLAN Procedure
This procedure destroys any existing upgrade plan, its parameters, and all resources associated with a rolling operation.
Syntax
DBMS_ROLLING.DESTROY_PLAN ();
Parameters
This procedure has no parameters.
Exceptions
-
ORA-45422
: operation requires existing plan -
ORA-65040
: operation not allowed from within a pluggable database
Usage Notes
-
When a rolling operation is complete, this procedure can be called to completely purge all states related to a rolling operation.
141.3.3 BUILD_PLAN Procedure
This procedure validates plan parameters and creates or modifies a rolling operation plan.
A successfully constructed plan is required in order to perform a rolling operation. This procedure must return successfully before the START_PLAN
procedure can be called to start the rolling operation. Parameter changes made after a plan has been created may require calling the BUILD_PLAN
procedure to modify the existing plan. The DBA_ROLLING_EVENTS
view will indicate if any invocation of the SET_PARAMETER
procedure requires a plan rebuild. Failure to rebuild the plan will result in an ORA-45416
error when attempting to resume the rolling operation.
Syntax
DBMS_ROLLING.BUILD_PLAN ();
Parameters
This procedure has no parameters.
Exceptions
-
ORA-45400
: operation not permitted on current database -
ORA-45403
: database %s must be specified in theDG_CONFIG
-
ORA-45414
: could not connect to a remote database -
ORA-45419
:DB_UNIQUE_NAME
parameter must be specified -
ORA-45433
: failover was detected on an unsupported database -
ORA-45434
: multiple failovers of the same type detected -
ORA-65040
: operation not allowed from within a pluggable database
Usage Notes
-
This procedure connects to databases specified as plan parameters. These instances must be mounted or open, and must be reachable via the network.
141.3.4 SET_PARAMETER Procedure
This procedure modifies a rolling operation parameter.
Syntax
DBMS_ROLLING.SET_PARAMETER ( scope IN VARCHAR2 DEFAULT NULL, name IN NUMBER, value IN VARCHAR2);
Parameters
Table 141-3 SET_PARAMETER Procedure Parameters
Parameter | Description |
---|---|
|
Parameter scope. It can either be NULL for global parameters, or the |
|
The |
|
New value for the parameter or NULL to revert to a default value. |
Exceptions
-
ORA-45400
: operation not permitted on current database -
ORA-45408
: parameter name is unknown -
ORA-45409
: parameter value is invalid or out of bounds -
ORA-45410
: parameter may not be modified -
ORA-45411
: operation requires additional arguments -
ORA-45412
: parameter scope argument is unknown -
ORA-45413
: parameter has no default value -
ORA-45414
: could not connect to a remote database -
ORA-65040
: operation not allowed from within a pluggable database
Usage Notes
-
Changes to a parameter value may require a call to the
DBMS_ROLLING.BUILD_PLAN
procedure to modify the existing plan. Users should check theDBA_ROLLING_EVENTS
view after setting a parameter to determine if a rebuild is necessary. -
Table 141-4 lists all the available parameters and their descriptions. The parameter names and values described in the table are all of type
VARCHAR2
. -
The
MINVAL
andMAXVAL
columns in theDBA_ROLLING_PARAMETERS
view identify the valid range of values for a parameter. The view does not contain any parameters until theDBMS_ROLLING.INIT_PLAN
procedure has been successfully invoked.
Table 141-4 Valid Values for DBMS_ROLLING.SET_PARAMETER Procedure
Parameter Name | Global? | Description | Default |
---|---|---|---|
|
Yes |
The maximum amount of time in seconds to enforce |
3600 |
|
Yes |
Whether the switchover operation will wait for active sessions to finish. If set to 1, the |
0 |
|
Yes |
File name of the backup control file that is created during a rolling upgrade. |
rolling_change_backup.f |
DGBROKER |
Yes | Use Data Guard broker for managing apply, recovery, and log archive destinations. | 1 if broker is enabled, 0 otherwise. |
|
Yes |
The maximum amount of time in seconds to enforce |
3600 |
|
Yes |
Whether the instantiation of the transient logical standby will include a wait for the complete loading of the data dictionary snapshot in redo. If set to 1, then the |
|
|
Yes |
The time in seconds to wait in between attempts to quiesce PL/SQL activity in order to write the data dictionary to redo. |
300 |
|
Yes |
The maximum amount of time in seconds to attempt to quiesce PL/SQL activity in order to write the data dictionary to redo. |
3600 |
|
Yes |
The maximum number of records to permit in |
|
|
Yes |
Automatically attempt to adjust the upgrade plan as a result of a failover event. This parameter resets its value to 0 upon completion of a subsequent call to |
|
|
Execution of procedures in |
|
|
|
Yes |
Ignore warnings which would otherwise raise exceptions during execution of the |
|
|
Yes |
Ignore last encountered error upon startup of next rolling operation. This parameter resets its value to 0 upon invocation of a procedure call which resumes the rolling upgrade. |
|
|
Yes |
The maximum time in seconds to wait for a recently enabled log archive destination to reach a VALID state. |
600 |
|
Yes |
Logging level for the |
|
|
No |
The upgrade group in which the specified database is a member. A value of A value of |
|
|
Yes |
The apply lag time in seconds associated with the |
600 |
|
Yes |
The maximum amount of time in seconds to enforce |
60 |
|
Yes |
Whether the |
0 |
|
Yes |
The apply lag time in seconds associated with the |
600 |
|
Yes |
The maximum amount of time in seconds to enforce |
60 |
|
Yes |
Whether the |
1 |
|
Yes |
The apply lag time in seconds associated with the |
60 |
|
Yes |
The maximum amount of time in seconds to enforce |
60 |
|
Yes |
Whether the |
0 |
|
Yes |
The maximum amount of time in seconds to enforce |
10800 |
|
Yes |
Whether the |
1 |
|
Yes |
The maximum amount of time in seconds to enforce |
10800 |
|
Yes |
Whether the |
1 |
141.3.5 START_PLAN Procedure
This procedure starts the rolling operation. This procedure must be executed on the primary database to formally start the rolling operation.
When the START_PLAN
procedure is complete, the LGM (identified with the future_primary
parameter in the INIT_PLAN
procedure) will be converted into a fully configured transient logical standby database.
Syntax
DBMS_ROLLING.START_PLAN ();
Parameters
This procedure has no parameters.
Exceptions
-
ORA-45400
: operation not permitted on current database -
ORA-45414
: could not connect to a remote database -
ORA-45415
: instruction execution failure -
ORA-45416
: operation cannot start until plan rebuild -
ORA-45417
: operation not permitted since current phase was not %s -
ORA-45422
: operation requires existing plan -
ORA-45426
: managed recovery process was not running -
ORA-45427
: logical standby Redo Apply process was not running -
ORA-45428
: database was not in expected database role -
ORA-45435
: managed recovery process was running -
ORA-45436
: logical standby Redo Apply process was running -
ORA-45438
: database is not in mounted mode -
ORA-45439
: database is not in open read/write mode -
ORA-45486
: database update progress is inconsistent -
ORA-65040
: operation not allowed from within a pluggable database
Usage Notes
-
A rolling operation plan must have previously been generated through the
BUILD_PLAN
procedure.
141.3.6 SWITCHOVER Procedure
This procedure performs a switchover between the current primary database (also known as the TGM) and the transient logical standby database (also known as the LGM).
At the successful completion of the procedure, the LGM assumes the primary role for the Data Guard configuration.
Syntax
DBMS_ROLLING.SWITCHOVER ();
Parameters
This procedure has no parameters.
Exceptions
-
ORA-45400
: operation not permitted on current database -
ORA-45414
: could not connect to a remote database -
ORA-45415
: instruction execution failure -
ORA-45416
: operation cannot start until plan rebuild -
ORA-45417
: operation not permitted since current phase was not %s -
ORA-45422
: operation requires existing plan -
ORA-45426
: managed recovery process was not running -
ORA-45427
: logical standby Redo Apply process was not running -
ORA-45428
: database was not in expected database role -
ORA-45435
: managed recovery process was running -
ORA-45436
: logical standby Redo Apply process was running -
ORA-45438
: database is not in mounted mode -
ORA-45439
: database is not in open read/write mode -
ORA-45486
: database update progress is inconsistent -
ORA-65040
: operation not allowed from within a pluggable database
Usage Notes
-
This procedure can only be called after you have manually upgraded the transient logical standby and opened it on the higher Oracle Database version.
141.3.7 FINISH_PLAN Procedure
This procedure finalizes the rolling operation.
It configures the former primary (also known as the TGM) as a physical standby, and configures remaining physical standbys to recover the upgrade redo from the future primary.
Syntax
DBMS_ROLLING.FINISH_PLAN ();
Parameters
This procedure has no parameters.
Exceptions
-
ORA-45400
: operation not permitted on current database -
ORA-45414
: could not connect to a remote database -
ORA-45415
: instruction execution failure -
ORA-45416
: operation cannot start until plan rebuild -
ORA-45417
: operation not permitted since current phase was not %s -
ORA-45422
: operation requires existing plan -
ORA-45426
: managed recovery process was not running -
ORA-45427
: logical standby Redo Apply process was not running -
ORA-45428
: database was not in expected database role -
ORA-45435
: managed recovery process was running -
ORA-45436
: logical standby Redo Apply process was running -
ORA-45438
: database is not in mounted mode -
ORA-45439
: database is not in open read/write mode -
ORA-45486
: database update progress is inconsistent -
ORA-65040
: operation not allowed from within a pluggable database
Usage Notes
-
This procedure can only be called after you have remounted the former primary and remaining physical standbys on the higher Oracle Database version.
141.3.8 ROLLBACK_PLAN Procedure
This procedure rolls back the configuration-wide rolling operation.
Once completed, all of the databases in the leading group become physical standbys of the original primary database. This procedure can only be called if the configuration has not yet gone through a switchover operation since the START_PLAN
procedure was invoked.
Syntax
DBMS_ROLLING.ROLLBACK_PLAN;
Parameters
This procedure has no parameters.
Exceptions
-
ORA-45400
: operation not permitted on current database -
ORA-45414
: could not connect to a remote database -
ORA-45415
: instruction execution failure -
ORA-45441
: no databases eligible for rollback -
ORA-45442
: rollback is not permitted after a role change -
ORA-65040
: operation not allowed from within a pluggable database
Usage Notes
-
You must manually restart media recovery on the lower Oracle Database version if the upgrade of the transient logical standby has already been performed.