Enable CLR on SQL Server 2005

Run this query against your SQL Server 2005 to enable CLR on it:

EXEC sp_configure 'show advanced options' , '1';
go
reconfigure;
go
EXEC sp_configure 'clr enabled' , '1'
go
reconfigure;
-- Turn advanced options back off
EXEC sp_configure 'show advanced options' , '0';
go

Print | posted on Wednesday, April 30, 2008 1:21 PM

Comments on this post

No comments posted yet.

Your comment:

 (will show your gravatar)
 
Please add 5 and 3 and type the answer here: