Oracle 视图 V$RMAN_CONFIGURATION 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图V$RMAN_CONFIGURATION提供了备份和恢复中RMAN配置参数的信息,以便操作人员能够从当前的实例中查询到备份与恢复时RMAN的配置参数。用户可以使用V$RMAN_CONFIGURATION视图查看当前已设置的参数,以及检查执行备份和恢复操作时,当前备份和恢复参数是否正确。

使用V$RMAN_CONFIGURATION时,可以使用SQL语句“SELECT *from v$RMAN_CONFIGURATION “查询当前RMAN设置的各个配置参数,查看当前RMAN配置参数是否正确。同时也可以使用语句 “ALTER session SET NLS_DATE_FORMAT = ‘YYYY-MM-DD HH24:MI:SS’ “查看日期格式,以便更好地查询RMAN日志。

官方英文解释

V$RMAN_CONFIGURATION lists information about RMAN persistent configuration settings.

Column Datatype Description

CONF#

NUMBER

A unique key identifying this configuration record within the target database that owns it.

NAME

VARCHAR2(65)

The type of configuration. All options of the CONFIGURE command are valid types except:

  • CONFIGURE EXCLUDE (described in RC_TABLESPACE)

  • CONFIGURE AUXNAME (described in RC_DATAFILE)

  • CONFIGURE SNAPSHOT CONTROLFILE (stored only in control file)

VALUE

VARCHAR2(1025)

The CONFIGURE command setting. Example: RETENTION POLICY TO RECOVERY WINDOW OF 10 DAYS

CON_ID

NUMBER

The ID of the container to which the data pertains. Possible values include:

  • 0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.

  • 1: This value is used for rows containing data that pertain to only the root

  • n: Where n is the applicable container ID for the rows containing data


数据运维技术 » Oracle 视图 V$RMAN_CONFIGURATION 官方解释,作用,如何使用详细说明