Exception: System.Data.SqlClient.SqlException: The configuration option 'min server memory' does not exist, or it may be an advanced option. Ad hoc update to system catalogs is not supported. I have encountered this error during the step 2 in the wizard. It is due a configuration in the SQL Server 2005 and the solution is to execute the following script: exec GO RECONFIGURE GO sp_configure GO RECONFIGURE GO After that the wizard finishes successfully. Related links:
sp_configure
'show advanced options', 1;
WITH
OVERRIDE;
'allow updates', 0;
WITH
OVERRIDE;
http://www.webservertalk.com/archive132-2007-4-1871302.html (I found here the script)
Thursday, December 27, 2007
SQL Server error updating WSS/MOSS
Publicado por Àlex en 8:53 AM
Subscribe to:
Post Comments (Atom)
1 comment:
Great rread thankyou
Post a Comment