Ⅰ 怎麼在CMD中輸入命令,查看資料庫oracle是否連接好
1、windows+R,輸入CMD點擊確定。
Ⅱ 如何查看Oracle客戶端版本
查看Oracle客戶端版本:在cmd中輸入sqplus -v
Ⅲ 怎麼看自己的電腦上裝的oracle 10g版本還是oracle11g版本
windows平台上呢 直接到你已安裝程序裡面看 名字就可以分辨出來了~
也可以打開運行窗口 快捷鍵 ctrl+r 然後CMD 然後用sqlplus連接資料庫
C:\Users\Le_Jason>sqlplus system/oracle@orcl
SQL*Plus: Release 11.2.0.1.0 Proction on 星期一 4月 23 14:13:24 2012
Copyright (c) 1982, 2010, Oracle. All rights reserved.
連接到:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Proction
With the Partitioning, OLAP and Data Mining options
上面我是通過windows平台的11.2.0.1.0版本的客戶端連接的linux平台的10g的資料庫
或者你可以直接tnsping你的服務名也可以顯示資料庫的版本
tnsping orcl (orcl就是你要查看的資料庫的服務名)
linux平台:
su - oracle
[oracle@jason ~]$ sqlplus "/as sysdba"
SQL*Plus: Release 10.2.0.1.0 - Proction on Mon Apr 23 14:10:27 2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Proction
With the Partitioning, OLAP and Data Mining options
上面很明顯顯示資料庫是 10G的2.0.1.0小版本