2
votes
4answers
164 views
How do you determine the size of sas dataset on UNIX?
Does anyone know of any SAS functions / techniques for obtaining the SIZE of files / datasets in UNIX directories? (eg in MB or GB).
1
vote
2answers
72 views
SAS Enterprise Guide UNIX WORK library - viewing files
How do I view the file below in Enterprise Guide (v 4.1 ) ??
%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ;
data _null_;
file "&libWORK./MYFILE.htm";
…