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

本站中文解释

V$MAP_SUBELEMENT视图是Oracle哈希集合组件的虚拟视图,它可以帮助管理者了解哈希集合组件的状况,以及如何使用哈希集合组件来解决对象映射问题。该视图显示哈希集合中包含的子元素,以及与各个子元素相关的特定属性和信息。有关这些属性的详细信息,请参阅V$MAP_SUBELEMENT视图的说明文档。

使用Oracle视图,管理者可以通过SELECT语句来检索所需的数据,从而获得有关哈希集合组件的新见解。例如,管理者可以运行以下SELECT语句来显示子元素类型:

SELECT element_type FROM V$MAP_SUBELEMENT;

此外,管理者可以运行以下SELECT语句来显示子元素中具有特定“name”标签的所有子元素信息:

SELECT * FROM V$MAP_SUBELEMENT WHERE name = ‘element_name’;

官方英文解释

V$MAP_SUBELEMENT displays a list of all subelement mapping structures in the shared memory of the instance.

Column Datatype Description

CHILD_IDX

NUMBER

Index in V$MAP_ELEMENT corresponding to the child element

PARENT_IDX

NUMBER

Index in V$MAP_ELEMENT corresponding to the parent element

SUB_NUM

NUMBER

Subelement number

SUB_SIZE

NUMBER

Subelement size in HKB

ELEM_OFFSET

NUMBER

Offset in HKB on the child element

SUB_FLAGS

NUMBER

Subelement flags (currently unused)

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