Error:

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

 

Solution:

You can run the following to enable CLR in SQL server 2008.

sp_configure 'show advanced options', 1;
GO

RECONFIGURE;
GO

sp_configure 'clr enabled', 1;
GO

RECONFIGURE;
GO