libname lib sqlsvr dsn=EIS schema=SYS user="username" password="password" READBUFF=1000;
proc sql /*outobs=1*/ noprint;
create table a as select modify_date, NAME into :cif separated by ' '
from Libname.TABLES where NAME LIKE "table_name%" order by modify_date desc;
proc sort; by modify_date;
quit;
data _null_;
set a end=last;
if last;
call symput('outy',compress(name));
run;
Macro variable "OUTY" will contain the name of the latest dataset.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!
Data Literacy is for all, even absolute beginners. Jump on board with this free e-learning and boost your career prospects.