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

The requirement is: Use PROC CONTENTS to view the descriptor portion of each of the three data sets.
Include only the first table from each of the PROC CONTENTS output (the one with the
number of observations and variables) and don’t include the other two tables (engine data
and variable attributes) in the Report

Does anyone know what I need to add on proc contents and let it only shows the first table?

1 ACCEPTED SOLUTION

Accepted Solutions
WarrenKuhfeld
Ammonite | Level 13

Use ods trace on to find the names of the tables.  Then use ods select to select the table(s) of interest.

 

ods trace on;
proc contents data=sashelp.iris;
   ods select attributes;
run;

View solution in original post

3 REPLIES 3
WarrenKuhfeld
Ammonite | Level 13

Use ods trace on to find the names of the tables.  Then use ods select to select the table(s) of interest.

 

ods trace on;
proc contents data=sashelp.iris;
   ods select attributes;
run;
ydu180
Calcite | Level 5

Thank you it works.

Tom
Super User Tom
Super User

Of course you could just skip the PROC CONTENTS altogether and query the metadata yourself.

proc print data=sashelp.vtable ;
  where libname='WORK';
run;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

Develop Code with SAS Studio

Get started using SAS Studio to write, run and debug your SAS programs.

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
  • 5075 views
  • 0 likes
  • 3 in conversation