How do I find out what collations are available in SQL 2000/2005 - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T18:32:48Zhttp://stackoverflow.com/feeds/question/113916http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/113916/how-do-i-find-out-what-collations-are-available-in-sql-2000-20051How do I find out what collations are available in SQL 2000/2005Andrew Myhre2008-09-22T09:07:05Z2008-09-23T00:30:52Z
<p>If I need to choose a collation mode to work with, how do I know what collations are available?</p>
http://stackoverflow.com/questions/113916/how-do-i-find-out-what-collations-are-available-in-sql-2000-2005/113917#1139171Answer by Andrew Myhre for How do I find out what collations are available in SQL 2000/2005Andrew Myhre2008-09-22T09:07:17Z2008-09-22T09:07:17Z<p>Use this query to list the available collation modes:</p>
<p>SELECT *
FROM fn_helpcollations()</p>
http://stackoverflow.com/questions/113916/how-do-i-find-out-what-collations-are-available-in-sql-2000-2005/118419#1184191Answer by Constantin for How do I find out what collations are available in SQL 2000/2005Constantin2008-09-23T00:30:52Z2008-09-23T00:30:52Z<pre><code>select distinct COLLATION_NAME from INFORMATION_SCHEMA.COLUMNS order by 1
</code></pre>