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

本站中文解释

_EXT

Oracle视图all_hier_hier_attr_class_ext是Oracle结构化查询语言(SQL)中可用的一个视图,它可以在层次数据库中用于检索这种结构的属性信息。

该视图提供了关于架构定义的属性的基础视图,如类型、全局层次、事件和属性的定义。它还提供了关于属性的层次,位置,路径信息以及类型之间的相关性的信息。

使用这个视图,可以检索出该视图的列属性的值,然后使用该视图进行复杂的查询。还可以将all_hier_hier_attr_class_ext视图与其他视图结合起来使用,以了解层次结构属性、属性定义、所有活动和事件之间的关系。

另外,还可以使用all_hier_hier_attr_class_ext视图用于查看某个层次的属性的全部信息,或者在层次结构之间比较属性的值。

例如,可以使用以下查询:

SELECT *
FROM all_hier_hier_attr_class_ext
WHERE lower_node_id=’abc’ AND upper_node_id=’def’

上述查询可检索出node_id为’abc’和’def’之间任何属性的值,以了解它们之间的关系,包括属性的类型,位置,路径以及层次等其他信息。

官方英文解释

ALL_HIER_HIER_ATTR_CLASS describes the classifications of the hierarchical attributes of the hierarchies accessible to the current user.

Related Views

  • DBA_HIER_HIER_ATTR_CLASS describes the classifications of the hierarchical attributes of all hierarchies in the database.

  • USER_HIER_HIER_ATTR_CLASS describes the classifications of the hierarchical attributes of the hierarchies owned by the current user. This view does not display the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of the hierarchy

HIER_NAME

VARCHAR2(128)

NOT NULL

Name of the hierarchy

HIER_ATTR_NAME

VARCHAR2(128)

Name of the hierarchical attribute

CLASSIFICATION

VARCHAR2(128)

Classification associated with the hierarchical attribute

VALUE

CLOB

Value associated with the classification or NULL if not specified

LANGUAGE

VARCHAR2(64)

NLS_LANGUAGE value associated with the classification or NULL if not specified

ORDER_NUM

NUMBER

NOT NULL

Order of the classification in the list of classifications associated with the hierarchical attribute

ORIGIN_CON_ID

NUMBER

The ID of the container where the data originates. Possible values include:

  • 0: This value is used for rows in non-CDBs. This value is not used for CDBs.

  • n: This value is used for rows containing data that originate in the container with container ID n (n = 1 if the row originates in root).

See Also:

  • “DBA_HIER_HIER_ATTR_CLASS”

  • “USER_HIER_HIER_ATTR_CLASS”


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