Oracle 视图 ALL_CUBE_BUILD_PROCESSES 官方解释,作用,如何使用详细说明
本站中文解释
查询
Oracle视图ALL_CUBE_BUILD_PROCESSES可用于查询OLAP中与特定Cube关联的OLAP Cube Build Processes信息,或称分析程序。
根据官方文档Oracle® OLAP 用户在构建特定Cube时,都会生成一个有关联Cube的OLAP Cube Build Processes,该Process执行可调整的的Action来建立OLAP Cube。通过DESCRIBE语句,ALL_CUBE_BUILD_PROCESSES视图可用于查询OLAP中与特定Cube关联的OLAP Cube Build Processes信息。
该视图包含一些重要字段,如PROCESS_NAME,CUBE_NAME,ACTION,USER,STATUS等,用户可以使用这些字段查询OLAP Cube Build Processes信息,了解其执行状态,以及该Cube Build Processes的拥有者。
要使用ALL_CUBE_BUILD_PROCESSES查询,可以使用以下查询语句:
SELECT * FROM ALL_CUBE_BUILD_PROCESSES WHERE CUBE_NAME = ” ORDER BY ACTION DESC;
在上述语句中,WHERE 子句表明查询仅返回指定Cube的Cube Build Processes信息。Order by子句表明以Action字段的值降序的方式返回查询结果。
官方英文解释
ALL_CUBE_BUILD_PROCESSES
describes the OLAP build processes and maintenance scripts accessible to the current user.
Related Views
-
DBA_CUBE_BUILD_PROCESSES
describes all OLAP build processes and maintenance scripts in the database. -
USER_CUBE_BUILD_PROCESSES
describes the OLAP build processes and maintenance scripts owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the build process |
|
|
|
Name of the build process |
|
|
|
ID of the build process |
|
|
Syntax of the build process |
|
|
|
Description of the build process in the session language |
See Also:
-
“DBA_CUBE_BUILD_PROCESSES”
-
“USER_CUBE_BUILD_PROCESSES”