<?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; Introduction to CLR &#8211; Simple Example of CLR Stored Procedure</title>
	<atom:link href="http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 10 Feb 2012 04:35:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Dilip</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-235922</link>
		<dc:creator><![CDATA[Dilip]]></dc:creator>
		<pubDate>Thu, 12 Jan 2012 08:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-235922</guid>
		<description><![CDATA[Hi.... good article....it helped me alot....but,

i want to use a global variable in the procedure.... how can i do this....?
eg: 

  public static string strr = &quot;hhhiii&quot;;
  
    [Microsoft.SqlServer.Server.SqlProcedure]
    public static void sp_GetHexValue(int number)
    {        
       strr = &quot;hhhhhiiiii&quot;;       
       SqlContext.Pipe.Send(strr);       
    }

i&#039;m getting an error while deploying.

&quot; Deploy error SQL01268: .Net SqlClient Data Provider: Msg 6211, Level 16, State 1, Line 1 CREATE ASSEMBLY failed because type &#039;StoredProcedures&#039; in external_access assembly &#039;TestSQL_CLR_Project&#039; has a static field &#039;strr&#039;. Attributes of static fields in external_access assemblies must be marked  readonly in Visual C#, ReadOnly in Visual Basic, or initonly in Visual C++ and intermediate language.
  An error occurred while the batch was being executed.&quot;

so, i tried giving readonly property.... it worked.... but, i&#039;m unable to set the value at runtime.

how can i achieve this ....?

Thanks 4 ur help.]]></description>
		<content:encoded><![CDATA[<p>Hi&#8230;. good article&#8230;.it helped me alot&#8230;.but,</p>
<p>i want to use a global variable in the procedure&#8230;. how can i do this&#8230;.?<br />
eg: </p>
<p>  public static string strr = &#8220;hhhiii&#8221;;</p>
<p>    [Microsoft.SqlServer.Server.SqlProcedure]<br />
    public static void sp_GetHexValue(int number)<br />
    {<br />
       strr = &#8220;hhhhhiiiii&#8221;;<br />
       SqlContext.Pipe.Send(strr);<br />
    }</p>
<p>i&#8217;m getting an error while deploying.</p>
<p>&#8221; Deploy error SQL01268: .Net SqlClient Data Provider: Msg 6211, Level 16, State 1, Line 1 CREATE ASSEMBLY failed because type &#8216;StoredProcedures&#8217; in external_access assembly &#8216;TestSQL_CLR_Project&#8217; has a static field &#8216;strr&#8217;. Attributes of static fields in external_access assemblies must be marked  readonly in Visual C#, ReadOnly in Visual Basic, or initonly in Visual C++ and intermediate language.<br />
  An error occurred while the batch was being executed.&#8221;</p>
<p>so, i tried giving readonly property&#8230;. it worked&#8230;. but, i&#8217;m unable to set the value at runtime.</p>
<p>how can i achieve this &#8230;.?</p>
<p>Thanks 4 ur help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ashish amatya</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-230501</link>
		<dc:creator><![CDATA[ashish amatya]]></dc:creator>
		<pubDate>Tue, 03 Jan 2012 07:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-230501</guid>
		<description><![CDATA[i wonder what will be the result of, sp_helptext CLRSPTest.]]></description>
		<content:encoded><![CDATA[<p>i wonder what will be the result of, sp_helptext CLRSPTest.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sree Achanta</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-202673</link>
		<dc:creator><![CDATA[Sree Achanta]]></dc:creator>
		<pubDate>Wed, 23 Nov 2011 05:05:30 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-202673</guid>
		<description><![CDATA[excellent and thank u...................]]></description>
		<content:encoded><![CDATA[<p>excellent and thank u&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anu</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-197739</link>
		<dc:creator><![CDATA[anu]]></dc:creator>
		<pubDate>Thu, 17 Nov 2011 14:15:17 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-197739</guid>
		<description><![CDATA[u can use the following query:


EXEC sp_configure &#039;show advanced options&#039; , &#039;1&#039;; 
reconfigure; 

EXEC sp_configure &#039;clr enabled&#039; , &#039;1&#039; ;
reconfigure; 

EXEC sp_configure &#039;show advanced options&#039; , &#039;0&#039;; 
reconfigure;]]></description>
		<content:encoded><![CDATA[<p>u can use the following query:</p>
<p>EXEC sp_configure &#8216;show advanced options&#8217; , &#8217;1&#8242;;<br />
reconfigure; </p>
<p>EXEC sp_configure &#8216;clr enabled&#8217; , &#8217;1&#8242; ;<br />
reconfigure; </p>
<p>EXEC sp_configure &#8216;show advanced options&#8217; , &#8217;0&#8242;;<br />
reconfigure;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-179818</link>
		<dc:creator><![CDATA[Steve]]></dc:creator>
		<pubDate>Mon, 17 Oct 2011 07:10:34 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-179818</guid>
		<description><![CDATA[When Exec dbo.clrsptest is run it puts the result in the messages tab in sql server management studio. How would one get the result into a table? This did not work.

Use [vc]

Create Table #t (date nvarchar (255))
Insert Into #t
Exec dbo.clrsptest

Select * from #t
Drop Table #t]]></description>
		<content:encoded><![CDATA[<p>When Exec dbo.clrsptest is run it puts the result in the messages tab in sql server management studio. How would one get the result into a table? This did not work.</p>
<p>Use [vc]</p>
<p>Create Table #t (date nvarchar (255))<br />
Insert Into #t<br />
Exec dbo.clrsptest</p>
<p>Select * from #t<br />
Drop Table #t</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: noName</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-164216</link>
		<dc:creator><![CDATA[noName]]></dc:creator>
		<pubDate>Thu, 01 Sep 2011 07:45:53 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-164216</guid>
		<description><![CDATA[&quot;CLR is faster than T-SQL in many cases&quot;
Sorry but here i can&#039;t agree with you. T-SQL is used mostly in stored procedures or functions, which they are stored on the server it&#039;s self. Wright noe i am &#039;translating&#039; a stored procedure from SQL into a CLR function, and after i tested it severl times the results are aprox:
10 s for the SQL
35 s for the CLR

One of the time consuming effect for the CLR is opening/closing the readers, executing commands and all the other things that you must do in order to execute the SQL querys.
But i think CLR are one of the best solutions if you want acces to a database from C#.]]></description>
		<content:encoded><![CDATA[<p>&#8220;CLR is faster than T-SQL in many cases&#8221;<br />
Sorry but here i can&#8217;t agree with you. T-SQL is used mostly in stored procedures or functions, which they are stored on the server it&#8217;s self. Wright noe i am &#8216;translating&#8217; a stored procedure from SQL into a CLR function, and after i tested it severl times the results are aprox:<br />
10 s for the SQL<br />
35 s for the CLR</p>
<p>One of the time consuming effect for the CLR is opening/closing the readers, executing commands and all the other things that you must do in order to execute the SQL querys.<br />
But i think CLR are one of the best solutions if you want acces to a database from C#.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Srivastava</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-157764</link>
		<dc:creator><![CDATA[Srivastava]]></dc:creator>
		<pubDate>Tue, 16 Aug 2011 11:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-157764</guid>
		<description><![CDATA[good article

thank you very much]]></description>
		<content:encoded><![CDATA[<p>good article</p>
<p>thank you very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-140089</link>
		<dc:creator><![CDATA[Alan]]></dc:creator>
		<pubDate>Thu, 09 Jun 2011 19:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-140089</guid>
		<description><![CDATA[Considering you are a proven expert, I wish you would have tried  to add something more to this really  simple example that can be found almost everywhere!  but thanks for the effort.]]></description>
		<content:encoded><![CDATA[<p>Considering you are a proven expert, I wish you would have tried  to add something more to this really  simple example that can be found almost everywhere!  but thanks for the effort.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony Henley</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-124901</link>
		<dc:creator><![CDATA[Anthony Henley]]></dc:creator>
		<pubDate>Thu, 24 Mar 2011 18:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-124901</guid>
		<description><![CDATA[Are you saying that you need a full-blown version of Visual Studio to work with CLRs? I only have the Visual Studio that comes with SQL 2008 R2 and it does not have a Visual C# project type.]]></description>
		<content:encoded><![CDATA[<p>Are you saying that you need a full-blown version of Visual Studio to work with CLRs? I only have the Visual Studio that comes with SQL 2008 R2 and it does not have a Visual C# project type.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: isuru</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-115894</link>
		<dc:creator><![CDATA[isuru]]></dc:creator>
		<pubDate>Thu, 03 Feb 2011 17:33:50 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-115894</guid>
		<description><![CDATA[Great Article. Thank u very much..]]></description>
		<content:encoded><![CDATA[<p>Great Article. Thank u very much..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saad</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-80407</link>
		<dc:creator><![CDATA[Saad]]></dc:creator>
		<pubDate>Thu, 15 Jul 2010 14:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-80407</guid>
		<description><![CDATA[Great to see a simple example !
Very useful to get started...Thanks !!!]]></description>
		<content:encoded><![CDATA[<p>Great to see a simple example !<br />
Very useful to get started&#8230;Thanks !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-80034</link>
		<dc:creator><![CDATA[Dan]]></dc:creator>
		<pubDate>Tue, 13 Jul 2010 06:56:19 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-80034</guid>
		<description><![CDATA[I have a question : 

How can I connect to two or more databases using this project ?]]></description>
		<content:encoded><![CDATA[<p>I have a question : </p>
<p>How can I connect to two or more databases using this project ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rinu</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-79191</link>
		<dc:creator><![CDATA[Rinu]]></dc:creator>
		<pubDate>Thu, 08 Jul 2010 09:52:09 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-79191</guid>
		<description><![CDATA[Really helpful.....all ur articles are wonderful.....it is simple and good....thank you]]></description>
		<content:encoded><![CDATA[<p>Really helpful&#8230;..all ur articles are wonderful&#8230;..it is simple and good&#8230;.thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: scmay</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-59873</link>
		<dc:creator><![CDATA[scmay]]></dc:creator>
		<pubDate>Mon, 18 Jan 2010 05:04:21 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-59873</guid>
		<description><![CDATA[Interesting article, I was wondering if this is possible for a problem which I need to read from the different database to another database. Both database is in SQL Server.]]></description>
		<content:encoded><![CDATA[<p>Interesting article, I was wondering if this is possible for a problem which I need to read from the different database to another database. Both database is in SQL Server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Faker</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-58645</link>
		<dc:creator><![CDATA[Faker]]></dc:creator>
		<pubDate>Tue, 15 Dec 2009 06:49:41 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-58645</guid>
		<description><![CDATA[Thanks for a brilliant article Pinal. Very helpful.]]></description>
		<content:encoded><![CDATA[<p>Thanks for a brilliant article Pinal. Very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tann</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-52009</link>
		<dc:creator><![CDATA[tann]]></dc:creator>
		<pubDate>Mon, 18 May 2009 15:24:02 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-52009</guid>
		<description><![CDATA[Enjoyed post.  I&#039;m wondering why it is so difficult to find an example ( in literature or Internet at large ) of converting a T-SQL procedure which contains an &quot;out&quot; variable into an identicale  C# CLR stored procedure.  Is there something which prohibits this conversion ?   If not, can you provide or cite an example ?   Real world T-SQL procedures tend to have out parameters. Thx]]></description>
		<content:encoded><![CDATA[<p>Enjoyed post.  I&#8217;m wondering why it is so difficult to find an example ( in literature or Internet at large ) of converting a T-SQL procedure which contains an &#8220;out&#8221; variable into an identicale  C# CLR stored procedure.  Is there something which prohibits this conversion ?   If not, can you provide or cite an example ?   Real world T-SQL procedures tend to have out parameters. Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: greggy</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-45709</link>
		<dc:creator><![CDATA[greggy]]></dc:creator>
		<pubDate>Sun, 18 Jan 2009 17:24:27 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-45709</guid>
		<description><![CDATA[Hi, 
    Dave (Pinal). Thanks to God for bringing you to earth,  you have a perculiar way of making programmers life easy, all over the web, there are lots of bla-bla..bla, but every argument you treat, is always a strait and simplest form to a solution.
Keep up with it. YOU ARE MY OBAMA!]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
    Dave (Pinal). Thanks to God for bringing you to earth,  you have a perculiar way of making programmers life easy, all over the web, there are lots of bla-bla..bla, but every argument you treat, is always a strait and simplest form to a solution.<br />
Keep up with it. YOU ARE MY OBAMA!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: contrapunctus</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-43812</link>
		<dc:creator><![CDATA[contrapunctus]]></dc:creator>
		<pubDate>Mon, 20 Oct 2008 09:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-43812</guid>
		<description><![CDATA[hello pinal. one thing puzzled me a little bit, i really need to ask this:)

you wrote &quot;Stored Procedures, Functions, Triggers can be coded in CLR. CLR is faster than T-SQL in many cases. CLR is mainly used to accomplish task which are not possible by T-SQL or can use lots of resources.&quot;

now, if i save a stored procedure in sql server management studio, isnt it saved as a clr function? up to now i always knew that stored procedures are &quot;compiled&quot;, but your sentences made me understand as if the sp way is similar to hardcoding the sql query text in code and execute it with a SqlConnection object.

can you clarify this point a little bit more please?]]></description>
		<content:encoded><![CDATA[<p>hello pinal. one thing puzzled me a little bit, i really need to ask this:)</p>
<p>you wrote &#8220;Stored Procedures, Functions, Triggers can be coded in CLR. CLR is faster than T-SQL in many cases. CLR is mainly used to accomplish task which are not possible by T-SQL or can use lots of resources.&#8221;</p>
<p>now, if i save a stored procedure in sql server management studio, isnt it saved as a clr function? up to now i always knew that stored procedures are &#8220;compiled&#8221;, but your sentences made me understand as if the sp way is similar to hardcoding the sql query text in code and execute it with a SqlConnection object.</p>
<p>can you clarify this point a little bit more please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: contrapunctus</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-43811</link>
		<dc:creator><![CDATA[contrapunctus]]></dc:creator>
		<pubDate>Mon, 20 Oct 2008 09:01:11 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-43811</guid>
		<description><![CDATA[hello pinal. one thing puzzled me a little bit, i really need to ask this:)

you wrote &quot;Stored Procedures, Functions, Triggers can be coded in CLR. CLR is faster than T-SQL in many cases. CLR is mainly used to accomplish task which are not possible by T-SQL or can use lots of resources.&quot;
now, if i save a stored procedure in sql server management studio, isnt it saved as a clr function? up to now i always knew that stored procedures are &quot;compiled&quot;, but your sentences made me understand as if the sp way is similar to hardcoding the sql query text in code and execute it with a SqlConnection object.
can you clarify this point a little bit more please?]]></description>
		<content:encoded><![CDATA[<p>hello pinal. one thing puzzled me a little bit, i really need to ask this:)</p>
<p>you wrote &#8220;Stored Procedures, Functions, Triggers can be coded in CLR. CLR is faster than T-SQL in many cases. CLR is mainly used to accomplish task which are not possible by T-SQL or can use lots of resources.&#8221;<br />
now, if i save a stored procedure in sql server management studio, isnt it saved as a clr function? up to now i always knew that stored procedures are &#8220;compiled&#8221;, but your sentences made me understand as if the sp way is similar to hardcoding the sql query text in code and execute it with a SqlConnection object.<br />
can you clarify this point a little bit more please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bhupendra Patel</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-43803</link>
		<dc:creator><![CDATA[Bhupendra Patel]]></dc:creator>
		<pubDate>Sun, 19 Oct 2008 19:10:12 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-43803</guid>
		<description><![CDATA[Thanks for the post Pinal, I make a point to read your blog very useful stuff. I hope you dont mind me putting reference&#039;s to other blogs

Hi friends
In case you run into the same problem as i did . 
i.e. at command prompt if you get
&quot;Execution of user code in the .NET Framework is disabled. Enable &quot;clr enabled&quot; configuration option.&quot;

then you can correct that by

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=125208&amp;SiteID=1

or

http://geekswithblogs.net/vrod/archive/2006/07/17/85471.aspx]]></description>
		<content:encoded><![CDATA[<p>Thanks for the post Pinal, I make a point to read your blog very useful stuff. I hope you dont mind me putting reference&#8217;s to other blogs</p>
<p>Hi friends<br />
In case you run into the same problem as i did .<br />
i.e. at command prompt if you get<br />
&#8220;Execution of user code in the .NET Framework is disabled. Enable &#8220;clr enabled&#8221; configuration option.&#8221;</p>
<p>then you can correct that by</p>
<p><a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=125208&#038;SiteID=1" rel="nofollow">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=125208&#038;SiteID=1</a></p>
<p>or</p>
<p><a href="http://geekswithblogs.net/vrod/archive/2006/07/17/85471.aspx" rel="nofollow">http://geekswithblogs.net/vrod/archive/2006/07/17/85471.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bashar Kokash</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-43796</link>
		<dc:creator><![CDATA[Bashar Kokash]]></dc:creator>
		<pubDate>Sun, 19 Oct 2008 05:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-43796</guid>
		<description><![CDATA[Can a SQL CLR stored procedure call or excute a SQL procedure or function?]]></description>
		<content:encoded><![CDATA[<p>Can a SQL CLR stored procedure call or excute a SQL procedure or function?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

