tags:

views:

159

answers:

2

If I need to choose a collation mode to work with, how do I know what collations are available?

+2  A: 

Use this query to list the available collation modes:

SELECT * FROM fn_helpcollations()

Andrew Myhre
+1  A: 
select distinct COLLATION_NAME from INFORMATION_SCHEMA.COLUMNS order by 1
Constantin