Oracle 视图 DBA_ROLLING_STATUS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_ROLLING_STATUS被用于查询数据库的卷状态信息。它展示了当前正在进行的和已经结束的卷信息,包括任务的GUID、任务的状态、任务类型、数据库名称等,以及最新的卷或运行信息。
要使用这个视图,可以使用以下查询:
SELECT * FROM DBA_ROLLING_STATUS;
这将返回包含数据库卷状态信息,以及当前正在运行的运行和已完成运行的列表。可以使用以下查询来筛选特定任务:
SELECT * FROM DBA_ROLLING_STATUS
WHERE GUID = ‘XXXX’;
这将返回与提供的GUID关联的滚动状态。
官方英文解释
DBA_ROLLING_STATUS
displays the overall status of the rolling operation.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Revision number of the current upgrade plan |
|
|
|
Readiness of the facility to begin or resume the rolling operation |
|
|
|
Current phase of the plan |
|
|
|
Instruction ID of the next pending instruction |
|
|
|
Number of remaining instructions to execute in the plan |
|
|
|
Instance number from which the rolling operation is being coordinated |
|
|
|
Process PID in which the rolling operation is being coordinated |
|
|
|
Database unique name of the original primary |
|
|
|
Database unique name of the future primary |
|
|
|
Number of total databases eligible to participate in the rolling operation |
|
|
|
Number of databases configured to participate in the rolling operation |
|
|
|
Time of the last call to |
|
|
|
Time of the last call to |
|
|
|
Time of the last call to |
|
|
|
Time of the last call to |
|
|
|
Time of the last call to |
See Also:
-
Oracle Data Guard Concepts
and Administration for more information about rolling operations. -
Oracle Database PL/SQL
Packages and Types Reference for more information about theDBMS_ROLLING
package