How do I determine the collation of a database in SQL 2005? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T05:33:44Zhttp://stackoverflow.com/feeds/question/113883http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/113883/how-do-i-determine-the-collation-of-a-database-in-sql-20050How do I determine the collation of a database in SQL 2005?Andrew Myhre2008-09-22T08:57:03Z2008-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#1138851Answer by Andrew Myhre for How do I determine the collation of a database in SQL 2005?Andrew Myhre2008-09-22T08:57:43Z2008-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#1562910Answer by Cade Roux for How do I determine the collation of a database in SQL 2005?Cade Roux2008-10-01T04:55:20Z2008-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#1645241Answer by mbrierst for How do I determine the collation of a database in SQL 2005?mbrierst2008-10-02T20:49:14Z2008-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>