由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - SAS memory management
相关主题
which route in SAS is faster?急!SAS adv的一道题,谢谢!
求救:SAS programmer面试题!请教SAS ADV一道题!
SAS dataset 中,怎么把数据往上移一行?[提问]怎样sort这个dataset?
How to Macro it in SAS?how to avoid changing the raw dataset when you work on proc sort?
问个效率问题 SQL vs data step,大数据量什么样的电脑(windows)跑SAS快?
SAS菜鸟请教如果使SAS的output的结果放到一个文件内?sas adv 63题 52
SAS help : Proc dataset求教一个简单的data step 牛肉包
请教 2 道SAS Adv 真题昨天考了SAS ADVANCED,不难
相关话题的讨论汇总
话题: sas话题: memory话题: dataset话题: data话题: manages
进入Statistics版参与讨论
1 (共1页)
p*****n
发帖数: 15
1
Someone told me data analysis in SAS is very slow because SAS does a lot of
disk I/O. I am new user of SAS. Can anyone explain how SAS exactly manages
the memory and I/O usage? For example, suppose I am manipulating a dataset
with size 1G on a server with memory 64G, will SAS put all the data into
memory? Are there some official documentation about this? Thanks
o****o
发帖数: 8077
2
if your memory is big enough, such as in your case, you can load the whole
data into memory and all SAS operations can be done completely in memory, no
disk I/O involved except initial load
for example, check "sasfile" statement
some procedures can specify memory size, for instance: PROC SORT ....
SORTSIZE=4G....
check its online documentation at support.sas.com

of
manages
dataset

【在 p*****n 的大作中提到】
: Someone told me data analysis in SAS is very slow because SAS does a lot of
: disk I/O. I am new user of SAS. Can anyone explain how SAS exactly manages
: the memory and I/O usage? For example, suppose I am manipulating a dataset
: with size 1G on a server with memory 64G, will SAS put all the data into
: memory? Are there some official documentation about this? Thanks

p*****n
发帖数: 15
3
Thanks.
So it seems that by default, sas will not put a big dataset into the memory
(even I have enough memory) unless I tell it to do so.

no

【在 o****o 的大作中提到】
: if your memory is big enough, such as in your case, you can load the whole
: data into memory and all SAS operations can be done completely in memory, no
: disk I/O involved except initial load
: for example, check "sasfile" statement
: some procedures can specify memory size, for instance: PROC SORT ....
: SORTSIZE=4G....
: check its online documentation at support.sas.com
:
: of
: manages

1 (共1页)
进入Statistics版参与讨论
相关主题
昨天考了SAS ADVANCED,不难问个效率问题 SQL vs data step,大数据量
[合集] 用SAS生成表格,怎么弄比较好?SAS菜鸟请教如果使SAS的output的结果放到一个文件内?
请教一sas codeSAS help : Proc dataset
SAS - please help!请教 2 道SAS Adv 真题
which route in SAS is faster?急!SAS adv的一道题,谢谢!
求救:SAS programmer面试题!请教SAS ADV一道题!
SAS dataset 中,怎么把数据往上移一行?[提问]怎样sort这个dataset?
How to Macro it in SAS?how to avoid changing the raw dataset when you work on proc sort?
相关话题的讨论汇总
话题: sas话题: memory话题: dataset话题: data话题: manages