Oracle 视图 ALL_HIER_COLUMNS_AE 官方解释,作用,如何使用详细说明
本站中文解释
ALL_HIER_COLUMNS_AE视图显示给定模式中的所有层次结构列,包括正斜线、顺序号及其多个层次结构属性。
用法:
SELECT column_name,spare1,spare2 …
FROM all_hier_columns_ae
WHERE owner = 模式名;
官方英文解释
ALL_HIER_COLUMNS_AE
describes the columns of the hierarchies (across all editions) accessible to the current user.
Related Views
DBA_HIER_COLUMNS_AE
describes the columns of all hierarchies (across all editions) in the database.USER_HIER_COLUMNS_AE
describes the columns of the hierarchies (across all editions) 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 column |
|
| The role the attribute plays in the hierarchy:
| |
|
| Datatype of the column | |
|
|
| Length of the column (in bytes) |
|
| Decimal precision for the | |
|
| Number of digits to the right of the decimal point in a number | |
|
| Indicates whether a column allows NULL values; the value is | |
|
| Name of the character set:
| |
|
| Declaration length of the character type column | |
|
| Indicates that the column uses
| |
|
|
| Order of the column, with attributes first in the order specified in the definition of the hierarchy followed by hierarchical attributes |
|
| The ID of the container where the data originates. Possible values include:
| |
|
| Name of the application edition where the hierarchy is defined |
Note:
This view is available starting with Oracle Database release 21c, version 21.5.
See Also:
“DBA_HIER_COLUMNS_AE”
“USER_HIER_COLUMNS_AE”
编辑:一起学习网
标签:层次,模式,结构,多个,斜线