Два шага (как вам уже сказали): пакетный сценарий + сценарий SQL.
пакетный сценарий
sqlplus scott/tiger@orcl @run_proc.sql
сценарий SQL (run_proc.sql)
set serveroutput on
begin
p_test;
end;
/
exit
Хранимая процедура
create or replace procedure p_test is
begin
dbms_output.put_line('Hello!');
end;
/
Запуск runme.bat
в командной строке ОС приводит к следующему:
M:\>runme
M:\>sqlplus scott/tiger@orcl @run_proc.sql
SQL*Plus: Release 11.2.0.1.0 Production on Sri Lip 13 11:28:00 2018
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Data Mining and Real Application Testing options
hello
PL/SQL procedure successfully completed.
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Data Mining and Real Application Testing options
M:\>
Видимо, это работает .Теперь вы можете поиграть с разными настройками (эхо, обратная связь, что угодно), но - в общем, все.