Hi
I have a very straightforward question. Within a program, how do I code to create a table that shows me the attributes (only variable name, format and format length) of a given table that was already created.
Thank you in advance.
Proc contents will generate what you want though the default data set from the OUT= option may have more information than you want.
Proc contents data=mydatasetname out=description;
run;
The procedure by default will send output to the Results window. There are options like NOPRINT to suppress all results or Nodetails to reduce what appears.
If you want to display just some of the data that is what Proc Print does, select the variables you want with a VAR statement.
Proc contents will generate what you want though the default data set from the OUT= option may have more information than you want.
Proc contents data=mydatasetname out=description;
run;
The procedure by default will send output to the Results window. There are options like NOPRINT to suppress all results or Nodetails to reduce what appears.
If you want to display just some of the data that is what Proc Print does, select the variables you want with a VAR statement.
You can query that information from the SASHELP.VCOLUMN table quite easily.
Or, in SQL, you use DICTIONARY.COLUMNS (which is the base for SASHELP.VCOLUMN).
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.