Oracle 视图 ALL_HIER_JOIN_PATHS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_HIER_JOIN_PATHS视图用来发现在查询过程中被用作会话时注册的等级关系表之间的连接路径。它显示了从参照表的顶点到被索引表的顶点的最短变换路径,这些路径可能是多边形或树状结构。
使用ALL_HIER_JOIN_PATHS视图时,需要指定要检索的会话标识符。例如,使用以下查询来检索包含在另一视图中指定会话标识符中注册的等级关系表之间的最近结合路径:
SELECT * FROM ALL_HIER_JOIN_PATHS WHERE session_id=’session_id’;
官方英文解释
ALL_HIER_JOIN_PATHS
describes the join paths for the hierarchies accessible to the current user.
Related Views
-
DBA_HIER_JOIN_PATHS
describes the join paths for all hierarchies in the database. -
USER_HIER_JOIN_PATHS
describes the join paths for the hierarchies owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the hierarchy |
|
|
|
Name of the hierarchy |
|
|
|
Name of the join path |
|
|
|
Order of the classification in the list of join paths associated with the hierarchy |
|
|
The ID of the container where the data originates. Possible values include:
|
See Also:
-
“DBA_HIER_JOIN_PATHS”
-
“USER_HIER_JOIN_PATHS”