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

本站中文解释

ALL_HIER_HIER_ATTRIBUTES视图是Oracle Spatial模块中提供的一个视图,用于查看空间数据的组织层次结构属性。该视图把组织层次结构属性描述成模式名称、层级名称、父层级属性、子次属性及其他描述空间组织层次结构的属性列表。这些空间属性可以更多地看到空间中已存在的层次结构。

ALL_HIER_HIER_ATTRIBUTES视图用来获取空间数据库中组织层次结构的相关信息,也可以用来构建空间查询,如搜索特定数据库中的特定层次结构属性。可以使用此视图来检索可用于空间查询的层次信息,也可以使用此视图获取具体的空间数据库中构成组织层次结构的特定对表和字段的权限。

官方英文解释

ALL_HIER_HIER_ATTRIBUTES describes the hierarchical attributes of the hierarchies accessible to the current user.

Related Views

  • DBA_HIER_HIER_ATTRIBUTES describes the hierarchical attributes of all hierarchies in the database.

  • USER_HIER_HIER_ATTRIBUTES describes 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

EXPRESSION

CLOB

The expression defining the hierarchical attribute value

ORDER_NUM

NUMBER

NOT NULL

Order of the hierarchical attribute in the list of hierarchical attributes

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_ATTRIBUTES”

  • “USER_HIER_HIER_ATTRIBUTES”


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