简体   繁体   English

如何找到已安装的Oracle版本?

[英]How can I find the edition of Oracle installed?

I have inherited an installation of Oracle 11G on CentOS. 我已经继承了CentOS上Oracle 11G的安装。 I know the version by running: 我通过运行知道版本:

SELECT * FROM v$version;

Result: Oracle Database 11g Release 11.2.0.2.0 - 64bit Production 结果: Oracle Database 11g Release 11.2.0.2.0 - 64bit Production

However, I am trying to find the edition of Oracle installed for licensing purposes. 但是,我试图找到为许可目的安装的Oracle版本。 Everyone keeps telling me it is a 'Lite' version... 每个人都告诉我这是“精简版” ...
The Oracle documentation tells me there are 5 editions: Oracle文档告诉我有5个版本:

From everything I have read when googling this, people say that if the results from select * from v$version does not say Enterprise , then it is Standard . 从我在谷歌搜索时所阅读的所有内容来看,人们说,如果select * from v$version的结果没有说Enterprise ,那么它就是Standard I do not believe that I can go by that as there are 5 editions and two of them are separate types of Standard Edition. 我不相信我会接受,因为有5个版本,其中两个是标准版的不同类型。 I need to know the exact edition installed. 我需要知道所安装的确切版本。

Does anyone have any idea who I can determine what exact edition is installed? 有谁知道我可以确定安装哪个确切版本?

Thanks! 谢谢!

Running this on 11g Enterprise 在11g Enterprise上运行

select * from v$version where banner like 'Oracle%'; 从v $ version选择*,其中标语为“ Oracle%”;

shows 表演

Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production

If it doesn't say Enterprise or XE then it is Standard 如果未显示Enterprise或XE,则为标准

Mine tells me it's Enterprise 我的告诉我是企业

SQL> select  * from v$version;

Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
PL/SQL Release 10.2.0.1.0 - Production
CORE    10.2.0.1.0  Production
TNS for IBM/AIX RISC System/6000: Version 10.2.0.1.0 - Productio
NLSRTL Version 10.2.0.1.0 - Production

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何监视Stackdriver中GCE实例中安装的Oracle数据库? - How can I Monitor an Oracle Database installed in a GCE instance in Stackdriver? 如何通过Oracle安装来安装Oracle Diagnostics包和Oracle Tuning包? - How can I know if Oracle Diagnostics pack and the Oracle Tuning pack are installed with an Oracle installation? 无法在SQL Developer中打开View-> DBA菜单(安装了Oracle 12C标准版) - Can't open View->DBA Menu in SQL Developer (Oracle 12C Standard Edition Installed) 关于oracle数据库和实例,我可以在XE版中创建数据库吗? - About oracle database and instance, can I create database in XE edition? 我可以在oracle express版上拥有多个数据库吗? - Can I have multiple databases on oracle express edition 如何在 Oracle 中找到对象的所有者? - How can I find the OWNER of an object in Oracle? 易于安装的cx_Oracle,但仍然找不到模块 - easy installed cx_Oracle but still can't find module 如果机器安装了oracle(oci8和/或pdo_oci),如何使用php检测? - How can I detect, using php, if the machine has oracle (oci8 and/or pdo_oci) installed? 甲骨文:如何在工作日找到假期? - Oracle : How can i find the holiday in a business day? 如何在Oracle中找到最高的父级或字段? - How can I find the highest parent level or field in Oracle?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM