Date: Thu, 5 Aug 2010 15:06:09 -0400
Reply-To: oloolo <dynamicpanel@YAHOO.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: oloolo <dynamicpanel@YAHOO.COM>
Subject: Re: Optimizing SAS to run faster
your SAS is 32-bit, so that total memory consumption from SAS session can't
exceeds 2GB, even if you switch to Win7.
Since you have such a big sized memory, you can use them as a buffer folder
for your working datasets, i.e a memory-based library
for example: libname mymem memlib "c:\temp" ;
for details, see MEMLIB in OnlineDoc, you will find a lot of tune
parameters to play with.
I see this as the easiest way to boost performance as most of our work are
I/O bound.
There are other optimizations you will consider, especially for MP machine.
Search for "Windows Features That Optimize Performance" in OnlineDoc
On Thu, 5 Aug 2010 14:42:27 -0400, P. Cristian Gugiu <crisgugiu@YAHOO.COM>
wrote:
>Hi all. I just upgraded my RAM in an effort to boost the performance of
>SAS. I now have 14BG of RAM running on a Dell Precision T5400 with 8
>processors (2.0 GHz). I also have the SAS temp folder in a dedicated 10k
>rpm drive. I can't affort to upgrade to a 15k rpm SAS drive.
>
>I would like to know what other things I can do to optimize the
>performance of SAS. Specifically, I checked a RAM meter as I ran a SAS
>program under timed conditions. The meter indicated that I was only using
>about 2GB of ram although no other programs were running, other than
>Windows 7. Is there a way to increase the amount of ram the SAS will use
>during a run? Along these lines, can someone tell me if the "memleave"
>or "memsize" options are the ones I need and if so, which should I set.
>
>thanks,
>Cristian
|