<?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; TRIM Function to Remove Leading and Trailing Spaces of String &#8211; SQL in Sixty Seconds #040 &#8211; Video</title>
	<atom:link href="http://blog.sqlauthority.com/2013/01/23/sql-server-trim-function-to-remove-leading-and-trailing-spaces-of-string-sql-in-sixty-seconds-040-video/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2013/01/23/sql-server-trim-function-to-remove-leading-and-trailing-spaces-of-string-sql-in-sixty-seconds-040-video/</link>
	<description>SQL, SQL Server, MySQL, Big Data and NoSQL</description>
	<lastBuildDate>Wed, 19 Jun 2013 01:31:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: erjoell</title>
		<link>http://blog.sqlauthority.com/2013/01/23/sql-server-trim-function-to-remove-leading-and-trailing-spaces-of-string-sql-in-sixty-seconds-040-video/#comment-411917</link>
		<dc:creator><![CDATA[erjoell]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 17:19:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22201#comment-411917</guid>
		<description><![CDATA[question about Trim in comparison statements in where clause when data type is a fixed length char.  At one time in SQL Server T-SQL at least it was not possible to get a correct match when look for &quot;WHERE Field1 = &#039;at&#039; &quot; when Field1 was a char column of length 5.  It was necessary to do either &quot;WHERE Field1 = &#039;at   &#039; &quot;  or &quot;WHERE RTrim(Field1) = &#039;at&#039; &quot;.  Based on your recommendations against it are you saying that this is no longer necessary?]]></description>
		<content:encoded><![CDATA[<p>question about Trim in comparison statements in where clause when data type is a fixed length char.  At one time in SQL Server T-SQL at least it was not possible to get a correct match when look for &#8220;WHERE Field1 = &#8216;at&#8217; &#8221; when Field1 was a char column of length 5.  It was necessary to do either &#8220;WHERE Field1 = &#8216;at   &#8216; &#8221;  or &#8220;WHERE RTrim(Field1) = &#8216;at&#8217; &#8220;.  Based on your recommendations against it are you saying that this is no longer necessary?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erjoell</title>
		<link>http://blog.sqlauthority.com/2013/01/23/sql-server-trim-function-to-remove-leading-and-trailing-spaces-of-string-sql-in-sixty-seconds-040-video/#comment-411914</link>
		<dc:creator><![CDATA[erjoell]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 17:11:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22201#comment-411914</guid>
		<description><![CDATA[How do you figure?  RTrim removes the trailing spaces (i.e. thos which come AFTER the text), which are those on the Right.  That&#039;s why the &quot;R&quot; in RTrim.  The spaces on the left are leadings spaces because they come first, thus the &quot;L&quot; in LTrim.]]></description>
		<content:encoded><![CDATA[<p>How do you figure?  RTrim removes the trailing spaces (i.e. thos which come AFTER the text), which are those on the Right.  That&#8217;s why the &#8220;R&#8221; in RTrim.  The spaces on the left are leadings spaces because they come first, thus the &#8220;L&#8221; in LTrim.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhargavi</title>
		<link>http://blog.sqlauthority.com/2013/01/23/sql-server-trim-function-to-remove-leading-and-trailing-spaces-of-string-sql-in-sixty-seconds-040-video/#comment-411701</link>
		<dc:creator><![CDATA[bhargavi]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 09:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22201#comment-411701</guid>
		<description><![CDATA[Hi pinal 
           What are the best practices for keeping referential integrity across multiple databases?]]></description>
		<content:encoded><![CDATA[<p>Hi pinal<br />
           What are the best practices for keeping referential integrity across multiple databases?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2013/01/23/sql-server-trim-function-to-remove-leading-and-trailing-spaces-of-string-sql-in-sixty-seconds-040-video/#comment-411624</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 05:26:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22201#comment-411624</guid>
		<description><![CDATA[Thanks Fixed!]]></description>
		<content:encoded><![CDATA[<p>Thanks Fixed!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rakesh.29nov@gmail.com</title>
		<link>http://blog.sqlauthority.com/2013/01/23/sql-server-trim-function-to-remove-leading-and-trailing-spaces-of-string-sql-in-sixty-seconds-040-video/#comment-411614</link>
		<dc:creator><![CDATA[rakesh.29nov@gmail.com]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 05:01:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22201#comment-411614</guid>
		<description><![CDATA[Hiii Pinal 
        In both the point you have written RTRIM function replace point 2 with LTRIM]]></description>
		<content:encoded><![CDATA[<p>Hiii Pinal<br />
        In both the point you have written RTRIM function replace point 2 with LTRIM</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Srinivas Kothakonda</title>
		<link>http://blog.sqlauthority.com/2013/01/23/sql-server-trim-function-to-remove-leading-and-trailing-spaces-of-string-sql-in-sixty-seconds-040-video/#comment-411598</link>
		<dc:creator><![CDATA[Srinivas Kothakonda]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 04:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=22201#comment-411598</guid>
		<description><![CDATA[ 

Hi Pinal, 

Small Mistake in below Post 

2) RTRIM - Removes the Spaces on the left side (or trailing spaces) of the string. 

*Thanks &amp; Regards,* 

Srinivas.K 
]]></description>
		<content:encoded><![CDATA[
<p>Hi Pinal, </p>
<p>Small Mistake in below Post </p>
<p>2) RTRIM &#8211; Removes the Spaces on the left side (or trailing spaces) of the string. </p>
<p>*Thanks &amp; Regards,* </p>
<p>Srinivas.K </p>
]]></content:encoded>
	</item>
</channel>
</rss>