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
2008-09-22 09:07:17
+1
A:
select distinct COLLATION_NAME from INFORMATION_SCHEMA.COLUMNS order by 1
Constantin
2008-09-23 00:30:52