Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Server Web vs Standard edition

I have found out that there's two versions of SQL Server types that are very different in terms of pricing...

The Web version from my host provider costs about 13$ per 2 core packs, whereas the Standard edition is right around 200$.

From my standpoint, we expect our database to be around 150-200GB in size, only few tables would take up most of that space.

So my only concern is would the web version of SQL Server support this large database and not cause any performance issues to the end users?

How different is index rebuilding on Web and Standard version?

Can someone help me out with this?

like image 762
User987 Avatar asked Feb 24 '18 20:02

User987


1 Answers

The differences between web and standard version of SQL Server 2016 are listed here : https://learn.microsoft.com/en-us/sql/sql-server/editions-and-components-of-sql-server-2016

Main differences between web and standard are the max memory and max number of cores. Both web and standard version don't have the possibility of online indexing, this is only possible in the enterprise edition.

For a database size having a size of around 200GB, the web edition looks to be ok. But this depends also on the workload of the database, are just some users querying this database or is this database used by thousand of users.

like image 137
Tom V Avatar answered Oct 24 '22 11:10

Tom V