<?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/"
	
	>
<channel>
	<title>
	Comments on: Using SQL Execution Plans to discover the Swedish alphabet	</title>
	<atom:link href="https://lobsterpot.com.au/blog/2011/01/03/using-sql-execution-plans-to-discover-the-swedish-alphabet/feed/" rel="self" type="application/rss+xml" />
	<link>https://lobsterpot.com.au/blog/2011/01/03/using-sql-execution-plans-to-discover-the-swedish-alphabet/</link>
	<description></description>
	<lastBuildDate>Tue, 11 Jan 2011 12:43:40 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: Adde		</title>
		<link>https://lobsterpot.com.au/blog/2011/01/03/using-sql-execution-plans-to-discover-the-swedish-alphabet/#comment-1507</link>

		<dc:creator><![CDATA[Adde]]></dc:creator>
		<pubDate>Tue, 11 Jan 2011 12:43:40 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.lobsterpot.com.au/?p=2843#comment-1507</guid>

					<description><![CDATA[W is a very rare letter in swedish, I honestly can&#039;t think of any words (apart from names and imported foreign words) that contain W.
The alphabet they teach the kids in school these days doesn&#039;t even contain W and I&#039;m pretty sure our phonebooks and dictionaries treat V and W as the same letter orderwise.]]></description>
			<content:encoded><![CDATA[<p>W is a very rare letter in swedish, I honestly can&#8217;t think of any words (apart from names and imported foreign words) that contain W.<br />
The alphabet they teach the kids in school these days doesn&#8217;t even contain W and I&#8217;m pretty sure our phonebooks and dictionaries treat V and W as the same letter orderwise.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: KDF9		</title>
		<link>https://lobsterpot.com.au/blog/2011/01/03/using-sql-execution-plans-to-discover-the-swedish-alphabet/#comment-1506</link>

		<dc:creator><![CDATA[KDF9]]></dc:creator>
		<pubDate>Mon, 10 Jan 2011 02:36:50 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.lobsterpot.com.au/?p=2843#comment-1506</guid>

					<description><![CDATA[Running SET SHOWPLAN_TEXT ON; GO; SET NOEXEC OFF; GO; SELECT col FROM dbo.collation_test where col like &#039;V%&#039;; in Management Studio Express 9 gives the same results.
But with default SQL_Latin1_General_CP1_CI_AS collation, the lower bound is strangely different, and the second LIKE is needed because the seek has a &#062;=&#254;, hex FE, where &#062;hex FF would be expected:
SEEK:([MyDatabase].[dbo].[collation_test].[col] &#062;= &#039;&#220;&#254;&#039; AND [MyDatabase].[dbo].[collation_test].[col] &#060; &#039;W&#039;), 
WHERE:([MyDatabase].[dbo].[collation_test].[col] like &#039;V%&#039;) ORDERED FORWARD)]]></description>
			<content:encoded><![CDATA[<p>Running SET SHOWPLAN_TEXT ON; GO; SET NOEXEC OFF; GO; SELECT col FROM dbo.collation_test where col like &#8216;V%&#8217;; in Management Studio Express 9 gives the same results.<br />
But with default SQL_Latin1_General_CP1_CI_AS collation, the lower bound is strangely different, and the second LIKE is needed because the seek has a &gt;=&#254;, hex FE, where &gt;hex FF would be expected:<br />
SEEK:([MyDatabase].[dbo].[collation_test].[col] &gt;= &#8216;&#220;&#254;&#8217; AND [MyDatabase].[dbo].[collation_test].[col] &lt; &#8216;W&#8217;),<br />
WHERE:([MyDatabase].[dbo].[collation_test].[col] like &#8216;V%&#8217;) ORDERED FORWARD)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: kendra little		</title>
		<link>https://lobsterpot.com.au/blog/2011/01/03/using-sql-execution-plans-to-discover-the-swedish-alphabet/#comment-1505</link>

		<dc:creator><![CDATA[kendra little]]></dc:creator>
		<pubDate>Wed, 05 Jan 2011 23:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.lobsterpot.com.au/?p=2843#comment-1505</guid>

					<description><![CDATA[SQL Server isn&#039;t the only thing that&#039;s remarkable.
I&#039;m not sure if this is a masterpiece, if I just learned something, or if I should be a little bit afraid.]]></description>
			<content:encoded><![CDATA[<p>SQL Server isn&#8217;t the only thing that&#8217;s remarkable.<br />
I&#8217;m not sure if this is a masterpiece, if I just learned something, or if I should be a little bit afraid.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rob Farley		</title>
		<link>https://lobsterpot.com.au/blog/2011/01/03/using-sql-execution-plans-to-discover-the-swedish-alphabet/#comment-1504</link>

		<dc:creator><![CDATA[Rob Farley]]></dc:creator>
		<pubDate>Mon, 03 Jan 2011 14:58:43 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.lobsterpot.com.au/?p=2843#comment-1504</guid>

					<description><![CDATA[It&#039;s been pointed out that W is missing in my list. Wikipedia says: &#034;Until recently the letter ‹w› was treated as a variant form of ‹v› at least for sorting purposes, and this practice is still commonly encountered.&#034;
So I guess this explains why the EndRange value following V is X.
Rob]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been pointed out that W is missing in my list. Wikipedia says: &quot;Until recently the letter ‹w› was treated as a variant form of ‹v› at least for sorting purposes, and this practice is still commonly encountered.&quot;<br />
So I guess this explains why the EndRange value following V is X.<br />
Rob</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Simon		</title>
		<link>https://lobsterpot.com.au/blog/2011/01/03/using-sql-execution-plans-to-discover-the-swedish-alphabet/#comment-1503</link>

		<dc:creator><![CDATA[Simon]]></dc:creator>
		<pubDate>Mon, 03 Jan 2011 14:39:14 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.lobsterpot.com.au/?p=2843#comment-1503</guid>

					<description><![CDATA[What happened to W?]]></description>
			<content:encoded><![CDATA[<p>What happened to W?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
