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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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