PROC MIXED procedure crashes when I use influence option and by statement at the same time. Below are my SAS code and error message in the log. Any idea? Thanks,
proc sort data=blood; by OrderName ObservationName; run;
proc mixed data=blood;
class subjectID Diet;
model value = Diet / influence(iter=5 estimates) ;
random SubjectID;
by OrderName ObservationName;
estimate 'trt effect' diet 1 -1;
quit;
Error message in log
NOTE: Convergence criteria met.
NOTE: The above message was for the following BY group:
OrderName=C-Peptide ObservationName=C-Peptide, Serum
ERROR: File WORK.UTRAW.UTILITY is damaged.
ERROR: Utility file I/O.
ERROR: File WORK.UTRAW.UTILITY is damaged.
NOTE: PROCEDURE MIXED used (Total process time):
real time 1.18 seconds
cpu time 0.39 seconds
You have run out of space in your SAS WORK library. Are you running SAS on your PC or on a remote SAS server? If it is the latter then you will need to talk to your SAS administrator regarding your lack of space.
You have run out of space in your SAS WORK library. Are you running SAS on your PC or on a remote SAS server? If it is the latter then you will need to talk to your SAS administrator regarding your lack of space.
Thanks for the quick answer. I am running on PC. How should I change my settings to deal with this problem?
Check your hard drive to see how much space you have available. Check the location of your SAS WORK folder, and remove any old folders.
Clear as much space as you can by deleting files you don't need.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.