Created
December 23, 2015 07:51
-
-
Save jeffjohnson9046/605e649683a09fb13079 to your computer and use it in GitHub Desktop.
SQL Server Product Information
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Run this query against any database on a SQL Server instance to get version details*/ | |
SELECT | |
SERVERPROPERTY('productversion') AS ProductVersion, | |
SERVERPROPERTY('productlevel') AS ProductLevel, | |
SERVERPROPERTY('edition') AS Edition, | |
@@VERSION AS VerboseVersion; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment