How do I perform a case-sensitive search and replace in SQL 2000/2005? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T10:59:49Zhttp://stackoverflow.com/feeds/question/113901http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/113901/how-do-i-perform-a-case-sensitive-search-and-replace-in-sql-2000-20051How do I perform a case-sensitive search and replace in SQL 2000/2005?Andrew Myhre2008-09-22T09:02:10Z2008-10-24T01:29:28Z
<p>In order to perform a case-sensitive search/replace on a table in a SQL 2000/2005 database, you must use the correct collation.
How do you determine whether the default collation for a database is case-sensitive, and if it isn't, how to perform a case-sensitive search/replace?</p>
http://stackoverflow.com/questions/113901/how-do-i-perform-a-case-sensitive-search-and-replace-in-sql-2000-2005/113909#1139095Answer by blowdart for How do I perform a case-sensitive search and replace in SQL 2000/2005?blowdart2008-09-22T09:05:04Z2008-09-22T09:05:04Z<pre><code>SELECT testColumn FROM testTable
WHERE testColumn COLLATE Latin1_General_CS_AS = 'example'
SELECT testColumn FROM testTable
WHERE testColumn COLLATE Latin1_General_CS_AS = 'EXAMPLE'
SELECT testColumn FROM testTable
WHERE testColumn COLLATE Latin1_General_CS_AS = 'eXaMpLe'
</code></pre>
<p>Don't assume the default collation will be case sensitive, just specify a case sensitive one every time (using the correct one for your language of course)</p>
http://stackoverflow.com/questions/113901/how-do-i-perform-a-case-sensitive-search-and-replace-in-sql-2000-2005/113912#1139120Answer by Andrew Myhre for How do I perform a case-sensitive search and replace in SQL 2000/2005?Andrew Myhre2008-09-22T09:05:29Z2008-09-22T09:05:29Z<p>Determine whether the default collation is case-sensitive like this:</p>
<p>select charindex('If the result is 0 you are in a case-sensitive collation mode', 'RESULT')</p>
<p>A result of 0 indicates you are in a case-sensitive collation mode, 1 indicates it is case-insensitive.</p>
<p>If the collation is case-insensitive, you need to explicitly declare the collation mode you want to use when performing a search/replace.</p>
<p>Here's how to construct an UPDATE statement to perform a case-sensitive search/replace by specifying the collation mode to use:</p>
<p>update ContentTable
set ContentValue = replace(ContentValue COLLATE Latin1_General_BIN, 'THECONTENT', 'TheContent')
from StringResource
where charindex('THECONTENT', ContentValue COLLATE Latin1_General_BIN) > 0</p>
<p>This will match and replace 'THECONTENT', but not 'TheContent' or 'thecontent'.</p>
http://stackoverflow.com/questions/113901/how-do-i-perform-a-case-sensitive-search-and-replace-in-sql-2000-2005/113980#1139801Answer by radup for How do I perform a case-sensitive search and replace in SQL 2000/2005?radup2008-09-22T09:30:22Z2008-09-22T09:30:22Z<p>Hi,</p>
<p>First of all check this:
<a href="http://technet.microsoft.com/en-us/library/ms180175" rel="nofollow">http://technet.microsoft.com/en-us/library/ms180175</a>(SQL.90).aspx</p>
<p>You will see that CI specifies case-insensitive and CS specifies case-sensitive.</p>
http://stackoverflow.com/questions/113901/how-do-i-perform-a-case-sensitive-search-and-replace-in-sql-2000-2005/114053#1140531Answer by radup for How do I perform a case-sensitive search and replace in SQL 2000/2005?radup2008-09-22T09:53:33Z2008-09-22T09:53:33Z<p>Also, this might be usefull.
select * from fn_helpcollations() - this gets all the collations your server supports.
select * from sys.databases - here there is a column that specifies what collation has every database on your server.</p>
http://stackoverflow.com/questions/113901/how-do-i-perform-a-case-sensitive-search-and-replace-in-sql-2000-2005/232203#2322030Answer by Nathan for How do I perform a case-sensitive search and replace in SQL 2000/2005?Nathan2008-10-24T01:29:28Z2008-10-24T01:29:28Z<p>You can either specify the collation every time you query the table or you can apply the collation to the column(s) permanently by altering the table.</p>
<p>If you do choose to do the query method its beneficial to include the case insensitive search arguments as well. You will see that SQL will choose a more efficient exec plan if you include them. For example:</p>
<pre><code>SELECT testColumn FROM testTable
WHERE testColumn COLLATE Latin1_General_CS_AS = 'eXaMpLe'
and testColumn = 'eXaMpLe'
</code></pre>