Skip to content

Instantly share code, notes, and snippets.

@icarrr
Created December 2, 2019 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icarrr/1ffbfec3c90ba960f72ac2bd3a366597 to your computer and use it in GitHub Desktop.
Save icarrr/1ffbfec3c90ba960f72ac2bd3a366597 to your computer and use it in GitHub Desktop.
Get version of Microsoft SQL Server and Microsoft SQL Server Management Studio
SELECT SERVERPROPERTY('ProductVersion') AS ProductVersion,
SERVERPROPERTY('ProductLevel') AS ProductLevel,
SERVERPROPERTY('Edition') AS Edition;
EXEC sys.xp_msver;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment