Follow me on Twitter at Twitter.com/wbm
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 Web, HTML5, Mobile, MonoTouch for iPhone, MonoDroid for Android, and Windows Azure.

News

Personal Blog

Work Blog

.NET

Book Authors

Business

Family

Friends

Georgia Tech Bloggers

Personal

Archives

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

CFQüeb said:

The tip works fine in SQL Server 2008 (i'm using the Developer edition).

10x!

# August 25, 2008 11:42 AM

Abha Agrawal said:

Good Solution.It helped me in fixing the issue

# November 17, 2008 5:56 AM

abhishek said:

please tell me whare i can write the configration code

# October 6, 2010 2:44 AM
Leave a Comment

(required) 

(required) 

(optional)

(required)