libname test 'C:\test2';
proc sql;
select 'test.'||memname into : dlist separated BY ' ' from dictionary.tables
where libname='TEST' and memname contains 'selection_rule';
quit;
data one;
set &dlist;
run;
proc sql;
select 'test.'||memname into : dlist separated BY ' ' from dictionary.tables
where libname='TEST' and memname contains 'selection_rule';
quit;
data one;
set &dlist;
run;
No comments:
Post a Comment