What is my SQL Server Version, Service Pack, Edition

Requirement: Wanted to check the installed SQL Server version service pack level.
SELECT @@version ? It didn’t give me the Service pack information.

Query to Check SQL Server version, Service pack and Edition:

SELECT SERVERPROPERTY('productversion') [Product Version], 
          SERVERPROPERTY ('productlevel') [Service Pack],
                    SERVERPROPERTY ('edition') [Edition]
sql server version and service pack check

KB Article: https://support.microsoft.com/kb/321185

Salaudeen Rajack

Salaudeen Rajack - SharePoint Expert with Two decades of SharePoint Experience. Love to Share my knowledge and experience with the SharePoint community, through real-time articles!

One thought on “What is my SQL Server Version, Service Pack, Edition

  • Can we use Powershell?
    Local vs Remote SQL Properties!!

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *