oracle 基本資訊
阿新 • • 發佈:2020-11-11
select * from v$version;
1 Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production 0 2 PL/SQL Release 12.2.0.1.0 - Production 0 3 CORE 12.2.0.1.0 Production 0 4 TNS for Linux: Version 12.2.0.1.0 - Production 0 5 NLSRTL Version 12.2.0.1.0 - Production 0
select * from v$version;
select banner from sys.v_$version;
BANNER
1 Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
2 PL/SQL Release 10.2.0.1.0 - Production
3 CORE 10.2.0.1.0 Production
4 TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
5 NLSRTL Version 10.2.0.1.0 - Production
例如:Oracle 9.0.1.1.2
9:版本號
0:新特性版本號
1(第一個):維護版本號
1(第二個):普通的補丁設定號碼
Oracle 的版本號很多,先看11g的一個版本號說明:
注意:
在oracle 9.2 版本之後, oracle 的maintenance release number 是在第二數字位更改。 而在之前,是在第三個數字位。
- 1
-
Major Database Release Number
第一個數字位,它代表的是一個新版本軟體,也標誌著一些新的功能。如11g,10g。
- 1
-
Database Maintenance Release Number
第二個數字位,代表一個maintenance release 級別,也可能包含一些新的特性。
- 1
-
Fusion Middleware Release Number
第三個數字位,反應Oracle 中介軟體(Oracle Fusion Middleware)的版本號。
- 1
-
Component-Specific Release Number
第四個數字位,主要是針對元件的釋出級別。不同的元件具有不同的號碼。 比如Oracle 的patch包。
- 1
-
Platform-Specific Release Number
第五個數字位,這個數字位標識一個平臺的版本。 通常表示patch 號。
- 1
-
如何檢視版本資訊:
(1) 檢視v$version
SQL> select * from v$version;
BANNER