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 JDeveloper Reviews甲骨文的JDeveloper評語
- Oracle Database Import Error 3113/3114 Oracle數據庫的進口錯誤三千一百一十四分之三千一百十三
- 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元版;