ASP.NET CLR Not Enabled
Simplified version of jams' solution which worked for me (SQL Server 2012):
sp_configure 'clr enabled', 1
GO
RECONFIGURE
GO
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', 1
GO
RECONFIGURE
GO
Try this
use dasolPSDev;
EXEC sp_configure 'clr enabled', 1
go
RECONFIGURE
go
EXEC sp_configure 'clr enabled'
go