Oracle 视图 ALL_EDITIONING_VIEWS_AE 官方解释,作用,如何使用详细说明
本站中文解释
:
ALL_EDITIONING_VIEWS_AE是Oracle数据库中的一种视图,它用于查询可以版本化的所有视图的基本信息。它的列包括视图的”OWNER”、”VIEW_NAME”、”EDITIONING_VIEW”和”ENABLED_FOR_EDITIONING”信息,其中OWNER列提供了视图所有者的名字,VIEW_NAME列提供了视图的名字,EDITIONING_VIEW列提供了视图是否可以版本化的信息,ENABLED_FOR_EDITIONING列提供了该视图是否已经在可版本化的视图中启用。这个视图可以用于查找可以使用版本化技术的视图,从而为开发者提供一种灵活的技术来管理和运行应用程序。我们可以使用SQL语句从ALL_EDITIONING_VIEWS_AE中取出版本化视图,查看示例代码如下:
SELECT *
FROM ALL_EDITIONING_VIEWS_AE
WHERE EDITIONING_VIEW=’Y’
AND ENABLED_FOR_EDITIONING=’Y’;
官方英文解释
ALL_EDITIONING_VIEWS_AE
describes the editioning views (across all editions) accessible to the current user.
Related Views
-
DBA_EDITIONING_VIEWS_AE
describes all editioning views (across all editions) in the database. -
USER_EDITIONING_VIEWS_AE
describes the editioning views (across all editions) owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of an editioning view |
|
|
|
Name of an editioning view |
|
|
|
Name of an editioning view’s base table |
|
|
Name of the application edition where the editioning view is defined |
See Also:
-
“DBA_EDITIONING_VIEWS_AE”
-
“USER_EDITIONING_VIEWS_AE”