Monday, July 11, 2011

How to enable CLR Stored procedures on SQL Server 2005 and 2008

EXEC sp_configure 'show advanced options' , '1';
reconfigure;

EXEC sp_configure 'clr enabled' , '1' ;
reconfigure;

EXEC sp_configure 'show advanced options' , '0';
reconfigure;

0 comments: