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

本站中文解释

Oracle 视图 V$QUARANTINE 是一种系统级的视图,可以提供当前正在执行的数据库完整性检查的详细信息。它不仅可以用来显示正在运行的检查任务的名称和诊断结果,还可以显示包括与用户检查有关的步骤和信息在内的详细信息。

V$QUARANTINE 的用途是,它可以帮助数据库管理员和技术支持人员监测和管理整个数据库完整性检查系统。用户可以使用 V$QUARANTINE 来查看当前正在进行的各个数据库完整性检查的进度和状态,也可以使用它来排错或调整数据库完整性检查,也可以用它来检查完整性检查的结果。要使用 V$QUARANTINE 视图,用户需要使用 select 命令:

SELECT * FROM V$QUARANTINE;

官方英文解释

V$QUARANTINE provides information about quarantined objects.

Column Datatype Description

OBJECT

VARCHAR2(64)

Type of quarantined object (description of the memory)

ADDRESS

RAW(8)

Address of the object

BYTES

NUMBER

Amount of memory used by the object (this is the minimum amount; the actual amount may be unknown)

ERROR

VARCHAR2(128)

Oracle error causing quarantine

TIMESTAMP

TIMESTAMP(6) WITH TIME ZONE

Time the object was quarantined

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