|
WARNING: information on your warning period.
1 proc sql;
2 title "All the tables's information from the Dictionary libref";
3 select * from dictionary.dictionaries;
4 title "Only the tables's name from the Dictionary libref";
5 select unique memname from dictionary.dictionaries;
6 quit;
NOTE: PROCEDURE SQL used (Total process time):
real time 0.82 seconds
cpu time 0.25 seconds
7 data one;
8 do i=1 to 100000000;
9 output;
10 end;
11 run;
NOTE: The data set WORK.ONE has 100000000 observations and 1 variables.
NOTE: DATA statement used (Total process time):
real time 13.74 seconds
cpu time 5.13 seconds
普普通通。
|