Tagged: Collations

Listing All Collations Supported in SQL Server

Hello everyone. In this article, I will try to give information about listing all collations supported in SQL Server. In SQL Server you may want to list all supported collations in some cases. You can easily do this using the query below. SELECT name, COLLATIONPROPERTY(name, ‘CodePage’) AS Code_Page, description FROM...

Don`t copy text!