Quick Method of Finding Out What Version and Service Pack your SQL Server Instance is Running

If you are looking for a quick way to verify the service pack and version applied to your SQL server instance, try the following T-SQL:

SELECT
SERVERPROPERTY('productversion') AS productversion,
SERVERPROPERTY('productlevel') AS productlevel,
SERVERPROPERTY('edition') AS edition

Hope this helps!

This entry was posted in MS SQL Server. Bookmark the permalink.

Leave a Reply

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

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>