Posts

Showing posts from October, 2014

Enable CLR on a specific database

To enable clr on a specific database run the blow script on that database. sp_configure 'clr enabled',1 GO RECONFIGURE GO sp_configure 'clr enabled'  -- make sure it took GO