我想从Java中的SQL * Plus作为SYS连接到Oracle.但是我无法连接.
但是我能够以名为SCOTT的用户身份进行连接.我的代码段如下:
public static void test_script () {
String fileName = "@t.sql";
//t.sql contains "show user" command
String sqlPath = "D:\";
String sqlCmd = "sqlplus";
// String arg1 = "scott/tiger@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(Host=hostname)(Port=PORT ID))(CONNECT_DATA=(SID=SID)))";
String arg1 = "sys as sysdba/tiger@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(Host=hostname)(Port=PORT ID))(CONNECT_DATA=(SID=SID)))";
//String arg1="/ as sysdba";
String arg2= fileName;
//String arg2="conn /as sysdba";
try {
String line;
ProcessBuilder pb = new ProcessBuilder(sqlCmd, arg1,arg2);
Map env = pb.environment();
env.put("VAR1", arg1);
env.put("VAR2", arg2);
//env.put("VAR3", arg3);
pb.directory(new File(sqlPath));
pb.redirectErrorStream(true);
Process p = pb.start();
BufferedReader bri = new BufferedReader
(new InputStreamReader(p.getInputStream()));
BufferedReader bre = new BufferedReader
(new InputStreamReader(p.getErrorStream()));
while ((line = bri.readLine()) != null) {
System.out.println(line);
}
bri.close();
while ((line = bre.readLine()) != null) {
System.out.println(line);
}
bre.close();
System.out.println("
");
System.out.println("Done.");
}
catch (Exception err) {
err.printStackTrace();
}
}
}
当我尝试运行此代码时,我发现此错误:
SQL*Plus: Release 11.2.0.1.0 Production on Thu Apr 10 11:08:59 2014
Copyright (c) 1982, 2010, Oracle. All rights reserved.
SQL*Plus: Release 11.2.0.1.0 Production
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Use SQL*Plus to execute SQL, PL/SQL and SQL*Plus statements.
Usage 1: sqlplus -H | -V
-H Displays the SQL*Plus version and the
usage help.
-V Displays the SQL*Plus version.
Usage 2: sqlplus [ [] [{logon | /nolog}] [] ]
...
…以及其余的SQL * Plus“使用情况”信息.
我是提供错误的arg1参数还是通过Java在Oracle中以其他方式作为SYS连接.