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

本站中文解释

Oracle视图V$PROXY_ARCHIVELOG_SUMMARY查看存放在网络上的备份归档日志文件的内容。此视图将扫描每一个存放在网络上的归档日志文件服务器,并按数据库实例进行汇总并显示出所有需要备份的归档日志文件的序列号、位置、修改时间与文件大小等相关信息,这样可以使用该视图更好的查找网络归档日志文件的情况,让用户可以拥有更多的信息来管理归档日志。

要使用V$PROXY_ARCHIVELOG_SUMMARY视图,可以使用SELECT语句查询,这样可以更清楚的确认那些归档文件应该被备份,而这些归档文件也可以被路径,这样可以将路径和归档文件放到一个集合中。

官方英文解释

V$PROXY_ARCHIVELOG_SUMMARY provides summary information about the output proxy archive log file.

Column Datatype Description

NUM_FILES_BACKED

NUMBER

Number of archived log files backed up

NUM_DISTINCT_FILES_BACKED

NUMBER

Number of distinct archived log files backed up

MIN_FIRST_CHANGE#

NUMBER

Minimum first change SCN

MAX_NEXT_CHANGE#

NUMBER

Maximum first change SCN

MIN_FIRST_TIME

DATE

Minimum first change time. Forms the redo range, along with MAX_NEXT_TIME.

MAX_NEXT_TIME

DATE

Maximum next change time

OUTPUT_BYTES

NUMBER

Total output size, in bytes

OUTPUT_BYTES_DISPLAY

VARCHAR2(4000)

Displayable format for output bytes

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$PROXY_ARCHIVELOG_SUMMARY 官方解释,作用,如何使用详细说明