<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-7447887.post113298038617766856..comments</id><updated>2009-11-24T11:48:41.709+11:00</updated><title type='text'>Comments on Craig Bailey on Microsoft: SQL: Compare case in WHERE clause</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blog.craigbailey.net/feeds/113298038617766856/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7447887/113298038617766856/comments/default'/><link rel='alternate' type='text/html' href='http://blog.craigbailey.net/2005/11/sql-compare-case-in-where-clause.html'/><author><name>Craig Bailey</name><uri>http://www.blogger.com/profile/06661435684035973875</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7447887.post-113595296670594609</id><published>2005-12-31T01:29:26.706+11:00</published><updated>2005-12-31T01:29:26.706+11:00</updated><title type='text'>I just came across this after posting about this s...</title><content type='html'>I just came across this after posting about this same thing last week on my blog.  Interesting alternatives.....&lt;BR/&gt;&lt;BR/&gt;http://randyjean.blogspot.com/2005/12/how-to-force-sql-server-query-to-be.html</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7447887/113298038617766856/comments/default/113595296670594609'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7447887/113298038617766856/comments/default/113595296670594609'/><link rel='alternate' type='text/html' href='http://blog.craigbailey.net/2005/11/sql-compare-case-in-where-clause.html?showComment=1135952966706#c113595296670594609' title=''/><author><name>Randy Jean</name><uri>http://www.blogger.com/profile/09615727409347309685</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.craigbailey.net/2005/11/sql-compare-case-in-where-clause.html' ref='tag:blogger.com,1999:blog-7447887.post-113298038617766856' source='http://www.blogger.com/feeds/7447887/posts/default/113298038617766856' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-7447887.post-113404066832297029</id><published>2005-12-08T22:17:48.323+11:00</published><updated>2005-12-08T22:17:48.323+11:00</updated><title type='text'>Or, you could just use a case sensitive collation,...</title><content type='html'>Or, you could just use a case sensitive collation, and then you &lt;B&gt;may&lt;/B&gt; be able to continue to use your indexes (not in the axample below admittedly).&lt;BR/&gt;&lt;BR/&gt;e.g.&lt;BR/&gt;USE Northwind&lt;BR/&gt;&lt;BR/&gt;SELECT CustomerID, CompanyName, ContactName, ContactTitle, City&lt;BR/&gt; FROM customers (NOLOCK)&lt;BR/&gt; WHERE UPPER(LEFT(CompanyName,4)) = LEFT(CompanyName,4) COLLATE Latin1_General_cs_ai&lt;BR/&gt;&lt;BR/&gt;Course, that assumes you're using SQL 2000. It won't work on SQL 7.&lt;BR/&gt;&lt;BR/&gt;Owl.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7447887/113298038617766856/comments/default/113404066832297029'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7447887/113298038617766856/comments/default/113404066832297029'/><link rel='alternate' type='text/html' href='http://blog.craigbailey.net/2005/11/sql-compare-case-in-where-clause.html?showComment=1134040668323#c113404066832297029' title=''/><author><name>One who listens</name><uri>http://www.blogger.com/profile/11198242018742545776</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.craigbailey.net/2005/11/sql-compare-case-in-where-clause.html' ref='tag:blogger.com,1999:blog-7447887.post-113298038617766856' source='http://www.blogger.com/feeds/7447887/posts/default/113298038617766856' type='text/html'/></entry></feed>