I use the following command to try to enable the CLR in an instance of SQL Server 2008
EXEC sp_configure 'clr enabled', 1 GO RECONFIGURE GO
But I still get the following error
.NET Framework code execution is disabled. Install the "clr enabled" configuration and restart the server
Do I need to do anything?
source share