How to Enable CLR integration in SQL Server

EXEC sp_configure 'clr enabled', 1;

RECONFIGURE WITH OVERRIDE;

Go