How do I find out what collations are available in SQL 2000/2005 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:32:48Z http://stackoverflow.com/feeds/question/113916 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/113916/how-do-i-find-out-what-collations-are-available-in-sql-2000-2005 1 How do I find out what collations are available in SQL 2000/2005 Andrew Myhre 2008-09-22T09:07:05Z 2008-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#113917 1 Answer by Andrew Myhre for How do I find out what collations are available in SQL 2000/2005 Andrew Myhre 2008-09-22T09:07:17Z 2008-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#118419 1 Answer by Constantin for How do I find out what collations are available in SQL 2000/2005 Constantin 2008-09-23T00:30:52Z 2008-09-23T00:30:52Z <pre><code>select distinct COLLATION_NAME from INFORMATION_SCHEMA.COLUMNS order by 1 </code></pre>