If you are in need of determining the version and patch level of a SQL Server DB you can run the following command:
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY('productlevel'), SERVERPROPERTY('edition')
Modified on: Sat, 23 Apr, 2016 at 8:04 PM
If you are in need of determining the version and patch level of a SQL Server DB you can run the following command:
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY('productlevel'), SERVERPROPERTY('edition')
Did you find it helpful? Yes No
Send feedback