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).
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.