Enable CLR on SQL Server 2005

posted @ Wednesday, April 30, 2008 1:21 PM

 

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

Comments
No comments posted yet.
Post Comment






Please add 8 and 2 and type the answer here: