data work1;
do i=1 to 1000;
x=rand("normal",120,10);
output;
end;
run;
proc sql;
select count(*) from
dictionary.tables
where libname="WORK"
and memname="WORK1"
;
run;
proc sql;
drop table work1
;
quit;
proc sql;
select count(*) from
dictionary.tables
where libname='WORK'
and memname='WORK1'
;
run;