Hi!
Make new proc:
create or replace procedure killme1 (p_lsValue in long, p_sValue in varchar2, p_nLongLength out number, p_nVarcharLength out number)
is
lsValue long := null;
sValue varchar2(4000);
begin
if p_lsValue is not null then
lsValue := p_lsValue;
p_nLongLength := length...