Error: Execution of User Code in the .NET Framework

15_The_Superhuman_GambitThe Problem:

Execution of user code in the .NET Framework is disabled. Enable “clr enabled” configuration option

The Solution:

EXEC sp_configure ‘show advanced options’ , ‘1’;
reconfigure;
EXEC sp_configure ‘clr enabled’ , ‘1’ ;
reconfigure;

Good Morning!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.