Hello
I am trying to document my sql server info
How can I tell if my SQL installation is SQL Server 2008 or SQL Server 2008 R2?
If I run
I get 10.0.4000.0
and according to the SQL Server release history,
10.0 = 2008 SQL Server 2008
10.5 = 2010 SQL Server 2008 R2
So does this mean I am running SQL Server 2008?
However, the senior DBA has this listed as SQL Server R2
I have tried many server properties but can't seem to find the correct one. Any help/advice appreciated.
Thanks
Dave
I am trying to document my sql server info
How can I tell if my SQL installation is SQL Server 2008 or SQL Server 2008 R2?
If I run
Code:
SELECT SERVERPROPERTY ('productversion') AS Version
I get 10.0.4000.0
and according to the SQL Server release history,
10.0 = 2008 SQL Server 2008
10.5 = 2010 SQL Server 2008 R2
So does this mean I am running SQL Server 2008?
However, the senior DBA has this listed as SQL Server R2
I have tried many server properties but can't seem to find the correct one. Any help/advice appreciated.
Thanks
Dave