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
19 comments:
Helpful. Thanks.
It did solved my issue .. many thanks..
Solved my issue! THanks!
Very Helpful. Solved the issue. Much clearer than the MS error
Thank you! It works
Thanks for the help!!
It worked for me, thank you man
Thanks!!..
Thanks!!!... worked
Thank You!!..
Fantastic - very helpful!
THNX
I solved my problem . Thanks fro the great answer. really appreciate it.
Helpful, Thank you very much
Total thanks
It worked for me. Thank you very much.
Thanks! It resolved my issue!
It worked. Thanks a lot!!
Thanks. It worked for me.
Post a Comment