SQL Server administration and T-SQL development, Web Programming with ASP.NET, HTML5 and Javascript, Windows Phone 8 app development, SAP Smartforms and ABAP Programming, Windows 7, Visual Studio and MS Office software
Development resources, articles, tutorials, code samples, tools and downloads for ASP.Net, SQL Server, Reporting Services, T-SQL, Windows, AWS, SAP HANA and ABAP


SQL Server fn_helpcollations() to List Collations


SQL developers can use sql fn_helpcollations() function to return list of all collations which are supported by Microsoft SQL Server 2005 database instance.
If sql developers run the below fn_helpcollations() sql statement, they will get the list of all collations supported by SQL Server.

select * from fn_helpcollations()
Code

The first column "Name" is the standard collation name and the second column is a description of the collation.
You can run the below sql statement to get the list of all collation which support Turkish.

SELECT
  name, description
FROM fn_helpcollations()
WHERE
  name like '%Turkish%'
Code

In SQL Server 2000 ::fn_helpcollations() function is the equivalent function of fn_helpcollations() for SQL Server 2005

SELECT
  name, description
FROM ::fn_helpcollations()
WHERE
  name like '%Turkish%'
Code


SQL Server

SQL Server 2019 Installation
download SQL Server 2019
download SQL Server 2017
download SQL Server 2016
download SQL Server 2014
download SQL Server 2012
MacOS ve SQL Server 2019


Copyright © 2004 - 2021 Eralper YILMAZ. All rights reserved.