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

Hi,

I need to write a program to create a table with 2 columns. One column lists all the datasets names in a folder, one column lists the number of observations for the corresponding dataset.  Is there an easy way to do it? My code worked but it is looks not efficient and not neat enough.

Thank you.

 

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Or similar to @Reeza's approach if looking for SAS datasets.

Proc sql;
   create table want as
   select memname, nobs
   from dictionary.tables 
   where libname='LIBRARY'
   ;
run;

The library name should be in uppercase as that is the way SAS stores the information.

 

If the folder doesn't currently have a library associated then run a libname statement pointing to that library before the Proc SQL.

 

I use the dictionary table version as I have a moderate number of permanently libraries and the SQL version runs notably faster than the datastep version for most tasks.

This will send the various things you may request from the dictionary.tables to the Log:

Proc sql;
   describe table dictionary.tables 
   ;
run;

View solution in original post

5 REPLIES 5
MarkWik
Quartz | Level 8

Hi @SSH2  Can you please share your code that you deem inefficient? I think it's a good practice to eliminate duplicate redundancies to avoid somebody to come up with the same code you wrote. Thank you

Reeza
Super User

Are these SAS data sets?

 

If so use SASHELP.VTABLE.

 

data want;
set sashelp.vtable;
where libname='WORK';
keep libname memname nobs;
run;
SSH2
Obsidian | Level 7
Thank you very much Reeza!
ballardw
Super User

Or similar to @Reeza's approach if looking for SAS datasets.

Proc sql;
   create table want as
   select memname, nobs
   from dictionary.tables 
   where libname='LIBRARY'
   ;
run;

The library name should be in uppercase as that is the way SAS stores the information.

 

If the folder doesn't currently have a library associated then run a libname statement pointing to that library before the Proc SQL.

 

I use the dictionary table version as I have a moderate number of permanently libraries and the SQL version runs notably faster than the datastep version for most tasks.

This will send the various things you may request from the dictionary.tables to the Log:

Proc sql;
   describe table dictionary.tables 
   ;
run;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 5 replies
  • 10566 views
  • 1 like
  • 4 in conversation