Oracle 视图 DBA_ROLLING_DATABASES 官方解释,作用,如何使用详细说明
本站中文解释
Oracle 视图 DBA_ROLLING_DATABASES 是一个字典视图,用于展示数据库正在进行轮询升级的信息。它包含轮询每个数据库的名称,状态,进度和结果。
如何使用:
1. 使用以下SQL查询DBA_ROLLING_DATABASES视图以查看数据库正在进行轮询升级:
SELECT * FROM DBA_ROLLING_DATABASES;
2. 您可以进一步限制查询以仅查看指定状态的数据库:
SELECT * FROM DBA_ROLLING_DATABASES WHERE UPGRADE_STATUS = ‘COMPLETED’;
官方英文解释
DBA_ROLLING_DATABASES
lists all the databases eligible for configuration with rolling operations.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Rolling operation database identifier |
|
|
|
Oracle database identifier |
|
|
|
Database unique name |
|
|
|
Database role |
|
|
|
Open mode information |
|
|
|
Indicates whether the database is participating in the rolling operation ( |
|
|
|
RDBMS version number |
|
|
|
Running status of the MRP-recovery or LSP-apply process |
|
|
|
Indicates whether the database is an Oracle Real Application Clusters (Oracle RAC) database |
|
|
|
Upgrade status of the system catalog |
|
|
|
Resetlogs SCN at which redo is currently being produced |
|
|
|
Resetlogs ID at which redo is currently being produced |
|
|
|
Last SCN at which redo was produced |
|
|
|
Database unique name of the producer of redo being consumed |
|
|
|
Resetlogs SCN at which redo is currently being consumed |
|
|
|
Resetlogs ID at which redo is currently being consumed |
|
|
|
Last SCN at which redo was consumed |
|
|
|
Time of the last record update |
See Also:
Oracle Data Guard Concepts
and Administration for more information about rolling operations.