|
C:\Documents and Settings\yuechaotian>sqlplus
SQL*Plus: Release 9.2.0.1.0 - Production on 星期五 5月 16 11:34:03 2008
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
请输入用户名: "hbjb_kf"/mypassword@s46
ERROR:
ORA-01017: invalid username/password; logon denied
请输入用户名: sys/superpassword@s46 as sysdba
连接到:
Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.8.0 - Production
SQL> alter user "hbjb_kf" identified by mypassword;
用户已更改。
SQL> conn "hbjb_kf"/mypassword@s46
已连接。
SQL> show user
USER 为"hbjb_kf"
SQL> select count(*) from user_objects;
COUNT(*)
----------
0
SQL> conn hbjb_kf/mypassword@s46
已连接。
SQL> show user
USER 为"HBJB_KF"
SQL> select count(*) from user_objects;
COUNT(*)
----------
1650 |