Forum Replies Created

Viewing post 1 (of 1 total)

  • Reply To: How to Find the SQL Server Version

    This should give you everything you would ever want. I use it to populate several columns of my instance inventory table.

    select
    right((left(@@VERSION,25)),15) as 'ProductVersionName'
    ,SERVERPROPERTY('ProductLevel') AS 'ProductSpLevel'
    ,SERVERPROPERTY('ProductUpdateLevel') AS 'CumulativeUpdateLevel'
    ,SERVERPROPERTY('ProductUpdateReference')...

Viewing post 1 (of 1 total)