Is there a simple way to check if a SAS dataset is empty in 9.2?
I could do a proc sql with count(*) but I was hoping for something with less lines.
Either one will give you the same thing, could save time if the dataset turns out to be huge, you wouldn't have to wait for the count():
proc datasets lib=work nolist;contents data=have;quit;run;
proc contents data=work.have;
Either one will give you the same thing, could save time if the dataset turns out to be huge, you wouldn't have to wait for the count():
proc datasets lib=work nolist;contents data=have;quit;run;
proc contents data=work.have;
I like these macros for counting obs and checking if a dataset is empty.
http://www2.sas.com/proceedings/sugi26/p095-26.pdf
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!
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.
Ready to level-up your skills? Choose your own adventure.