You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
procedure test_all
is
TYPE runners_nt_type is table of varchar2(128);
l_runners_nt runners_nt_type;
begin
select object_name --------------------
bulk collect into l_runners_nt
from user_procedures t1
where procedure_name = 'WTPLSQL_RUN'
and object_type = 'PACKAGE'
group by object_name --------------------
order by object_name; --------------------
for i in 1 .. l_runners_nt.COUNT
loop
test_run(l_runners_nt(i));
end loop;
end test_all;
Resolution
Issue Log
(Add newest entries on top and add Date/Time and Author for each entry.)