Reputation: 668
A contractor is trying to tell us that the Enterprise query optimizer is better/faster than the Standard optimizer. I have been searching/googling on this issue, and have not seen anything clearly saying so one way or the other.
So, are the various engines (eg query optimizer, storage engine, etc) the same in all editions (eg Standard, Enterprise), and simply have certain capabilities enabled or disabled? That's been my understanding. Hopefully someone can clarify and perhaps even point to a reference link.
Upvotes: 1
Views: 116
Reputation: 581
SQL Enterprise can use more hardware, i.e. number of cpu/processor and memeory each edition can use.
Also can
see http://msdn.microsoft.com/en-us/library/cc645993.aspx
Upvotes: 4
Reputation:
The engines are the same, however there are certain - let's call them flags - that are set based on the SKU. These can lead to better performance; not necessarily an engine difference per se, but in a lot of cases just the ability of the engine to take advantage of something due to the presence of the feature (and the "flag").
Some examples:
NOEXPAND
hint. This is probably the most well-known one because it is the only one that you can take advantage of in lower editions for free (aside from code maintenance time).I'm probably leaving some out but it's important to recognize that the engines themselves aren't different, but the performance difference will be substantial depending on which of these features you might use and what kind of impact they would have on your specific workload.
Upvotes: 2