sql express 2019 end of life

Daniel Dennison 0 Reputation points
2025-01-28T16:35:29.2433333+00:00

Hello, I am looking at what is the end of life for SQL express 2019 is. how do i determine if a pc i use has an extended version?

SQL Server | Other
{count} votes

3 answers

Sort by: Most helpful
  1. Adharsh Santhanam 6,020 Reputation points Volunteer Moderator
    2025-01-28T17:13:08.5+00:00

    Hello Daniel Dennison, the end of life for SQL Server 2019, including SQL Express 2019, follows the Fixed Lifecycle Policy. Here are the key dates:

    • Mainstream support ends on February 28, 2025
    • Extended support ends on January 8, 2030

    To determine if a PC you use has an extended version of SQL Express 2019, you can follow these steps:

    1. Connect using SSMS:
      1. Open SSMS and connect to your SQL Server instance
      2. The version information will be displayed in parentheses along with the username used to connnect
    2. Run a query:
      1. Connect to the SQL Server instance and run the following query
              SELECT @@VERSION
        
      2. This will provide detailed information about the SQL Server version, including whether it is an extended version
    3. Use the SERVERPROPERTY function:
      1. Run the following query in SSMS
              SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY('productlevel'), SERVERPROPERTY('edition')
        
      2. This will return the product version, product level, and edition, helping you determine if it is an extended version

    Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.


  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  3. ZoeHui-MSFT 41,496 Reputation points
    2025-02-03T01:36:17.92+00:00

    Hi @Daniel Dennison,

    SQL Server 2019 follows the Fixed Lifecycle Policy.

    This applies to the following editions: on Linux (all editions), on Windows (all editions)

    Listing Start Date Mainstream End Date Extended End Date
    SQL Server 2019 Nov 4, 2019 Feb 28, 2025 Jan 8, 2030
    SQL Server 2019 Nov 4, 2019 Feb 28, 2025 Jan 8, 2030

    Regards,

    Zoe Hui


    If the answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.