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

本站中文解释

Oracle 视图 USER_DIM_LEVELS 来自于维度模型,是系统中表示一般性用户定义的层次或者层级的视图,用户同样可以通过使用该视图来查询特定的层次信息,也可以通过该视图创建用户自定义的层次信息。

有两种方法可以使用 USER_DIM_LEVELS 视图:

1、查询当前用户定义的层次信息:

可以使用以下 sql 语句查询:

SELECT * FROM user_dim_levels;

2、创建层次:

可以使用以下 sql 语句创建层次:

INSERT INTO user_dim_levels (level_name, display_label, compatibility) VALUES (‘LEVEL1’, ‘Level 1’, ‘BACKWARD’);

level_name 为层次名称,display_label 为层次显示标签,compatibility 为兼容性(BACKWARD 、FULL 、FORWARD)。

官方英文解释

USER_DIM_LEVELS describes the levels of dimensions owned by the current user. All columns of a dimension level must come from the same relation. This view’s columns are the same as those in ALL_DIM_LEVELS.

See Also:

“ALL_DIM_LEVELS”


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