I have a report that creates a work table as follows
proc sql;
create table address as
select addrdate,addruserid
from d.address
where addrdate >= '05-feb-2007'd
order by addruserid;
quit;
1. Is there a way to have SAS run this report automatically at 4:00PM each day everyday and put it in the work library? Is this done through a macro
proc sql;
create table address as
select addrdate,addruserid
from d.address
where addrdate >= '05-feb-2007'd
order by addruserid;
quit;
1. Is there a way to have SAS run this report automatically at 4:00PM each day everyday and put it in the work library? Is this done through a macro