BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
juen1
Fluorite | Level 6

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

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

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.

View solution in original post

4 REPLIES 4
SASKiwi
PROC Star

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.

juen1
Fluorite | Level 6

Thanks for the quick answer. I am running on PC. How should I change my settings to deal with this problem? 

SASKiwi
PROC Star

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. 

juen1
Fluorite | Level 6
thank you so much. Really appreciate your quick help!

sas-innovate-white.png

Register Today!

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.

Register now!

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1008 views
  • 6 likes
  • 2 in conversation