Skip to content

Instantly share code, notes, and snippets.

@yorek
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yorek/bf9761d0f3b2d3332fc6 to your computer and use it in GitHub Desktop.
Save yorek/bf9761d0f3b2d3332fc6 to your computer and use it in GitHub Desktop.
Show the list of supported collations in SQL Server
SELECT
[name]
, [CodePage] = COLLATIONPROPERTY([name], 'CodePage')
, [LCID] = COLLATIONPROPERTY([name], 'LCID')
, [ComparisonStyle] = COLLATIONPROPERTY([name], 'ComparisonStyle')
, [Version] = COLLATIONPROPERTY([name], 'Version')
, [description]
FROM
::fn_helpcollations();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment