由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 对于庞大的sequence data,通常会用database储存么?
相关主题
贡献SAS Programmer 面试问题并求答案请教SAS输入法的问题
Marketing公司Customer Analytics面试问题请教再看SAS in stock market 这本书 有啥数据库可以拿来联系的吗
[SAS] row merging有在找统计工作的人么?SAS问题求教 (转载)
急问:医院里都用什么database啊?面试求助!SAS的一个小问题
诚心请教这样的背景能找Analyst工作吗?[请教]SAS 9.2 import excel变量名长度
SAS不能导入EXCEL2003的数据!help on importing csv file to SAS
求助:SAS data set输出job opportunity in NEW YORK,
SAS: automatically generate xls file with updated date贴简历,请大牛们帮我看看
相关话题的讨论汇总
话题: sas话题: database话题: data话题: using话题: sequence
进入Statistics版参与讨论
1 (共1页)
k*p
发帖数: 1526
1
还是一般就是文本文件,再用perl读取,sas统计?
thanks
z**k
发帖数: 378
2
it depends
if you always read data sequencially, Perl is enough, but if you need random
access, sorting, merging, or other basic database operation, you'd better
use a database.
SAS has it's own relational database system. Using SAS is essentially using
a database, for most of time SAS beats other databases.
v*******g
发帖数: 334
3
what is it ?
How big is the dataset that SAS can handle?

【在 z**k 的大作中提到】
: it depends
: if you always read data sequencially, Perl is enough, but if you need random
: access, sorting, merging, or other basic database operation, you'd better
: use a database.
: SAS has it's own relational database system. Using SAS is essentially using
: a database, for most of time SAS beats other databases.

d*******o
发帖数: 493
4
I feel SAS is not an ideal DBMS.
(1) For large data sets, building indexes is necessary to merge or sort. SAS
has no performance tuner. It is very hard to optimize the indexing.
(2) SAS runs with single-tread. Most CPU right now have more than one core.
(3) No automation for database maintenance including backup/restore.
(4) Not many security options.
z**k
发帖数: 378
5
i v no idea about the scalability of SAS, but I guess it can handle really
large dataset.
My understanding is SAS is not using any of the mainstream database system
like oracle, sql server, etc ... it developed it's own relational database,
and thus has lots of nice buildin functions, like transpose and _N_. It's
true SAS do not maintain index (based on my SAS Adv cert guide), but you can
always index tables right before a complicated query. Of course you could beat SAS if you write all code in

【在 v*******g 的大作中提到】
: what is it ?
: How big is the dataset that SAS can handle?

1 (共1页)
进入Statistics版参与讨论
相关主题
贴简历,请大牛们帮我看看诚心请教这样的背景能找Analyst工作吗?
SAS 数据读入的问题 (proc import)SAS不能导入EXCEL2003的数据!
] 怎么把ACCESS里的数据导入SAS?求助:SAS data set输出
怎么把文本文件(TEXT)转到SASSAS: automatically generate xls file with updated date
贡献SAS Programmer 面试问题并求答案请教SAS输入法的问题
Marketing公司Customer Analytics面试问题请教再看SAS in stock market 这本书 有啥数据库可以拿来联系的吗
[SAS] row merging有在找统计工作的人么?SAS问题求教 (转载)
急问:医院里都用什么database啊?面试求助!SAS的一个小问题
相关话题的讨论汇总
话题: sas话题: database话题: data话题: using话题: sequence