Check Oracle Version检查的Oracle版本
There are several ways where you can query or retrieve the version number of installed Oracle products:有几种方法,您可以在查询或检索的版本号码安装Oracle产品:
1. 1 。 If you just want to check the version information of the Oracle database, simply connect and login to the Oracle database with SQL *Plus.如果您只想要检查版本信息的Oracle数据库,只需连接和登录到Oracle数据库与SQL *加。 Upon login, you will see:登录后,您会看到:
SQL*Plus: Release 9.2.0.6.0 - Production on Tue Oct 18 17:58:57 2005的SQL *另加:释放9.2.0.6.0 -生产在周二1 0月1 8日1 7时5 8分5 7秒2 005
Copyright (c) 1982, 2002, Oracle Corporation.版权所有( C ) 1982年, 2002年,甲骨文公司。 All rights reserved.保留所有权利。
Connected to:连接到:
Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production在Oracle9i Enterprise Edition的释放9.2.0.6.0 -6 4位生产
With the Partitioning, OLAP and Oracle Data Mining options与分割, OLAP和数据挖掘甲骨文选项
JServer Release 9.2.0.6.0 - Production jserver释放9.2.0.6.0 -生产
The first italic number is the version of the SQL*Plus client and the second italic number is the version of Oracle database which you are connected to .第一斜体数字是版本的SQL *再加上客户端和第二斜体数字是版本的Oracle数据库,其中您连接到。
2. 2 。 Retrieve the version information from v$version table by using SQL*Plus.检索版本信息从V元版本表使用SQL *加。 In this table you can find version information on Oracle, PL/SQL, etc.在此表中,您可以找到版本信息对甲骨文, PL / SQL的,等等。
To retrieve the version information for Oracle, you execute the following SQL statement:检索版本信息,为甲骨文,您执行以下SQL语句:
select * from v$version where banner like ‘Oracle%’;选择*从V元的版本一样,哪里的旗帜'甲骨文% ' ;
It should return something like this:它应该返回的东西是这样的:
Banner旗帜
————————————————————————————– -----------------------------
Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production在Oracle9i Enterprise Edition的释放9.2.0.1.0 -6 4位生产
3. 3 。 Version information can also be checked from Installed Products from the Oracle Universal Installer.版本信息也可以检查,从已安装的产品从甲骨文普遍安装。 It will tells you what products is installed on the machine and also its version information too.它会告诉你什么样的产品是计算机上安装和其版本信息。
In Unix, the installer is located at $ORACLE_HOME/bin/runInstaller.在UNIX ,安装程序位于oracle_home元/斌/ runinstaller 。
In Windows, access the installer by Start -> All Programs -> Oracle Installed Products -> Universal Installer.在Windows中,进入安装程序,由开始-> “所有程序- >”甲骨文已安装的产品-> “普遍安装。
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 重要说明 :这是一个机器翻译网页是“按原样”提供的担保。 Machine translation may be difficult to understand.机器翻译可能很难理解。 Please refer to请参阅 original English article原来的英语文章 whenever possible.只要有可能。
Share and contribute or get technical support and help at分享和贡献,或取得技术的支持和帮助,在 My Digital Life Forums 我的数字生活论坛 . 。
Related Articles相关文章
- Manual and Clean Uninstall Oracle for Windows手册和干净的卸载甲骨文为Windows
- Oracle Database Import Error 3113/3114 Oracle数据库的进口错误三千一百一十四分之三千一百十三
- Oracle JDeveloper Reviews甲骨文的JDeveloper评语
- Change Oracle Database User Password改变Oracle数据库的用户密码
- ORA-00942 Table or View Does Not Exist Oracle Error库存- 00942表或视图不存在Oracle错误
- ORA-02449 Oracle Drop Table Error库存- 02449甲骨文下拉表错误
- Oracle Business Activity Monitoring Reviews Oracle商务活动监控评语
- Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error甲骨文库存- 01658无法建立初步的程度,为部分在表错误
- Oracle EXP-00091 Error When Export Database甲骨文进出口- 00091时发生错误,进出口数据库
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile如何下拉表和恢复Oracle数据库时,不小心删除datafile

































March 3rd, 2008 22:29 2008年3月3日22时29分
It was a very helpful to find the oracle version information through sqlplus.这是一个很大的帮助,找到甲骨文的版本信息,通过sqlplus 。
Thanks,谢谢,
pankaj
August 13th, 2008 06:16 2008年8月13日6时16分
select * from versions;选择*从版本;
The above SQL will do.上述的SQL将尽。
August 13th, 2008 19:03 2008年8月13日19时03分
The above query will not work in oracle上述查询将不会在甲骨文公司工作
use the below query使用下面的查询
Select * from v$version;选择*从V元版;