How to determine which codepage a particular collation uses on SQL Server?
The COLLATIONPROPERTY function can be used to get a code page. Here is the code page for all possible mappings:
COLLATIONPROPERTY
SELECT [Name], [Description], [CodePage] = COLLATIONPROPERTY([Name], 'CodePage') FROM ::fn_helpcollations()
Source: https://habr.com/ru/post/1400262/More articles:Inexplicable results after using ind2sub in matlab - debuggingWhy am I not getting a segmentation error with this code? (Bus Error) - c ++How to make threads with loops work simultaneously with Thread.yield ()? - javaJavascript: replace all instances that appear between multiple sets of brackets - javascriptC # console application is still in memory after exiting - Asynchronous web service - c #Alternative alternative to database databases MATLAB - databaseHow to get -webkit-transition-duration property with jQuery? - javascriptHibernate - Out of memory inserting a large block - javaIs it possible to set a foreign key constraint on data in XML? - xmlPHP sqrt () returns NAN - phpAll Articles