Question

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

Was it helpful?

Solution

select distinct COLLATION_NAME from INFORMATION_SCHEMA.COLUMNS order by 1

OTHER TIPS

Use this query to list the available collation modes:

SELECT * FROM fn_helpcollations()

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top