Oracle 视图 ALL_EDITIONS 官方解释,作用,如何使用详细说明

本站中文解释

_VIEW

ALL_EDITIONS_VIEW是Oracle提供的数据字典视图,用于查询和显示有关全部版本的信息。它显示所有存在的版本,并提供相应的版本号、主要组件的版本号以及启用状态。

使用ALL_EDITIONS_VIEW可以查看当前实例下的所有版本信息,显示其version, edition_name, status, parent_edition_name, timezone, copyright:

SELECT version,edition_name, status, parent_edition_name, timezone, copyright
FROM all_editions_view;

官方英文解释

ALL_EDITIONS describes the editions accessible to the current user.

Related View

DBA_EDITIONS describes all editions in the database.

Column Datatype NULL Description

EDITION_NAME

VARCHAR2(128)

NOT NULL

Name of the edition

PARENT_EDITION_NAME

VARCHAR2(128)

Name of the parent edition for this edition

USABLE

VARCHAR2(3)

Indicates whether the edition is usable (YES) or unusable (NO)

See Also:

  • “DBA_EDITIONS”

  • Oracle Database
    Development Guide
    for more information about editions


数据运维技术 » Oracle 视图 ALL_EDITIONS 官方解释,作用,如何使用详细说明