<?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"
	>
<channel>
	<title>Comments on: Back To Basics: Stored Procedures, the work horse of the database</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/</link>
	<description></description>
	<pubDate>Thu, 26 Nov 2009 08:01:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Trigger to insert column value &#124; keyongtech</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-169</link>
		<dc:creator>Trigger to insert column value &#124; keyongtech</dc:creator>
		<pubDate>Sun, 18 Jan 2009 17:28:51 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-169</guid>
		<description>[...] of the parameters and put it strait into the table.  I wrote a blog entry about Stored Procedures (http://itknowledgeexchange.techtarge...-the-database/) as part of my Back to Basics series (http://itknowledgeexchange.techtarge...ack-to-basics/).  [...]</description>
		<content:encoded><![CDATA[<p>[...] of the parameters and put it strait into the table.  I wrote a blog entry about Stored Procedures &nbsp;&lt;a href="http://itknowledgeexchange.techtarge...-the-database/" title="http://itknowledgeexchange.techtarge...-the-database/" target="_blank"&gt;http://itknowledgeexchange.techtarge&#8230;-&#8230;&lt;/a&gt;) as part of my Back to Basics series &nbsp;&lt;a href="http://itknowledgeexchange.techtarge...ack-to-basics/" title="http://itknowledgeexchange.techtarge...ack-to-basics/" target="_blank"&gt;http://itknowledgeexchange.techtarge&#8230;a&#8230;&lt;/a&gt;).  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LTC</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-129</link>
		<dc:creator>LTC</dc:creator>
		<pubDate>Thu, 20 Nov 2008 23:22:56 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-129</guid>
		<description>"I know that this was a bit longer than the other posts, but I hope that you found it worth while."
_____________

Mr. Denny,

You never have to apologize for your posts being too long. For me, they always seem succinct, easy to assimilate, and they simplify any subject you post about.

I appreciate you devoting your time and energy to produce them. They are always worth my time to read them.

LTC</description>
		<content:encoded><![CDATA[<p>&#8220;I know that this was a bit longer than the other posts, but I hope that you found it worth while.&#8221;<br />
_____________</p>
<p>Mr. Denny,</p>
<p>You never have to apologize for your posts being too long. For me, they always seem succinct, easy to assimilate, and they simplify any subject you post about.</p>
<p>I appreciate you devoting your time and energy to produce them. They are always worth my time to read them.</p>
<p>LTC</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mrdenny</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-127</link>
		<dc:creator>Mrdenny</dc:creator>
		<pubDate>Sat, 08 Nov 2008 01:21:16 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-127</guid>
		<description>Thank you.

The N is used to tell SQL Server that the data being sent in is unicode.  Since when you create tables you are not limited to the latin character set that we use in the English language the sample code is setup to include to allow for these other characters.  If for example you had created the table using russian characters as the table name you need need to put the N in front of the string.

When dealing with latin characters the N is usually optional, but it is better to put it in.</description>
		<content:encoded><![CDATA[<p>Thank you.</p>
<p>The N is used to tell SQL Server that the data being sent in is unicode.  Since when you create tables you are not limited to the latin character set that we use in the English language the sample code is setup to include to allow for these other characters.  If for example you had created the table using russian characters as the table name you need need to put the N in front of the string.</p>
<p>When dealing with latin characters the N is usually optional, but it is better to put it in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Omaleem</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-126</link>
		<dc:creator>Omaleem</dc:creator>
		<pubDate>Thu, 06 Nov 2008 16:03:32 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-126</guid>
		<description>exec ShowTables @FilterChar=N'C'

In the above command, why do you put "N" right after the equal sign? It ran it with and without it, gave me the same results.

Thanks...</description>
		<content:encoded><![CDATA[<p>exec ShowTables @FilterChar=N&#8217;C&#8217;</p>
<p>In the above command, why do you put &#8220;N&#8221; right after the equal sign? It ran it with and without it, gave me the same results.</p>
<p>Thanks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Omaleem</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-125</link>
		<dc:creator>Omaleem</dc:creator>
		<pubDate>Thu, 06 Nov 2008 16:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-125</guid>
		<description>Great artcile</description>
		<content:encoded><![CDATA[<p>Great artcile</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Back to Basics: The BACKUP DATABASE command - SQL Server with Mr. Denny</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-73</link>
		<dc:creator>Back to Basics: The BACKUP DATABASE command - SQL Server with Mr. Denny</dc:creator>
		<pubDate>Tue, 22 Jul 2008 21:15:05 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/back-to-basics-stored-procedures-the-work-horse-of-the-database/#comment-73</guid>
		<description>[...] command will backup all tables, views, procedures, functions, etc as well as all the data within the database.  Backing up the database in an online [...]</description>
		<content:encoded><![CDATA[<p>[...] command will backup all tables, views, procedures, functions, etc as well as all the data within the database.  Backing up the database in an online [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- dynamic -->