How do I perform a case-sensitive search and replace in SQL 2000/2005? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T10:59:49Z http://stackoverflow.com/feeds/question/113901 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/113901/how-do-i-perform-a-case-sensitive-search-and-replace-in-sql-2000-2005 1 How do I perform a case-sensitive search and replace in SQL 2000/2005? Andrew Myhre 2008-09-22T09:02:10Z 2008-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#113909 5 Answer by blowdart for How do I perform a case-sensitive search and replace in SQL 2000/2005? blowdart 2008-09-22T09:05:04Z 2008-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#113912 0 Answer by Andrew Myhre for How do I perform a case-sensitive search and replace in SQL 2000/2005? Andrew Myhre 2008-09-22T09:05:29Z 2008-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#113980 1 Answer by radup for How do I perform a case-sensitive search and replace in SQL 2000/2005? radup 2008-09-22T09:30:22Z 2008-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#114053 1 Answer by radup for How do I perform a case-sensitive search and replace in SQL 2000/2005? radup 2008-09-22T09:53:33Z 2008-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#232203 0 Answer by Nathan for How do I perform a case-sensitive search and replace in SQL 2000/2005? Nathan 2008-10-24T01:29:28Z 2008-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>