***********************************************声明**********************************************
原创作品,出自 “深蓝的blog” 博客,欢迎转载,转载时请务必注明出处,否则追究版权法律责任。
表述有错误之处,请您留言或邮件([email protected])指明,不胜感激。
本文转载必须保留此处:http://blog.csdn.net/huangyanlong/article/details/39216069
深蓝的blog:http://blog.csdn.net/huangyanlong
***************************************************************************************************
1. 10g客户端登陆11g库现象
[[email protected]~]$ 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
2. 11g客户端登陆10g库现象
小结:
注意使用sqlplus登陆数据库,不要将sqlplus和数据库的版本混淆了,两者是不同的概念。
3. 补充小知识:数据库的认证格式
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
***************************************************************************************************