Hi friends - this is tricky for me if someone can help please...
I have one folder name "marketdataset" and there are lot of data sets in it. I want to know if i want to use "proc dataset" with this to get all datasets name - how can i do that?
Thanks!
Assuming the datasets in question are SAS datasets, it sounds like dictionary tables are your friend here;
e.g.
libname inputs <location of your data>;
proc sql;
create table myData as
select memname
from dictionary.tables
where libname eq 'INPUTS' /* Note your libname reference here must be upper case */
;
quit;
If they are SAS datasets of interest I would create a library pointing to that folder as the first step.
If they are not, then you'll likely want to import them into SAS datasets and thats going to raise questions about file types and options for importing.
Which case are you looking at?
they all are sas data sets only. but i don't understand your statement
"If they are SAS datasets of interest I would create a library pointing to that folder as the first step."
Thanks Ballardw...
Assuming the datasets in question are SAS datasets, it sounds like dictionary tables are your friend here;
e.g.
libname inputs <location of your data>;
proc sql;
create table myData as
select memname
from dictionary.tables
where libname eq 'INPUTS' /* Note your libname reference here must be upper case */
;
quit;
IT WORKED ABSOLUTELY FINE
Thanks - HJD24
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.