The 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!