What version of SQL Server should I use?

What version of SQL Server should I use?

You should consider SQL Server 2016 if… You use Standard Edition – because it supports 128GB RAM (and can even go beyond that for some internal stuff like query plans.)

What is compatibility level in SQL Server 2014?

If the compatibility level is set to SQL 2014 or higher, SQL Server uses the new cardinality estimation feature. If the compatibility level is set to 2012 or lower, the old optimizer is used.

How do I change the compatibility level in SQL Server 2014?

The best practice to change the compatibility level of the database is in following three steps.

  1. Set the database to single user access mode by using. ALTER DATABASE SET SINGLE_USER.
  2. Change the compatibility level of the database.
  3. Put the database in multiuser access mode by using.

Can you upgrade to a different edition of SQL Server?

For step-by-step instructions on how to perform an edition upgrade, see Upgrade to a Different Edition of SQL Server 2016 (Setup). Upgrading from Evaluation (a free edition) to any of the paid editions is supported for stand-alone installations, but is not supported for clustered installations.

Which is the best version of SQL Server to use?

Yes, if you host it in an Azure VM, Microsoft will give you extended support until 2022, but that’s it. With that end-of-support date, I’m just not a fan of new 2008 installs today. So let’s move on. You should consider SQL Server 2008 R2 if… You need these new features added since SQL 2008: Uh…yeah. No. Let’s skip this version and move on.

Which is better SQL 2008 or SQL 2014?

However unlike DBAs, a given SQL version does not get better with age (well not after SP4 anyway.) Take SQL 2008 for instance, mainstream support for this version expired in 2014 and its technology has been superseded by the new features and valuable improvements of recent SQL versions.

What is the database compatibility level for SQL Server 2016?

In SQL Server 2016 (13.x), valid values for the database compatibility level are 100, 110, 120, and 130. ALTER DATABASE Compatibility Level (Transact-SQL) discusses how the compatibility level change could affect SQL Server applications.