标题: 为什么在10G里面,sqlplus的数据库用户密码无论是什么都可以登陆而不报错啊? [打印本页] 作者: lickey-ji 时间: 2006-12-10 22:02 标题: 为什么在10G里面,sqlplus的数据库用户密码无论是什么都可以登陆而不报错啊? C:\Documents and Settings\lee>sqlplus system/123455 as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on 星期日 12月 10 21:58:33 2006
Copyright (c) 1982, 2005, Oracle. All rights reserved.
连接到:
Personal Oracle Database 10g Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL> quit
从 Personal Oracle Database 10g Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options 断开
C:\Documents and Settings\lee>sqlplus system/abc123 as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on 星期日 12月 10 22:01:10 2006
Copyright (c) 1982, 2005, Oracle. All rights reserved.
连接到:
Personal Oracle Database 10g Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL>
我怎么知道我这样登陆是不是真正登陆了数据库呢?
我是初学者,谢谢指教。作者: Veteransa 时间: 2006-12-11 09:12
as sysdba 操作系统验证 作者: sshd 时间: 2006-12-11 09:13
try
sqlplus / as sysdba
You are using OS authentication, namely your are in the DBA group作者: feiaix 时间: 2006-12-11 13:55
把你从ORA_DBA组里删除,你看还行不行作者: lickey-ji 时间: 2006-12-11 16:41
是不是as sysdba就是通过系统认证呢? 如果不使用as sysdba就是数据库的认证了吗?