vote up 1 vote down star

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

flag

2 Answers

vote up 1 vote down check
select distinct COLLATION_NAME from INFORMATION_SCHEMA.COLUMNS order by 1
link|flag
vote up 1 vote down

Use this query to list the available collation modes:

SELECT * FROM fn_helpcollations()

link|flag

Your Answer

Get an OpenID
or

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