SQL SERVER – Get Server Version and Additional Info

It is quite common to get the SQL Server version details from following query.

SELECT @@VERSION VersionInfo
GO

SQL SERVER - Get Server Version and Additional Info version1

Recently I have been using following SP to get version details as it also provides me few more information about the server where the SQL Server is installed.

EXEC xp_msver
GO

SQL SERVER - Get Server Version and Additional Info version2

Watch a 60 second video on this subject
[youtube=http://www.youtube.com/watch?v=8P5TuOg3PlA]

I like to use the second one but again that is my preference.

Reference: Pinal Dave (https://blog.sqlauthority.com)

Database, SQL Scripts, SQL Utility
Previous Post
SQLAuthority News – Download Windows Azure Platform Training Kit – December Update
Next Post
SQL SERVER – DMV Error: FIX: Error: Msg 297, Level 16 The user does not have permission to perform this action

Related Posts

Leave a Reply