<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; 2005 Enable CLR using T-SQL script</title>
	<atom:link href="http://blog.sqlauthority.com/2007/05/05/sql-server-2005-enable-clr-using-t-sql-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/05/05/sql-server-2005-enable-clr-using-t-sql-script/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Thu, 09 Feb 2012 10:40:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Nitin Sharma</title>
		<link>http://blog.sqlauthority.com/2007/05/05/sql-server-2005-enable-clr-using-t-sql-script/#comment-55210</link>
		<dc:creator><![CDATA[Nitin Sharma]]></dc:creator>
		<pubDate>Wed, 26 Aug 2009 04:40:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/05/sql-server-2005-enable-clr-using-t-sql-script/#comment-55210</guid>
		<description><![CDATA[Hi Pinal,
    Is the Exec with &#039;advnced options&#039; mandatory???
I am asking because i just ran :

EXEC sp_CONFIGURE &#039;clr enabled&#039; , &#039;1&#039;
GO
RECONFIGURE;
GO


and everthing is fine...]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
    Is the Exec with &#8216;advnced options&#8217; mandatory???<br />
I am asking because i just ran :</p>
<p>EXEC sp_CONFIGURE &#8216;clr enabled&#8217; , &#8217;1&#8242;<br />
GO<br />
RECONFIGURE;<br />
GO</p>
<p>and everthing is fine&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2007/05/05/sql-server-2005-enable-clr-using-t-sql-script/#comment-53777</link>
		<dc:creator><![CDATA[Imran Mohammed]]></dc:creator>
		<pubDate>Fri, 17 Jul 2009 04:25:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/05/sql-server-2005-enable-clr-using-t-sql-script/#comment-53777</guid>
		<description><![CDATA[Brain Schumann, 

In Older versions of SQL Server, yes this command needed a sql server instance restart. But From SQL Server 2005, if you use, RECONFIGURE WITH OVERRIDE, Restart is not needed. 

For Ex: 

EXEC sp_CONFIGURE &#039;show advanced options&#039; , &#039;1&#039;;
GO
RECONFIGURE WITH OVERRIDE
GO

EXEC sp_CONFIGURE &#039;clr enabled&#039; , &#039;1&#039;
GO
RECONFIGURE WITH OVERRIDE
GO

EXEC sp_CONFIGURE &#039;show advanced options&#039; , &#039;0&#039;;
GO
RECONFIGURE WITH OVERRIDE
GO


Also, You can do the same thing through, Surface Area Configuration. 

Start - All Programs - Microsoft SQL Server 2005 - Configuration Tools - Surface Area Configuration - Surface area Configuration for features

Click on the SQL Server instance, Expand Database Engine for that SQL Server instance and then point to CLR Integration on right side of panel, Check the radio button, Click Ok. 

You are done. This will also not require a restart of SQL Server Instance. 

Good if you test this out of your DEV/ TEST Env, before making change in production.

~ IM.]]></description>
		<content:encoded><![CDATA[<p>Brain Schumann, </p>
<p>In Older versions of SQL Server, yes this command needed a sql server instance restart. But From SQL Server 2005, if you use, RECONFIGURE WITH OVERRIDE, Restart is not needed. </p>
<p>For Ex: </p>
<p>EXEC sp_CONFIGURE &#8216;show advanced options&#8217; , &#8217;1&#8242;;<br />
GO<br />
RECONFIGURE WITH OVERRIDE<br />
GO</p>
<p>EXEC sp_CONFIGURE &#8216;clr enabled&#8217; , &#8217;1&#8242;<br />
GO<br />
RECONFIGURE WITH OVERRIDE<br />
GO</p>
<p>EXEC sp_CONFIGURE &#8216;show advanced options&#8217; , &#8217;0&#8242;;<br />
GO<br />
RECONFIGURE WITH OVERRIDE<br />
GO</p>
<p>Also, You can do the same thing through, Surface Area Configuration. </p>
<p>Start &#8211; All Programs &#8211; Microsoft SQL Server 2005 &#8211; Configuration Tools &#8211; Surface Area Configuration &#8211; Surface area Configuration for features</p>
<p>Click on the SQL Server instance, Expand Database Engine for that SQL Server instance and then point to CLR Integration on right side of panel, Check the radio button, Click Ok. </p>
<p>You are done. This will also not require a restart of SQL Server Instance. </p>
<p>Good if you test this out of your DEV/ TEST Env, before making change in production.</p>
<p>~ IM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Schumann</title>
		<link>http://blog.sqlauthority.com/2007/05/05/sql-server-2005-enable-clr-using-t-sql-script/#comment-53763</link>
		<dc:creator><![CDATA[Brian Schumann]]></dc:creator>
		<pubDate>Thu, 16 Jul 2009 13:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/05/05/sql-server-2005-enable-clr-using-t-sql-script/#comment-53763</guid>
		<description><![CDATA[Does this still require a restart of the service?  I&#039;d like to add this to a DDL script and would like to know if it would work without restarting the machine?  Thanks for this information]]></description>
		<content:encoded><![CDATA[<p>Does this still require a restart of the service?  I&#8217;d like to add this to a DDL script and would like to know if it would work without restarting the machine?  Thanks for this information</p>
]]></content:encoded>
	</item>
</channel>
</rss>

