jump to navigation

SQL Server 2005 setup fails 17 April 2008

Posted by it2tp in SQL Server.
Tags:
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:
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.