sqlplus不使用服务名,直接使用IP地址连接Oracle

命令如下:

Oracle服务器地址: 192.168.2.181 端口:1521

用户名:jans2002

密码:password123

服务名SID: dbsvr

不用netmgr创建服务名,直接在命令行写IP地址端口和服务名的命令行如下:

sqlplus  jans2002/[email protected]:1521/dbsvr @filelist.sql

 

filelist.sql 文件内容如下:

set serveroutput on

begin

dbms_output.put_line('file filelist.sql executed.');

end;

/

@a.sql

@b.sql

exit

a.sql内容如下:

begin

dbms_output.put_line('file a.sql executed');

end;

/

b.sql内容如下:

begin

dbms_output.put_line('file b.sql executed.');

end;

/

执行结果如下:

Snap1

你可能感兴趣的:(sqlplus)