Oracle 视图 ALL_EDITIONING_VIEWS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图ALL_EDITIONING_VIEWS是一种特殊类型的视图,它提供了对Oracle系统正在使用的编辑查看的细节描述。此视图的内容可以确定出该系统正在使用的所有正在编辑的视图。
使用方法:
1、查询所有编辑视图:要查询所有正在编辑的视图,可以执行以下SQL语句:
SELECT * FROM ALL_EDITIONING_VIEWS;
2、根据视图名查询:要查询指定的编辑视图,可以执行以下SQL语句:
SELECT * FROM ALL_EDITIONING_VIEWS WHERE VIEW_NAME=’my_view’;
3、根据编辑查询:要查询特定编辑下的视图,可以执行以下SQL语句:
SELECT * FROM ALL_EDITIONING_VIEWS WHERE EDITION_NAME=’my_edition’;
官方英文解释
ALL_EDITIONING_VIEWS
describes the editioning views accessible to the current user.
Related Views
-
DBA_EDITIONING_VIEWS
describes all editioning views in the database. -
USER_EDITIONING_VIEWS
describes the editioning views 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 |
See Also:
-
“DBA_EDITIONING_VIEWS”
-
“USER_EDITIONING_VIEWS”