While running a test from a project I've taken over, I get this error:
Execution of user code in the .NET Framework is disabled. Enable "clr enabled" configuration option
My first thought is , "I thought the .NET Framework kinda *had* to run CLR code."
Turns out the project is using .Net CLR inside the database.
The error message wanted to be
Execution of user code in the .NET Framework inside the database is disabled.
Execute this TSQL: "sp_configure 'clr enabled',1" and "RECONFIGURE"
So to fix this run this TSQL inside the database.
sp_configure 'clr enabled',1
GO
RECONFIGURE
GO
sp_configure 'clr enabled' -- make sure it took
GO
Helpful. Thanks.
ReplyDeleteIt did solved my issue .. many thanks..
ReplyDeleteSolved my issue! THanks!
ReplyDeleteVery Helpful. Solved the issue. Much clearer than the MS error
ReplyDeleteThank you! It works
ReplyDeleteThanks for the help!!
ReplyDeleteIt worked for me, thank you man
ReplyDeleteThanks!!..
ReplyDeleteThanks!!!... worked
ReplyDeleteThank You!!..
ReplyDeleteFantastic - very helpful!
ReplyDeleteTHNX
ReplyDeleteI solved my problem . Thanks fro the great answer. really appreciate it.
ReplyDeleteHelpful, Thank you very much
ReplyDeleteTotal thanks
ReplyDeleteIt worked for me. Thank you very much.
ReplyDeleteThanks! It resolved my issue!
ReplyDeleteIt worked. Thanks a lot!!
ReplyDeleteThanks. It worked for me.
ReplyDelete