Oracle 视图 ALL_ATTRIBUTE_DIM_LEVELS 官方解释,作用,如何使用详细说明
本站中文解释
是Oracle高级分析中OLAP Option模型架构中定义的层维度粒度类型属性视图。它存储了每种维度粒度类型的属性列表,例如:表中定义的维度、柱状图定义的层、细胞定义的度量等。这些属性可以动态更改,并且视图将其更新。它拥有所有这些维度属性的完整列表,可以查看和分析任何维度的粒度类型的属性,进而发现潜在的可视化趋势。
要使用ALL_ATTRIBUTE_DIM_LEVELS视图,可以使用以下查询语句:
SELECT * FROM ALL_ATTRIBUTE_DIM_LEVELS WHERE OWNER= ‘OWNER_NAME’ AND LEVEL_NAME= ‘LEVEL_NAME‘;
其中,OWNER_NAME是创建维度层粒度类型的用户名,LEVEL_NAME是查询的维度属性名称。
该视图在维度模型设计时很有用,从而找到维度之间的关系。它还可以用于找出与维度层类型有关的属性,以便进行分析和数据可视化。
官方英文解释
ALL_ATTRIBUTE_DIM_LEVELS
describes the levels of the attribute dimensions accessible to the current user.
Related Views
-
DBA_ATTRIBUTE_DIM_LEVELS
describes the levels of all attribute dimensions in the database. -
USER_ATTRIBUTE_DIM_LEVELS
describes the levels of the attribute dimensions owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the attribute dimension |
|
|
|
Name of the attribute dimension |
|
|
Name of the attribute dimension level |
|
|
|
Indicates whether to skip the level when the key is NULL; the value can be |
|
|
|
Type of attribute dimension level |
|
|
|
|
Expression representing the level member name |
|
|
Expression representing the level member caption, or NULL if not specified |
|
|
|
Expression representing the level member description, or NULL if not specified |
|
|
|
|
Order of the level in the list of attribute dimension levels |
|
|
The ID of the container where the data originates. Possible values include:
|
See Also:
-
“DBA_ATTRIBUTE_DIM_LEVELS”
-
“USER_ATTRIBUTE_DIM_LEVELS”