|
<EXAMPLE SPAWNED PROGRAM>
options nosource nonotes;
%let timestamp=%sysfunc(datetime());
proc printto log = "C:\batch\batch_test_×tamp..log";run;
options source notes;
libname temp 'E:\temp\';
proc sql noprint;
select count(*)
from temp.batch_test
where leng=8;
quit;
</SPAWN>
|