ASP.NET CLR Not Enabled ASP.NET CLR Not Enabled sql-server sql-server

ASP.NET CLR Not Enabled


Try this

use dasolPSDev;EXEC sp_configure 'clr enabled', 1 go RECONFIGURE goEXEC sp_configure 'clr enabled' go


Simplified version of jams' solution which worked for me (SQL Server 2012):

sp_configure 'clr enabled', 1GORECONFIGUREGO

Source: http://msdn.microsoft.com/en-us/library/ms254506%28v=vs.80%29.aspx


I had a similar issue, but this works for me (SQL Server 2008 R2):

sp_configure 'clr enabled', 1GORECONFIGUREGO