all-node-oracle
Version:
A NodeJS and Oracle DB integration, NodeJS act as http gateway for plsql server pages
22 lines (21 loc) • 541 B
Plain Text
create or replace procedure kill
(
cfg varchar2 := null,
slot pls_integer := null
) is
v_clinfo varchar2(48);
v_return integer;
begin
if cfg is null then
v_clinfo := 'Noradle-%#%';
elsif slot is null then
v_clinfo := 'Noradle-' || cfg || '#%';
else
v_clinfo := 'Noradle-' || cfg || '#' || slot;
end if;
for i in (select a.client_info from v$session a where a.client_info like v_clinfo) loop
dbms_pipe.pack_message('SIGKILL');
v_return := dbms_pipe.send_message(i.client_info);
end loop;
end kill;
/