The common language runtime (CLR) integration feature is off by default. The CRL must be enabled in orde to use objects that are implemented using CLR integration.
To enable CLR integration
Sp_configure ‘show advanced options’, 1;
GO
RECONFIGURE;
GO
Sp_configure ‘clr enabled’, 1;
GO
RECONFIGURE
GO