SQL Server 2005 setup fails 17 April 2008
Posted by it2tp in SQL Server.Tags: SQL Server
add a comment
Several parts of the SQL Server Standard 2005 installation failed.
- Uninstalled SQL Server
- Disabled McAfee Framewark Service and McAfee McShield
- Reinstalled SQL Server and … no problems anymore
How to identify your SQL Server version and edition 16 April 2008
Posted by it2tp in SQL Server.Tags: SQL Server
add a comment
This query should do the trick:
SELECT @@VERSION
or
SELECTÂ SERVERPROPERTY(‘productversion’), SERVERPROPERTY (‘productlevel’), SERVERPROPERTY (‘edition’)
See this Microsoft article and here.