简体   繁体   English

SQL Server Standard和Enterprise Edition 2005之间的性能差异

[英]Performance difference between SQL Server Standard & Enterprise Edition 2005

如果我不使用任何企业功能,那么Standard&Enterprise Edition 2005之间确实存在性能差异吗?

The Enterprise edition has a few things that Standard doesn't have: 企业版具有标准版所没有的一些功能:

  • support for more than 4 CPU's 支持超过4个CPU
  • partitioning 分割
  • parallel index operations 并行索引操作
  • indexed views 索引视图

So if your apps would make use of those features, then yes - there can be a performance difference. 因此,如果您的应用将利用这些功能,那么可以-可能会有性能差异。 But if you only manage a couple hundred items in a table - no difference.... 但是,如果您只管理一个表中的几百个项目-没什么区别。

See here for a complete feature comparison 完整功能比较请参见此处

Probably not in your case - since you know you're not using the Enterprise features. 可能不是您的情况-因为您知道自己没有使用企业功能。

Key performance difference affecting features would be indexed views (an optimization consideration), number of processors (need more than 4?), and table partitioning (can give performance boost, but primary purpose is not performance, but management - also an execution plan bug in 2005 which results in some partitioned table plans to be slower than non-partitioned table plans) 影响功能的关键性能差异将包括索引视图(优化考虑),处理器数量(需要4个以上)和表分区(可以提高性能,但主要目的不是性能,而是管理-也是执行计划的错误)在2005年,这导致某些分区表计划比未分区表计划慢)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM