Hi Team,
Please let me know how to find size of SAS dataset through base SAS code
Thank you.
Untested:
proc sql;
select libname, memname, filesize
from sashelp.vtable;
quit;
I don't think the filesize in vtable is accurate, usually, I've queried my OS to get the file listing and extract the size from that.
What is your OS? Can you run an X command, SYSEXEC?
Do you want size in number of bytes the file occupies or the number of records that are in the data set?
Proc contents data=<your dataset name goes here>;
run;
will tell you number of observations (records) and lots of other information about the dataset.
Hi,
I want size in number of bytes.
OS is windows7
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.