***********************************************聲明**********************************************
原創作品,出自 “深藍的blog” 博客,歡迎轉載,轉載時請務必注明出處,否則追究版權法律責任。
表述有錯誤之處,請您留言或郵件([email protected])指明,不勝感激。
本文轉載必須保留此處:http://blog.csdn.net/huangyanlong/article/details/39216069
深藍的blog:http://blog.csdn.net/huangyanlong
***************************************************************************************************
[oracle@org54~]$ sqlplus scott/[email protected]/hyl
--sqlplus用戶名/密碼@主機名/數據庫服務名
SQL*Plus:Release 10.2.0.1.0 - Production on Sun Sep 7 08:57:23 2014
Copyright(c) 1982, 2005, Oracle. All rightsreserved.
Connectedto:
OracleDatabase 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
Withthe Partitioning, OLAP, Data Mining and Real Application Testing options
SQL>select comp_name,version,status from dba_registry;
--查看數據庫的版本是11.2.0.4.0,而對應於登錄時的客戶端是10.2.0.1.0
SQL>quit
--當退出數據庫時,也會顯示數據庫的版本
Disconnectedfrom Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bitProduction
Withthe Partitioning, OLAP, Data Mining and Real Application Testing options
補充一點:如何讓其他用戶訪問數據字典
SQL>show parameter o7
NAME TYPE VALUE
----------------------------------------------- ------------------------------
O7_DICTIONARY_ACCESSIBILITY boolean FALSE
SQL>alter system set O7_DICTIONARY_ACCESSIBILITY=true scope=spfile;
SQL>show parameter o7
NAME TYPE VALUE
----------------------------------------------- ------------------------------
O7_DICTIONARY_ACCESSIBILITY boolean TRUE
小結:
注意使用sqlplus登陸數據庫,不要將sqlplus和數據庫的版本混淆了,兩者是不同的概念。1、操作系統認證:默認下,本機服務器登陸Oracle數據庫,使用操作系統認證,不用輸入數據庫用戶名及密碼,
登陸格式通常為:SQL>sqlplus / as sysdba
2、用戶密碼認證:當用戶遠程連接數據庫時,需要使用數據庫用戶名、密碼認證後才可以登陸,
諸如:SQL>sqlplus scott/tiger as sysdba
***********************************************聲明**********************************************
原創作品,出自 “深藍的blog” 博客,歡迎轉載,轉載時請務必注明出處,否則追究版權法律責任。
表述有錯誤之處,請您留言或郵件([email protected])指明,不勝感激。
本文轉載必須保留此處:http://blog.csdn.net/huangyanlong/article/details/39216069
深藍的blog:http://blog.csdn.net/huangyanlong
***************************************************************************************************