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

本站中文解释

Oracle视图DBA_HIER_LEVEL_ID_ATTRS_AE是一个字典视图。它提供了在特定层次上存在的属性唯一标识符的列表。当前层次的名称也可以通过此视图获得。该视图可用于检查表示层的字段的有效属性标识。

可以使用此视图来查询特定层次的属性,例如:

SELECT *
FROM dba_hier_level_id_attrs_ae
WHERE hier_level_name = ‘ My Level’;

此外,也可以使用此视图来查找特定属性的值,例如:

SELECT level_attribute_name
FROM dba_hier_level_id_attrs_ae
WHERE level_attribute_value = ‘My Value’;

另外,您可以使用此视图来检查新创建的层次是否有效,看看它是否包含预期的属性,例如:

SELECT count(*)
FROM dba_hier_level_id_attrs_ae
WHERE hier_level_name = ‘ My Level’;

官方英文解释

DBA_HIER_LEVEL_ID_ATTRS_AE describes the attributes that uniquely identify members of the levels of all hierarchies (across all editions) in the database. Its columns are the same as those in ALL_HIER_LEVEL_ID_ATTRS_AE.

Note:

This view is available starting with Oracle Database release 21c, version 21.5.

See Also:

“ALL_HIER_LEVEL_ID_ATTRS_AE”


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