|
在9204的环境下好象只能采取先用一个正常的帐户登陆再采取conn的方法切换登陆;或者输入sqlplus后直接回车,再输入用户名和密码.
C ocuments and Settingsguyeh>sqlplus sys/sys123@194 as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 3月 31 14:29:11 2008
Copyright (c) 1982, 2005, Oracle. All rights reserved.
连接到:
Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production
SQL> create user test identified by "1@3";
用户已创建。
SQL> grant dba to test;
授权成功。
SQL> conn test/"1@3"@194
已连接。
或者:
C ocuments and Settingsguyeh>sqlplus
SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 3月 31 14:31:25 2008
Copyright (c) 1982, 2005, Oracle. All rights reserved.
请输入用户名: test/"1@3"@194
连接到:
Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production
SQL> |
|