How to Upgrade SQL Server from Evaluation Edition to Standard or Enterprise

By:   |   Updated: 2023-09-19   |   Comments (4)   |   Related: > Upgrades and Migrations


Problem

I need to change my SQL Server Evaluation edition to a paid edition. Is this possible, and if so, what are the steps?

Solution

This tip will teach you how to upgrade the SQL Server Evaluation edition to Standard or Enterprise.

Requirements

What is the SQL Server Evaluation Edition?

This is a complete version of SQL Server available for 180 days. After that period, you must upgrade your SQL Server to other versions. This edition is free, and you can use it to learn and evaluate the product, and after six months or less, you can upgrade to a production edition like Standard or Enterprise.

Why Do I Need to Upgrade the SQL Server Evaluation Edition?

The Evaluation edition is a trial that will work for 180 days and after that it will stop working. Companies commonly use the evaluation version to learn new features and for testing and after that they purchase a license.

Which Versions Can I Upgrade to when using SQL Server Evaluation?

The SQL Server 2022 Evaluation edition can be upgraded to:

  • SQL Server 2022 Enterprise
  • SQL Server 2022 Standard
  • SQL Server 2022 Developer
  • SQL Server 2022 Web

The SQL Server 2019 Evaluation can also upgrade to:

  • SQL Server 2019 Enterprise
  • SQL Server 2019 Standard
  • SQL Server 2019 Developer
  • SQL Server 2019 Web
  • SQL Server 2019 Evaluation edition can also be upgraded to the SQL Server 2022 evaluation edition.

SQL Server 2017, 2016, 2014, and 2012 Evaluation editions can also be upgraded to SQL Server 2022 Enterprise, Standard, Developer, Evaluation, and Web. 

Which License is More Convenient Enterprise or Standard?

If you have a corporate license and the price for Enterprise licenses is not a problem and you need the Enterprise features, this is the best option. The Standard edition has some limitations for certain features, but it is also much cheaper.

 SQL Server 2022 Enterprise edition costs around $7000 USD per core and the Standard edition is around $1859 USD per core.

The Enterprise edition provides a faster performance and a data center with high service levels.

The Standard edition is used for smaller organizations with fewer IT resources.

For example, the Enterprise edition supports an unlimited number of sockets and cores, whereas the Standard supports 4 sockets and 24 cores for maximum compute capacity for the database engine and the SSAS and SSRS instances. The maximum memory for the buffer pool is unlimited for the Enterprise edition and 128GB for the Standard edition.

In addition, some features supported on the Enterprise edition are not supported or are limited on the Standard edition, like Always On Availability Groups, Contained Availability Groups, Distributed Availability Groups, Online Page and File Restore, and several other features.

Can We Upgrade the Evaluation Edition to the Express Edition?

No, this is not possible.

How to Upgrade the SQL Server Evaluation Edition

Find the SQL Server installer and run it.

In the SQL Server Installation Center, select Maintenanceand select the Edition Upgradelink.

edition upgrade link

On the following screen, enter the product key. The product key is provided when you purchase a license. It can be a Standard, Enterprise, Web, orDeveloper edition. After entering the product key, click Next. Also, you can see there are other options as well.

Edition selection with product key

The upgrade process takes 3-10 minutes approximately and will stop and restart SQL Server.

Verify that the Edition was Upgraded Using SSMS

If you want to check the SQL Server edition in SSMS, go to the Object Explorer,select the SQL Server, right-click, and select Properties.  On the General page, go to Product to see the SQL Server edition as shown below. We can see this was upgraded to the Developer edition.

Verify that the Edition was Upgraded Using SSMS

Check that the Edition was Upgraded Using T-SQL

If you want to verify that the edition was changed, you can run the following commands to check:

SELECT @@VERSION

Another way is to use the SERVERPROPERTY function:

SELECT SERVERPROPERTY('Edition') AS Edition;

Conclusion

This article taught us how to upgrade the SQL Server Evaluation edition to other editions like Standard or Enterprise.

For this exercise, you need to run the installer, then go to the Maintenance page and enter the product key to upgrade the version.

Next Steps


sql server categories

sql server webinars

subscribe to mssqltips

sql server tutorials

sql server white papers

next tip



About the author
MSSQLTips author Daniel Calbimonte Daniel Calbimonte is a Microsoft SQL Server MVP, Microsoft Certified Trainer and 6-time Microsoft Certified IT Professional. Daniel started his career in 2001 and has worked with SQL Server 6.0 to 2022. Daniel is a DBA as well as specializes in Business Intelligence (SSIS, SSAS, SSRS) technologies.

This author pledges the content of this article is based on professional experience and not AI generated.

View all my tips


Article Last Updated: 2023-09-19

Comments For This Article




Friday, December 8, 2023 - 4:48:50 PM - Daniel Calbimonte Back To Top (91797)
Unfortunately, SQL Server Developer Edition is not yet available for Ubuntu 22.04

Friday, December 8, 2023 - 4:46:43 PM - Daniel Calbimonte Back To Top (91796)
Microsoft allows upgrading evaluation versions to licensed versions using the VLSC product key.
The downloaded ISO likely contains both evaluation and licensed versions, and the setup process automatically detects and upgrades the existing evaluation instance.

Follow the instructions, do not remove the evaluation version.

Friday, December 8, 2023 - 9:24:18 AM - Mike Back To Top (91795)
Hi, I want to convert my evaluation to SQL Standard Server + Cal not Per Core. I can download the software from the Microsoft Business portal. It says no key is required. Do I follow the instructions as above or do I have to remove the evaluation version and install from this ISO provided?

Tuesday, September 19, 2023 - 8:37:14 AM - Wally Pons Back To Top (91577)
Hello. Is there a way to do the same under Linux? I recently installed Ubuntu Linux 22.04 and Only SQL Server Enterprise 180 days Evaluation is available, and this is a development machine only. For Ubuntu Linux 20.04 I can install SQL developer edition, but then I have to downgrade to that Ubuntu version.














get free sql tips
agree to terms