BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
aminkarimid
Lapis Lazuli | Level 10

Hello everybody,

I use the program which I show below:

 

ods graphics on;
proc quantselect data=Sampledata_adjvol plots=all;
   class TRD_EVENT_ROUFOR;
   model adjusted_volume_5 = TRD_EVENT_ROUFOR
         / quantiles=0.1;
run;

But the process was stopped because of the error which is below:

ERROR: Selection aborted because of insufficient memory for creating simplex tableau.

How can I fix it?
Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

Run your program using OPTIONS FULLSTIMER then check the log. It will report how much memory it is using.

 

Then run PROC OPTIONS and find out what your MEMSIZE option is set to. A typical value might be 2G (2 gigabytes). You could try a much increased value to see if that gives you enough memory for your program to run.

View solution in original post

1 REPLY 1
SASKiwi
PROC Star

Run your program using OPTIONS FULLSTIMER then check the log. It will report how much memory it is using.

 

Then run PROC OPTIONS and find out what your MEMSIZE option is set to. A typical value might be 2G (2 gigabytes). You could try a much increased value to see if that gives you enough memory for your program to run.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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