<?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, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Shantanu Choudhary</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-433929</link>
		<dc:creator><![CDATA[Shantanu Choudhary]]></dc:creator>
		<pubDate>Fri, 08 Mar 2013 13:53:51 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-433929</guid>
		<description><![CDATA[Shantanu Choudhary 
I had created clr using T-SQL but when i am executing the store procedure in T-SQL query window i am getting an


&quot;
Msg 6522, Level 16, State 1, Procedure CLRSPTest, Line 0
A .NET Framework error occurred during execution of user-defined routine or aggregate &quot;CLRSPTest&quot;: 
System.Security.SecurityException: Request for the permission of type &#039;System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089&#039; failed.
System.Security.SecurityException: 
   at System.Security.CodeAccessSecurityEngine.CheckNReturnSO(PermissionToken permToken, CodeAccessPermission demand, StackCrawlMark&amp; stackMark, Int32 unrestrictedOverride, Int32 create)
   at System.Security.CodeAccessSecurityEngine.Assert(CodeAccessPermission cap, StackCrawlMark&amp; stackMark)
   at System.Security.CodeAccessPermission.Assert()
   at StoredProcedures.CLRSPTest() 
&quot;
In CLR fuction i had written a code

string MachineName = System.Environment.MachineName.ToString();

Can any one suggest me why this is happing]]></description>
		<content:encoded><![CDATA[<p>Shantanu Choudhary<br />
I had created clr using T-SQL but when i am executing the store procedure in T-SQL query window i am getting an</p>
<p>&#8221;<br />
Msg 6522, Level 16, State 1, Procedure CLRSPTest, Line 0<br />
A .NET Framework error occurred during execution of user-defined routine or aggregate &#8220;CLRSPTest&#8221;:<br />
System.Security.SecurityException: Request for the permission of type &#8216;System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089&#8242; failed.<br />
System.Security.SecurityException:<br />
   at System.Security.CodeAccessSecurityEngine.CheckNReturnSO(PermissionToken permToken, CodeAccessPermission demand, StackCrawlMark&amp; stackMark, Int32 unrestrictedOverride, Int32 create)<br />
   at System.Security.CodeAccessSecurityEngine.Assert(CodeAccessPermission cap, StackCrawlMark&amp; stackMark)<br />
   at System.Security.CodeAccessPermission.Assert()<br />
   at StoredProcedures.CLRSPTest()<br />
&#8221;<br />
In CLR fuction i had written a code</p>
<p>string MachineName = System.Environment.MachineName.ToString();</p>
<p>Can any one suggest me why this is happing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suman Miah</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-417203</link>
		<dc:creator><![CDATA[Suman Miah]]></dc:creator>
		<pubDate>Sun, 03 Feb 2013 15:06:52 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-417203</guid>
		<description><![CDATA[Thanks!]]></description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sekhar C</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-398057</link>
		<dc:creator><![CDATA[Sekhar C]]></dc:creator>
		<pubDate>Sun, 23 Dec 2012 10:07:42 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-398057</guid>
		<description><![CDATA[How can we fetch SahrePoint List data in CLR server solution??]]></description>
		<content:encoded><![CDATA[<p>How can we fetch SahrePoint List data in CLR server solution??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-388170</link>
		<dc:creator><![CDATA[Jeff]]></dc:creator>
		<pubDate>Thu, 06 Dec 2012 15:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-388170</guid>
		<description><![CDATA[Excellent article and I got it to work with no problem. 
What I need to do is pass in 1 parameter and then do a select from a table and return exactly 1 value. What would be the preferred means of doing this? Do you have an example? I can&#039;t find any on the net for this.]]></description>
		<content:encoded><![CDATA[<p>Excellent article and I got it to work with no problem.<br />
What I need to do is pass in 1 parameter and then do a select from a table and return exactly 1 value. What would be the preferred means of doing this? Do you have an example? I can&#8217;t find any on the net for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mariusz C</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-348856</link>
		<dc:creator><![CDATA[Mariusz C]]></dc:creator>
		<pubDate>Sat, 15 Sep 2012 11:03:42 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-348856</guid>
		<description><![CDATA[Hi,

You can copy DLL file from VS project BIN folder, and register this DLL asembly on SQL Server using SQL commands. Example:

create ASSEMBLY SQLCLRTest1 from &#039;c:\temp\SQLCLRTest1.dll&#039; WITH PERMISSION_SET = SAFE
go

create procedure YOURCLRPROCEDURENAME(@YOYRPARAMETERNAME int)
as 
external name
    [SQLCLRTest1].[StoredProcedures].[YOURC#PROCEDURENAME]
go 

After that you can delete DLL file from SQL Server. Regards.
Mariusz]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>You can copy DLL file from VS project BIN folder, and register this DLL asembly on SQL Server using SQL commands. Example:</p>
<p>create ASSEMBLY SQLCLRTest1 from &#8216;c:\temp\SQLCLRTest1.dll&#8217; WITH PERMISSION_SET = SAFE<br />
go</p>
<p>create procedure YOURCLRPROCEDURENAME(@YOYRPARAMETERNAME int)<br />
as<br />
external name<br />
    [SQLCLRTest1].[StoredProcedures].[YOURC#PROCEDURENAME]<br />
go </p>
<p>After that you can delete DLL file from SQL Server. Regards.<br />
Mariusz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terry Hulsey</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-339604</link>
		<dc:creator><![CDATA[Terry Hulsey]]></dc:creator>
		<pubDate>Fri, 31 Aug 2012 14:57:21 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-339604</guid>
		<description><![CDATA[Idolatry is not allowed!]]></description>
		<content:encoded><![CDATA[<p>Idolatry is not allowed!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh Sheth</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-322228</link>
		<dc:creator><![CDATA[Rajesh Sheth]]></dc:creator>
		<pubDate>Tue, 31 Jul 2012 06:21:22 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-322228</guid>
		<description><![CDATA[Hi Pinal

Thanks for detail help on Extended stored procedure, I have a query related to build. My client does not allowed me to install visual studio on production environment so there is any option to generate DLL on local PC with Local database and implement at production server.

Pl. help me on this issue.

Regards
Rajesh Sheth]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal</p>
<p>Thanks for detail help on Extended stored procedure, I have a query related to build. My client does not allowed me to install visual studio on production environment so there is any option to generate DLL on local PC with Local database and implement at production server.</p>
<p>Pl. help me on this issue.</p>
<p>Regards<br />
Rajesh Sheth</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asif</title>
		<link>http://blog.sqlauthority.com/2008/10/19/sql-server-introduction-to-clr-simple-example-of-clr-stored-procedure/#comment-263209</link>
		<dc:creator><![CDATA[Asif]]></dc:creator>
		<pubDate>Thu, 15 Mar 2012 10:24:44 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=1390#comment-263209</guid>
		<description><![CDATA[Hi i am facing issue after clr deployment

my user has sysadmin right
but i am not dbowner of database
i change sp_changedbowner to my user and deploy that and then re change to original one.
Assembly is UNSAFE, database is Trustworthy on and clr is on

but execution with dbowner user stored procedure gives below error
dbowner is not sysadmin.

Msg 10314, Level 16, State 11, Line 4
An error occurred in the Microsoft .NET Framework while trying to load assembly id 65672. The server may be running out of resources, or the assembly may not be trusted with PERMISSION_SET = EXTERNAL_ACCESS or UNSAFE. Run the query again, or check documentation to see how to solve the assembly trust issues. For more information about this error: 
System.IO.FileLoadException: Could not load file or assembly &#039;pssqlcustmization, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null&#039; or one of its dependencies. An error relating to security occurred. (Exception from HRESULT: 0x8013150A)
System.IO.FileLoadException: 
   at System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark&amp; stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection)
   at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark&amp; stackMark, Boolean forIntrospection)
   at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark&amp; stackMark, Boolean forIntrospection)
   at System.Reflection.Assembly.Load(String assemblyString)


if i change that dbowner and gives right to sysadmin then it works.
but that&#039;s not what i am looking for.

i tried to set permission on database that execure, create assembly and alter any assembly but error continues.

Can you let me know which right need to assign when it&#039;s not sysadmin 
I already checked MSDN and other blogs but not get good idea for practical situations.

i create stored procedure with EXECUTE AS CALLER.]]></description>
		<content:encoded><![CDATA[<p>Hi i am facing issue after clr deployment</p>
<p>my user has sysadmin right<br />
but i am not dbowner of database<br />
i change sp_changedbowner to my user and deploy that and then re change to original one.<br />
Assembly is UNSAFE, database is Trustworthy on and clr is on</p>
<p>but execution with dbowner user stored procedure gives below error<br />
dbowner is not sysadmin.</p>
<p>Msg 10314, Level 16, State 11, Line 4<br />
An error occurred in the Microsoft .NET Framework while trying to load assembly id 65672. The server may be running out of resources, or the assembly may not be trusted with PERMISSION_SET = EXTERNAL_ACCESS or UNSAFE. Run the query again, or check documentation to see how to solve the assembly trust issues. For more information about this error:<br />
System.IO.FileLoadException: Could not load file or assembly &#8216;pssqlcustmization, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null&#8217; or one of its dependencies. An error relating to security occurred. (Exception from HRESULT: 0x8013150A)<br />
System.IO.FileLoadException:<br />
   at System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark&amp; stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection)<br />
   at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark&amp; stackMark, Boolean forIntrospection)<br />
   at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark&amp; stackMark, Boolean forIntrospection)<br />
   at System.Reflection.Assembly.Load(String assemblyString)</p>
<p>if i change that dbowner and gives right to sysadmin then it works.<br />
but that&#8217;s not what i am looking for.</p>
<p>i tried to set permission on database that execure, create assembly and alter any assembly but error continues.</p>
<p>Can you let me know which right need to assign when it&#8217;s not sysadmin<br />
I already checked MSDN and other blogs but not get good idea for practical situations.</p>
<p>i create stored procedure with EXECUTE AS CALLER.</p>
]]></content:encoded>
	</item>
	<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>
</channel>
</rss>
