Hello,
I am running a proc mixed model with two random intercepts and no predictors, and I'm getting the insufficient memory error "ERROR: The SAS System stopped processing this step because of insufficient memory."
I've already tried increasing the RAM in the VM, but didn't help. My total # of rows is 1256722; Total columns: 75.
Are there any solutions to this issue or is it a limitation of SAS UE?
Thank you in advance!
 
The code is below:
 
proc mixed data=cl.pain noclprint;
class idfin countryfin;
model painl=/solution;
random intercept / subject=countryfin type=vc;
random intercept / subject=idfin(countryfin) type=vc;
options fullstimer;
run;