Hi All,
what is the equivalent code in data step.
PROC SQL;
create table test as SELECT * FROM DICTIONARY.Columns WHERE UPCASE(LIBNAME)=”WORK”; QUIT;
if I write below code in data step, it is giving library dictionary has more than 8 character length ERROR.
data test; set dictionary.columns; where UPCASE(LIBNAME_="work"; run;
thanks,
SS
Dictionary tables are available from PROC SQL only.
The data step equivalent is
data test;
set sashelp.vcolumn;
where upcase(libname)='WORK';
run;
Dictionary tables are available from PROC SQL only.
The data step equivalent is
data test;
set sashelp.vcolumn;
where upcase(libname)='WORK';
run;
Hi @sathya66
You can access the Dictionary tables in a data step through their corresponding SASHELP views:
Examples:
Dictionary.tables <=> Sashelp.Vtable
Dictionary.columns <=> Sashelp.Vcolumn
Dictionary.titles <=> Sashelp.Vtitle
...
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.