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

Hello expert,

 

My data is observations of firms data in stock exchange. I got the following error in LOG:

ERROR: Integer overflow on computing amount of memory required. A request to allocate 28439.9M bytes of memory can not be

honored.

 

My sas code is as follows:

proc mixed data=sasfile06 method=ml covtest nobound;

class Old;

model ROA=INDUSTRY YEAR/s intercept;

random OLD RD MARKETING LOANS/type=un s;

repeated / type=un subject=ID;

run;

 

I probably did a mistake but could not find any clue via interent or forum as a solution.

 

Any remarks will acceptable, THANKS

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

I would guess that you are estimating many, many random effects and that SAS cannot allocate enough memory to hold the symmetric matrix for the "Z" design matrix.  You might want to run PROC FREQ to find out how many columns are in your Z matrix:

 

proc freq data=sasfile06;

tables OLD RD MARKETING LOANS;

run;

 

See the doc for PROC MIXED that discusses memory and computing time for hints about how to handle large data and random effects with many levels.

View solution in original post

1 REPLY 1
Rick_SAS
SAS Super FREQ

I would guess that you are estimating many, many random effects and that SAS cannot allocate enough memory to hold the symmetric matrix for the "Z" design matrix.  You might want to run PROC FREQ to find out how many columns are in your Z matrix:

 

proc freq data=sasfile06;

tables OLD RD MARKETING LOANS;

run;

 

See the doc for PROC MIXED that discusses memory and computing time for hints about how to handle large data and random effects with many levels.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 4391 views
  • 0 likes
  • 2 in conversation