Hello
I've used code1 below to check all the variables names in different libraries it worked flawlessly, however when I used it to read from the Sashelp library it keeps giving me an empty table. it seems that sas is not reading the library in this code specifically, however, if I tried to print the data in one of sashelp files (per code2 below) it reads it and show me the result. may you help me understanding my mistake in code1
code1
__________________________
proc sql;
create table mTable as
select * from dictionary.columns
where libname = 'sashelp'
and memname ='filename' ;
quit;
_________________________
code2
_________________________
proc print data=sashelp.Cars;
run;
_________________________