How do I determine the collation of a database in SQL 2005? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:33:44Z http://stackoverflow.com/feeds/question/113883 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/113883/how-do-i-determine-the-collation-of-a-database-in-sql-2005 0 How do I determine the collation of a database in SQL 2005? Andrew Myhre 2008-09-22T08:57:03Z 2008-10-02T20:49:14Z <p>How do you determine the collation of a database in SQL 2005, for instance if you need to perform a case-insensitive search/replace?</p> http://stackoverflow.com/questions/113883/how-do-i-determine-the-collation-of-a-database-in-sql-2005/113885#113885 1 Answer by Andrew Myhre for How do I determine the collation of a database in SQL 2005? Andrew Myhre 2008-09-22T08:57:43Z 2008-09-22T08:57:43Z <p>Use the following SQL to determine the collation of a database:</p> <p>SELECT DATABASEPROPERTYEX('{database name}', 'Collation') SQLCollation;</p> http://stackoverflow.com/questions/113883/how-do-i-determine-the-collation-of-a-database-in-sql-2005/156291#156291 0 Answer by Cade Roux for How do I determine the collation of a database in SQL 2005? Cade Roux 2008-10-01T04:55:20Z 2008-10-01T04:55:20Z <p>Remember, that individual columns can override the database collation:</p> <pre><code>SELECT TABLE_NAME, COLUMN_NAME, COLLATION_NAME FROM INFORMATION_SCHEMA.COLUMNS </code></pre> http://stackoverflow.com/questions/113883/how-do-i-determine-the-collation-of-a-database-in-sql-2005/164524#164524 1 Answer by mbrierst for How do I determine the collation of a database in SQL 2005? mbrierst 2008-10-02T20:49:14Z 2008-10-02T20:49:14Z <p>If you want to do a case-insensitive search and can't rely on the database's collation, you could always specifically request it for the query you're interested in. For instance:<br> <code> SELECT TOP 1 FName, *<br> FROM People<br> WHERE FName LIKE '%mich%' COLLATE Latin1_General_CI_AI<br> </code></p> <p>I usually have the opposite problem, where I want the case sensitivity but don't have it in the database's collation, so I find myself using the Latin1_General_BIN collation quite a bit in my queries. If you don't already know, you can do:<br> <code> SELECT *<br> FROM ::fn_helpcollations()<br> </code> for a list of the available collations and descriptions of what they're for.</p>