1
vote
1answer
11 views
Maximum size of a SAS script
Is there a maximum size of a SAS SCRIPT? If so, how does this differ (if at all) between SAS 8 and 9?
1
vote
2answers
24 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";
…
1
vote
2answers
9 views
hash table ‘scalar’ error
Does anyone have any idea why I am getting the following error?
ERROR: Scalar cannot be converted to object of type hash.
the hash table has three columns and one row. I am loa …