SQL Server Web vs Standard edition

谁说胖子不能爱 提交于 2020-12-29 09:06:34

问题


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?


回答1:


The differences between web and standard version of SQL Server 2016 are listed here : https://docs.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.



来源:https://stackoverflow.com/questions/48967318/sql-server-web-vs-standard-edition

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!