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 theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the hierarchy |
|
|
|
Name of the hierarchy |
|
|
Name of the hierarchical attribute |
|
|
|
Classification associated with the hierarchical attribute |
|
|
|
Value associated with the classification or NULL if not specified |
|
|
|
|
|
|
|
|
Order of the classification in the list of classifications associated with the hierarchical attribute |
|
|
The ID of the container where the data originates. Possible values include:
|
See Also:
-
“DBA_HIER_HIER_ATTR_CLASS”
-
“USER_HIER_HIER_ATTR_CLASS”