Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any performance difference between SQL Server Web and Express editions?

I have a VPS with Windows Server 2008 R2, 1 GB RAM with Dual Processor Quad Core 2 CORES.

My sample application is running slower than my current website on shared hosting, when I asked the reason the says following reason:

"SQL Server Express tends to be slower compared to SQL Server Web edition. This is due to the limitations imposed in SQL Server Express which is basically meant for only development environment. We have observed significant amount of improvements with SQL Server Web edition for production web facing applications on VM's. Hence, this can be something that you might consider."

Is this logic just because they want to sale the Web edition database or there is really some performance benefit. I googled and I didn't find anything like that between different versions.

Any help on this from experts?

like image 972
Sheo Narayan Avatar asked Nov 25 '09 17:11

Sheo Narayan


2 Answers

This is due to the limitations imposed in SQL Server Express which is basically meant for only development environment.

That is absolutely wrong.

SQL Express is used in many, many, many production environments, where it can be a great tool.

SQL Express is not throttled in terms of the number of queries per second it can process. However, as others have said in their answers here, it is limited by RAM (1GB), DB size (4GB) and CPUs (1). If your DB is between 1GB and 4GB, you could easily notice a performance difference vs. SQL Web for scenarios where everything fits into memory on one, but not on the other.

Having said that, there are a bunch of other configuration / setup / design options that can have a much larger impact; the details depend on your data, schema, access patterns, etc.

like image 87
RickNZ Avatar answered Sep 27 '22 22:09

RickNZ


hope that help:

[link text][1]http://www.microsoft.com/sqlserver/2008/en/us/editions-compare.aspx

like image 41
pablox Avatar answered Sep 27 '22 23:09

pablox