To know the Product version and Service Pack of installed SQL Server .
Run the Query
select 'Version',@@version
union all
select 'Product' ,serverproperty('product')
union all
select 'Productlevel',serverproperty('productlevel')
union all
select 'Product Version',serverproperty('productversion')
union all
select 'Edition',serverproperty('edition')
Run the Query
select 'Version',@@version
union all
select 'Product' ,serverproperty('product')
union all
select 'Productlevel',serverproperty('productlevel')
union all
select 'Product Version',serverproperty('productversion')
union all
select 'Edition',serverproperty('edition')
Comments
Post a Comment