BookmarkSubscribeRSS Feed
nayab_shaik
Calcite | Level 5

Hi Team,

 

i have 100 data sets how to find out only data set name

 

Advance Thanks

 

5 REPLIES 5
PeterClemmensen
Tourmaline | Level 20

What do you want to do with those names? Put them in a macro variable?

 

If so

 

proc sql;
    select memname into :DataSets separated by ' '
    from dictionary.tables
    where libname='SASHELP';
quit;

%put &DataSets;
nayab_shaik
Calcite | Level 5

ds1 ds2 ds3 ds4 ..................................................................................ds100 like that

PeterClemmensen
Tourmaline | Level 20

Have you tried my posted code?

Jagadishkatam
Amethyst | Level 16

alternatively please try

 

data want;
set sashelp.vtable;
run;
Thanks,
Jag
PaigeMiller
Diamond | Level 26

Hello @nayab_shaik 


Would you please be kind enough to go back to your original post and provide a meaningful title instead of "sas"? Thank you.

--
Paige Miller

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 578 views
  • 1 like
  • 4 in conversation