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