简体   繁体   中英

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
  • 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)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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