Enabling CLR Integration
Msg 6263, Level 16, State 1, Line 1
Execution
of user code in the .NET Framework is disabled. Enable "clr enabled"
configuration option.
The common language runtime (CLR) integration feature is off by default, and must be enabled in order to use objects that are implemented using CLR integration. To enable CLR integration, use the clr enabled option of the sp_configure stored procedure
sp_configure 'show advanced options', 1; GO RECONFIGURE; GO sp_configure 'clr enabled', 1; GO RECONFIGURE; GO