導航:首頁 > 編程大全 > oracle資料庫版本查詢

oracle資料庫版本查詢

發布時間:2021-02-28 06:11:07

『壹』 oracle 查版本號,oracle怎樣查版本

方法一:v$version

[sql]view plain

  1. SQL>select*fromv$version;

  2. BANNER

  3. --------------------------------------------------------------------------------

  4. .1.0.7.0-64bitProction

  5. PL/SQLRelease11.1.0.7.0-Proction

  6. CORE11.1.0.7.0Proction

  7. TNSforLinux:Version11.1.0.7.0-Proction

  8. NLSRTLVersion11.1.0.7.0-Proction

Oracle Database,又名Oracle RDBMS,或簡稱Oracle。是甲骨文公司的一款關系資料庫管理系統。它是在資料庫領域一直處於領先地位的產品。可以說Oracle資料庫系統是目前世界上流行的關系資料庫管理系統,系統可移植性好、使用方便、功能強,適用於各類大、中、小、微機環境。它是一種高效率、可靠性好的 適應高吞吐量的資料庫解決方案。

特點

1、完整的數據管理功能。

1)數據的大量性

2)數據的保存的持久性

3)數據的共享性

4)數據的可靠性

2、完備關系的產品。

1)信息准則---關系型DBMS的所有信息都應在邏輯上用一種方法,即表中的值顯式地表示;

2)保證訪問的准則

3)視圖更新准則---只要形成視圖的表中的數據變化了,相應的視圖中的數據同時變化

4)數據物理性和邏輯性獨立准則

3、分布式處理功能。

ORACLE資料庫自第5版起就提供了分布式處理能力,到第7版就有比較完善的分布式資料庫功能了,一個ORACLE分布式資料庫由oraclerdbms、sql*Net、SQL*CONNECT和其他非ORACLE的關系型產品構成。[2]

4、用ORACLE能輕松的實現數據倉庫的操作。

這是一個技術發展的趨勢,不在這里討論。

優點

1、可用性強

2、可擴展性強

3、數據安全性強

4、穩定性強

『貳』 如何查看oracle資料庫的版本

你連上之後會有提示
[oracle@cf-dev ~]$ sqlplus / as sysdba
……版
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Proction
With the Partitioning, OLAP, Data Mining and Real Application Testing options
查視圖權
SQL> select VERSION from v$instance;

VERSION
-----------------
11.2.0.1.0

『叄』 oracle怎麼查看資料庫版本

方法一:v$version

SQL> select * from v$version;

BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Proction
PL/SQL Release 11.1.0.7.0 - Proction
CORE 11.1.0.7.0 Proction
TNS for Linux: Version 11.1.0.7.0 - Proction
NLSRTL Version 11.1.0.7.0 - Proction

方法二:proct_component_version

SQL> select * from proct_component_version;

PRODUCT VERSION STATUS
---------------------------------------------------------------------------------------------
NLSRTL 11.1.0.7.0 Proction
Oracle Database 11g Enterprise Edition 11.1.0.7.0 64bit Proction
PL/SQL 11.1.0.7.0 Proction
TNS for Linux: 11.1.0.7.0 Proction

SQL>

方法三:dbms_output.put_line( dbms_db_version.version )

SQL> SET SERVEROUTPUT ON
SQL> EXEC dbms_output.put_line( dbms_db_version.version );
11

PL/SQL procere successfully completed.

SQL>

Oracle Database History

Since version 5, Oracle\'s RDBMS release numbering has used the following codes:
Oracle v5
Oracle v6
Oracle7: 7.0.16–.3.4
Oracle8 Database: 8.0.3–8.0.6
Oracle8i Database Release 1: 8.1.5.0–8.1.5.1
Oracle8i Database Release 2: 8.1.6.0–8.1.6.3
Oracle8i Database Release 3: 8.1.7.0–8.1.7.4
Oracle9i Database Release 1: 9.0.1.0–9.0.1.5 (patchset as of December 2003)
Oracle9i Database Release 2: 9.2.0.1–9.2.0.8 (patchset as of April 2007)
Oracle Database 10g Release 1: 10.1.0.2–10.1.0.5 (patchset as of February 2006)
Oracle Database 10g Release 2: 10.2.0.1–10.2.0.5 (patchset as of April 2010)
Oracle Database 11g Release 1: 11.1.0.6–11.1.0.7 (patchset as of September 2008)
Oracle Database 11g Release 2: 11.2.0.1–11.2.0.3 (patchset as of September 2011)
The version-numbering syntax within each release follows the pattern: major.maintenance.application-server.component-specific.platform-specific.
For example, "10.2.0.1 for 64-bit Solaris" means: 10th major version of Oracle, maintenance level 2, Oracle Application Server (OracleAS) 0, level 1 for Solaris 64-bit.

