Oracle 视图 DBA_EDITIONS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_EDITIONS是Oracle数据库中重要的系统视图,它用于查看所有可以使用的版本和版本属性,更具体地说,通过此视图,可以查看到每个版本的名称、ID、建立时间以及有效状态等信息。
使用此视图可以执行版本查询,以查找出可以使用的版本。例如,可以使用SELECT语句从视图DBA_EDITIONS中查询指定名称的版本:
SELECT * FROM DBA_EDITIONS WHERE EDITION_NAME=’My_Edition_Name’;
官方英文解释
DBA_EDITIONS
describes all editions in the database. Its columns are the same as those in ALL_EDITIONS
.
See Also:
-
“ALL_EDITIONS”
-
Oracle Database
Development Guide for more information about editions