I:\oracle\product\10.2.0\client_1\BIN>set oracle_sid=ora11g
I:\oracle\product\10.2.0\client_1\BIN>sqlplus / as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on 星期日 8月 12 07:30:36
2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
ERROR:
ORA-12546: TNS: 权限被拒绝
3. cmd提示符的当前路径是oracle 11.1.0.1的一个oracle_home,set sid后,能进入11g的oracle实例,
F:\app\Administrator\product\11.1.0>set oracle_sid=ora11g
F:\app\Administrator\product\11.1.0>cd db_1\BIN
F:\app\Administrator\product\11.1.0\db_1\BIN>sqlplus / as sysdba
SQL*Plus: Release 11.1.0.6.0 - Production on 星期日 8月 12 07:28:16 2012
Copyright (c) 1982, 2007, Oracle. All rights reserved.
连接到:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> exit
从 Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options 断
开
F:\app\Administrator\product\11.1.0\db_1\BIN>cd ..
F:\app\Administrator\product\11.1.0\db_1>sqlplus / as sysdba
用法: SQLPLUS [ [<option>] [<logon>] [<start>] ]
其中 <option> ::= -H | -V | [ [-L] [-M <o>] [-R <n>] [-S] ]
<logon> ::= <username>[/<password>][@<connect_string>] | / | /NOLOG
<start> ::= @<URI>|<filename>[.<ext>] [<parameter> ...]
"-H" 显示 SQL*Plus 的版本标帜和使用语法
"-V" 显示 SQL*Plus 的版本标帜
"-L" 只尝试登录一次
"-M <o>" 使用 HTML 标志选项 <o>
"-R <n>" uses restricted mode <n>
"-S" uses silent mode
结合2和3的实验现象,得出如下的结论:windows下的sqlplus / as sysdba 命令一发出,系统首先找的是当前目录下的sqlplus,若是没有,再从windows的环境变量中的系统变量path中去寻找。