另外,Fenng之前做了一個關於資料庫版本使用情況的調查,從圖中可以看出現階段中國地區,使用10gR2版本的仍是絕大多數。

『肆』 如何查詢ORACLE資料庫伺服器版本

你的意思就是要查看在伺服器上資料庫的版本是嗎?如果是這樣的話,執行以下語句就可以了。
select * from v$version;
希望能幫到你

『伍』 怎麼查看oracle資料庫版本

select * from v$version;

『陸』 如何查看資料庫版本

方法一:$version

SQL> select * from v$version;

BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Proction
PL/SQL Release 11.1.0.7.0 - Proction
CORE 11.1.0.7.0 Proction
TNS for Linux: Version 11.1.0.7.0 - Proction
NLSRTL Version 11.1.0.7.0 - Proction

方法二:proct_component_version

SQL> select * from proct_component_version;

PRODUCT VERSION STATUS
---------------------------------------------------------------------------------------------
NLSRTL 11.1.0.7.0 Proction
Oracle Database 11g Enterprise Edition 11.1.0.7.0 64bit Proction
PL/SQL 11.1.0.7.0 Proction
TNS for Linux: 11.1.0.7.0 Proction

SQL>

方法三:dbms_output.put_line( dbms_db_version.version )

SQL> SET SERVEROUTPUT ON
SQL> EXEC dbms_output.put_line( dbms_db_version.version );
11

PL/SQL procere successfully completed.

SQL>

Oracle Database History

Since version 5, Oracle\'s RDBMS release numbering has used the following codes:
Oracle v5
Oracle v6
Oracle7: 7.0.16–7.3.4
Oracle8 Database: 8.0.3–8.0.6
Oracle8i Database Release 1: 8.1.5.0–8.1.5.1
Oracle8i Database Release 2: 8.1.6.0–8.1.6.3
Oracle8i Database Release 3: 8.1.7.0–8.1.7.4
Oracle9i Database Release 1: 9.0.1.0–9.0.1.5 (patchset as of December 2003)
Oracle9i Database Release 2: 9.2.0.1–9.2.0.8 (patchset as of April 2007)
Oracle Database 10g Release 1: 10.1.0.2–10.1.0.5 (patchset as of February 2006)
Oracle Database 10g Release 2: 10.2.0.1–10.2.0.5 (patchset as of April 2010)
Oracle Database 11g Release 1: 11.1.0.6–11.1.0.7 (patchset as of September 2008)
Oracle Database 11g Release 2: 11.2.0.1–11.2.0.3 (patchset as of September 2011)
The version-numbering syntax within each release follows the pattern: major.maintenance.application-server.component-specific.platform-specific.
For example, "10.2.0.1 for 64-bit Solaris" means: 10th major version of Oracle, maintenance level 2, Oracle Application Server (OracleAS) 0, level 1 for Solaris 64-bit.

另外,Fenng之前做了一個關於資料庫版本使用情況的調查,從圖中可以看出現階段中國地區,使用10gR2版本的仍是絕大多數。

『柒』 如何查看oracle資料庫版本

1、在桌面復上找到 計算機,右鍵管制理,點擊服務和應用程序,雙擊服務,找到oracle的四個服務,這里我們只需要啟動兩個即可。如圖

『捌』 怎樣查看oracle版本

如果復是 oracle安裝的主機:
切換制到 oracle用戶,
sqlplus /nolog
conn /as sysdba 連接到資料庫
然後執行 select * from v$version 。
Du知道君 | 引用「neuyubo」的精彩回答 | 18 分鍾前

『玖』 oracle 查看資料庫版本sql

1、首先要用有dba許可權的用戶登錄。

2、執行以下sql:

select*fromv$version;

3、查詢結果:

閱讀全文

與oracle資料庫版本查詢相關的資料

熱點內容
顧客大數據變現 瀏覽:642
中華萬年歷源代碼 瀏覽:489
富聊最新版本更新 瀏覽:288
新零售方面的數據去哪裡找 瀏覽:740
聯想平板數據網路開關在哪裡 瀏覽:434
燕秀工具箱cad2017 瀏覽:598
蛇女懷孕三個月生產是什麼電影 瀏覽:165
國產古裝盜墓電影大全 瀏覽:776
沈陽大悅城影院 瀏覽:455
好看的電影中文字幕 瀏覽:9
母女齊收的小說 瀏覽:327
編程貓怎麼讓角色點擊子彈 瀏覽:894
火狐載入不了javascript 瀏覽:867
mathtype69安裝教程 瀏覽:964
企石文件櫃多少錢 瀏覽:444
關於超狗的電影 瀏覽:603
哪裡可以看被封的40部網路小說 瀏覽:960
韓國電影和別人老婆偷情 瀏覽:133
keil怎麼下載程序 瀏覽:872
神馬電影九 瀏覽:200

友情鏈接