The official blog for Windows Server Essentials and Small Business Server support and product group communications.
[Today’s post comes to us courtesy of Damian Leibaschoff from Commercial Technical Support]
The requirements to install SQL 2008 Standard Edition for Small Business are documented on this post:
http://blogs.technet.com/b/sbs/archive/2009/03/23/requirements-for-installing-sql-2008-standard-edition-for-small-business.aspx
Under certain circumstances, you may encounter the block even though all the requirements seem to be met, here is a checklist of things to verify:
You can also enable verbose logging to get detailed output of which test is failing so you can take corrective action.
To enable verbose logging perform the following steps:
<?xml version="1.0" encoding="utf-8" ?> <configuration> <system.diagnostics> <trace autoflush="true" /> <sources> <source name="SBSADCheck" switchType="System.Diagnostics.SourceSwitch" switchValue="Verbose"> <listeners> <add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="log.txt" /> </listeners> </source> </sources> </system.diagnostics> </configuration>
Great solution for my problem.
This solution should be published by MS