14 data t1;
15
16 set sashelp.class;
17 do i=1 to 5e4;
18 output;
19 end;
20 run;
NOTE: There were 19 observations read from the data set SASHELP.CLASS.
NOTE: The data set WORK.T1 has 950000 observations and 6 variables.
NOTE: DATA statement used (Total process time):
real time 5.03 seconds
cpu time 0.26 seconds
21
22 proc sql;
23 select distinct sex
24 from t1
25 ;
26 quit;
NOTE: PROCEDURE SQL used (Total process time):
real time 0.31 seconds
cpu time 0.39 seconds