Oracle 视图 ALL_VIEWS_AE 官方解释,作用,如何使用详细说明
本站中文解释
ALL_VIEWS_AE视图是Oracle的一种定义数据库视图的方法,可以将一些重复使用的查询语句放在一个存储在数据库中的视图上,这样,在后续使用时可以直接引用该视图,而不用再次输入完整的查询语句。
具体使用方法:
1、在ALL_VIEWS_AE视图表中创建视图。
2、把所需要的SQL语句以SELECT开头作为视图的定义语句,放入视图表中。
3、要查询视图,只需使用SELECT *FROM ViewName即可得到正确的结果。
官方英文解释
ALL_VIEWS_AE
describes the views (across all editions) accessible to the current user.
Related Views
DBA_VIEWS_AE
describes all views (across all editions) in the database.USER_VIEWS_AE
describes the views (across all editions) owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Owner of the view |
|
|
| Name of the view |
|
| Length of the view text | |
|
| View text. The | |
|
| View text. This column may truncate the view text. The | |
|
| Length of the type clause of the typed view | |
|
| Type clause of the typed view | |
|
| Length of the | |
|
|
| |
|
| Owner of the type of the view if the view is an typed view | |
|
| Type of the view if the view is a typed view | |
|
| Name of the superview, if the view is a subview | |
|
| Indicates whether the view is an editioning view ( | |
|
| Indicates whether the view is read-only ( | |
|
| Name of the application edition where the object is defined | |
|
| Indicates whether the view contains container-specific data. Possible values:
| |
|
| Possible values:
For more information about the syntax and semantics of the | |
|
| The ID of the container where the data originates. Possible values include:
| |
|
| Default collation for the view | |
|
| Indicates whether the view is enabled for | |
|
| Indicates whether the view is enabled for use with the | |
|
| Indicates whether the view is enabled for fetching an extended data link from the root ( | |
|
| For internal use only | |
|
| Indicates whether the view has one or more sensitive columns ( | |
|
| Indicates whether the view admits null | |
|
| For internal use only |
See Also:
“DBA_VIEWS_AE”
“USER_VIEWS_AE”
标签:视图,语句,定义,放在,只需