<?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; Simple Explanation and Puzzle with SOUNDEX Function and DIFFERENCE Function</title>
	<atom:link href="http://blog.sqlauthority.com/2012/06/16/sql-server-simple-explanation-and-puzzle-with-soundex-function-and-difference-function/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2012/06/16/sql-server-simple-explanation-and-puzzle-with-soundex-function-and-difference-function/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Thu, 23 May 2013 14:22:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: rita.yin</title>
		<link>http://blog.sqlauthority.com/2012/06/16/sql-server-simple-explanation-and-puzzle-with-soundex-function-and-difference-function/#comment-395202</link>
		<dc:creator><![CDATA[rita.yin]]></dc:creator>
		<pubDate>Tue, 18 Dec 2012 02:02:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19400#comment-395202</guid>
		<description><![CDATA[I just do a test and found that value of SELECT SOUNDEX(&#039;Michael James&#039;) in SQL SERVER DB is M240, but why the value in ORACLE DB is M242]]></description>
		<content:encoded><![CDATA[<p>I just do a test and found that value of SELECT SOUNDEX(&#8216;Michael James&#8217;) in SQL SERVER DB is M240, but why the value in ORACLE DB is M242</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krishna</title>
		<link>http://blog.sqlauthority.com/2012/06/16/sql-server-simple-explanation-and-puzzle-with-soundex-function-and-difference-function/#comment-352365</link>
		<dc:creator><![CDATA[Krishna]]></dc:creator>
		<pubDate>Sun, 23 Sep 2012 19:55:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19400#comment-352365</guid>
		<description><![CDATA[Nice, your posts are very informative. Kudos to the your course on Pluralsight. Looking forward for more videos,posts and insights on database design patterns]]></description>
		<content:encoded><![CDATA[<p>Nice, your posts are very informative. Kudos to the your course on Pluralsight. Looking forward for more videos,posts and insights on database design patterns</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Filip Lejon</title>
		<link>http://blog.sqlauthority.com/2012/06/16/sql-server-simple-explanation-and-puzzle-with-soundex-function-and-difference-function/#comment-302701</link>
		<dc:creator><![CDATA[Filip Lejon]]></dc:creator>
		<pubDate>Mon, 18 Jun 2012 07:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19400#comment-302701</guid>
		<description><![CDATA[Like Kumar stated, I have the SOUNDEX() function running on a production website.  It is used in a public search function for people&#039;s names.  Works very well and was a breeze to implement once I knew of its existence.  Would have been a big hassle to implement otherwise.]]></description>
		<content:encoded><![CDATA[<p>Like Kumar stated, I have the SOUNDEX() function running on a production website.  It is used in a public search function for people&#8217;s names.  Works very well and was a breeze to implement once I knew of its existence.  Would have been a big hassle to implement otherwise.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kumar Harsh</title>
		<link>http://blog.sqlauthority.com/2012/06/16/sql-server-simple-explanation-and-puzzle-with-soundex-function-and-difference-function/#comment-302648</link>
		<dc:creator><![CDATA[Kumar Harsh]]></dc:creator>
		<pubDate>Mon, 18 Jun 2012 04:52:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19400#comment-302648</guid>
		<description><![CDATA[In my machine,value of SELECT SOUNDEX(&#039;SQLAuthority&#039;) SdxValue is S243 and rest are S436.WHy ?

I think we can use SOUNDEX and DIFFERENCE in search engine.There can be value in database which &quot;Like operator&quot; ignore,in that scenerio we can use SOUNDEX and DIFFERENCE.

For example, if i search &quot;Lebron Jams&quot; and the database has values &quot;Lebron James&quot;, &quot;Lebron Jim&quot;, &quot;Michael James&quot;, etc , the results that system returns should be ordered by similarity between strings, i.e, the results should be &quot;Lebron James&quot;, &quot;Lebron Jim&quot; and &quot;Michael James&quot;.

It is hard to implement this by using sql&#039;s &#039;like&#039;.]]></description>
		<content:encoded><![CDATA[<p>In my machine,value of SELECT SOUNDEX(&#8216;SQLAuthority&#8217;) SdxValue is S243 and rest are S436.WHy ?</p>
<p>I think we can use SOUNDEX and DIFFERENCE in search engine.There can be value in database which &#8220;Like operator&#8221; ignore,in that scenerio we can use SOUNDEX and DIFFERENCE.</p>
<p>For example, if i search &#8220;Lebron Jams&#8221; and the database has values &#8220;Lebron James&#8221;, &#8220;Lebron Jim&#8221;, &#8220;Michael James&#8221;, etc , the results that system returns should be ordered by similarity between strings, i.e, the results should be &#8220;Lebron James&#8221;, &#8220;Lebron Jim&#8221; and &#8220;Michael James&#8221;.</p>
<p>It is hard to implement this by using sql&#8217;s &#8216;like&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: allbookmark</title>
		<link>http://blog.sqlauthority.com/2012/06/16/sql-server-simple-explanation-and-puzzle-with-soundex-function-and-difference-function/#comment-302345</link>
		<dc:creator><![CDATA[allbookmark]]></dc:creator>
		<pubDate>Sun, 17 Jun 2012 10:21:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=19400#comment-302345</guid>
		<description><![CDATA[great job buddy nice post]]></description>
		<content:encoded><![CDATA[<p>great job buddy nice post</p>
]]></content:encoded>
	</item>
</channel>
</rss>
