BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mvniekerk
Calcite | Level 5

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.

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

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.

View solution in original post

3 REPLIES 3
ballardw
Super User

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.

Reeza
Super User

You can query that information from the SASHELP.VCOLUMN table quite easily.

 

 

SAS Innovate 2025: Register Now

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!

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 810 views
  • 0 likes
  • 4 in conversation