Skip to content

Instantly share code, notes, and snippets.

@LetsGoRafting
Last active January 20, 2019 19:33
Show Gist options
  • Save LetsGoRafting/e097f315760a37fb77a1478d74dfd648 to your computer and use it in GitHub Desktop.
Save LetsGoRafting/e097f315760a37fb77a1478d74dfd648 to your computer and use it in GitHub Desktop.
SELECT
SERVERPROPERTY('MachineName') AS [ServerName],
SERVERPROPERTY('ServerName') AS [ServerInstanceName],
SERVERPROPERTY('InstanceName') AS [Instance],
SERVERPROPERTY('Edition') AS [Edition],
SERVERPROPERTY('ProductVersion') AS [ProductVersion],
Left(@@Version, Charindex('-', @@version) - 2) As VersionName,
SERVERPROPERTY('LicenseType') as LicenseType, SERVERPROPERTY('NumLicenses') as NumLicenses
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment