FYI, I'm blogging most of my stuff over at More Wally now.
You might want to add my rss feed to your reader at:http://morewally.com/cs/blogs/wallym/rss.aspx
Enabling the CLR in the Sql Server 2005 - Wallace B. McClure

Wallace B. McClure

All About Wally McClure - The musings of Wallym on .NET, Sql, ASP.NET, and other crazy shenanigans

News

Personal Blog

Work Blog

.NET

Book Authors

Business

Family

Friends

Georgia Tech Bloggers

Personal

Enabling the CLR in the Sql Server 2005

If you want to run a CLR object in Sql Server 2005 (or SqlExpress), note that CLR is disabled by default on Sql Server 2005.  You will need to enable the CLR.  Here are the commands that I used to enable the CLR.

EXEC sp_configure 'show advanced options' , '1';
go
reconfigure;
go
EXEC sp_configure 'clr enabled' , '1'
go
reconfigure;

Enjoy,

Wally

Comments

TrackBack said:

# October 19, 2004 6:12 PM

TrackBack said:

# October 20, 2004 8:24 AM

TrackBack said:

# March 4, 2005 11:32 PM

Weblog said:

http://weblogs.asp.net/wallym/archive/2004/10/19/244766.aspx If you don't do this, no clr stuff will...

# October 3, 2006 5:55 PM
Leave a Comment

(required) 

(required) 

(optional)

(required)