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.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

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