up vote 1 down vote favorite
share [g+] share [fb]

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

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted
select distinct COLLATION_NAME from INFORMATION_SCHEMA.COLUMNS order by 1
link|improve this answer
feedback

Use this query to list the available collation modes:

SELECT * FROM fn_helpcollations()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.