|
Anyone had any problems with proc sql queries under v8.0??
The following simple query takes 9 seconds under v6 and 10 MINUTES under
v8!!
proc sql _METHOD;
create table buildbin as
select distinct c_line, i_prob, bandtext, bandnum, count(distinct i_vhcl_v) as buildbin
from rear2
group by c_line, i_prob, bandtext;
quit;
Any theories??
Tom
|