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 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

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