enable clr integration in SQL server 2005

Thu, Jan 3, 2008 1-minute read

I always forget how to enable CLR inside SQL Server - so this is just a quick reminder on how to enable it in SQL Server 2005.

Run the following query:

sp_configure 'clr enabled', 1
GO
RECONFIGURE
GO