Sql Server 2008 - Difference between collation types - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T05:05:17Zhttp://stackoverflow.com/feeds/question/531453http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/531453/sql-server-2008-difference-between-collation-types2Sql Server 2008 - Difference between collation typesOctadrone2009-02-10T08:16:22Z2009-09-23T10:47:08Z
<p>Hi,</p>
<p>I'm installing a new SQL Server 2008 server and are having some problems getting any usable information regarding different collations. I have searched SQL Server BOL and google'ed for an answer but can't seem to be able to find any usable information.</p>
<ol>
<li><p>What is the difference between the Windows Collation <code>"Finnish_Swedish_100"</code> and <code>"Finnish_Swedish"</code>?</p>
<p>I suppose that the <code>"_100"</code>-version is a updated collation in SQL Server 2008, but what things have changed from the older version if that is the case?</p></li>
<li><p>Is it usually a good thing to have <code>"Accent-sensitive"</code> enabled? I know that it depends on the task and all that, but is there any well-known pros and cons to consider?</p></li>
<li><p>The <code>"Binary"</code> and <code>"Binary-code point"</code> parameters, in which cases should theese be enabled?</p></li>
</ol>
http://stackoverflow.com/questions/531453/sql-server-2008-difference-between-collation-types/531499#5314991Answer by Dan Sydner for Sql Server 2008 - Difference between collation typesDan Sydner2009-02-10T08:38:12Z2009-02-10T08:38:12Z<p>To adress your question 1. Accent sensitive is a good thing to have enabled for Finnish-Swedish. Otherwise your "å"s and "ä"s will be sorted as "a"s and "ö"s as "o"s. (Assuming you will be using those kind of international characters).</p>
<p>More here: <a href="http://msdn.microsoft.com/en-us/library/ms143515.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms143515.aspx</a> (discusses both binary codepoint and accent sensitivity)</p>
http://stackoverflow.com/questions/531453/sql-server-2008-difference-between-collation-types/531513#5315130Answer by John Sansom for Sql Server 2008 - Difference between collation typesJohn Sansom2009-02-10T08:44:32Z2009-02-10T08:44:32Z<p>Hi,</p>
<p>To address qestion 2:</p>
<p>Yes, if accent's are required grammer for the given language.</p>
<p>Cheers,John</p>
http://stackoverflow.com/questions/531453/sql-server-2008-difference-between-collation-types/531539#5315391Answer by Miles D for Sql Server 2008 - Difference between collation typesMiles D2009-02-10T08:56:46Z2009-02-10T08:56:46Z<p>The _100 indicates a collation sequence new in SQL Server 2008, those with _90 are for 2005 and those with no suffix are 2000. I don't know what the differences are, and can't find any documentation. Unless you are doing linked server queries to another SQL server of a different version, I'd be tempted to go with the _100 one. Sorry I can't help with the differences.</p>
http://stackoverflow.com/questions/531453/sql-server-2008-difference-between-collation-types/531583#5315831Answer by Tomalak for Sql Server 2008 - Difference between collation typesTomalak2009-02-10T09:11:09Z2009-02-10T09:11:09Z<p>To address question 3 (info taken off the <a href="http://msdn.microsoft.com/en-us/library/ms143515.aspx" rel="nofollow">MSDN</a>; wording theirs, format mine):</p>
<p>Binary (<code>_BIN</code>):</p>
<ul>
<li>Sorts and compares data in SQL Server tables based on the bit patterns defined for each character. </li>
<li>Binary sort order is case-sensitive and accent-sensitive. </li>
<li>Binary is also the fastest sorting order.</li>
<li>If this option is not selected, SQL Server follows sorting and comparison rules as defined in dictionaries for the associated language or alphabet.</li>
</ul>
<p>Binary-code point (<code>_BIN2</code>):</p>
<ul>
<li>For Unicode data: Sorts and compares data in SQL Server tables based on Unicode code points.</li>
<li>For non-Unicode data: will use comparisons identical to binary sorts.</li>
</ul>
<p>The advantage of using a Binary-code point sort order is that no data resorting is
required in applications that compare sorted SQL Server data. As a result, a Binary-code point sort order provides simpler application development and possible performance increases. </p>
<p>For more information, see <a href="http://msdn.microsoft.com/en-us/library/ms143350.aspx" rel="nofollow">Guidelines for Using BIN and BIN2 Collations</a>.</p>
http://stackoverflow.com/questions/531453/sql-server-2008-difference-between-collation-types/532451#5324510Answer by devinb for Sql Server 2008 - Difference between collation typesdevinb2009-02-10T14:02:43Z2009-02-10T14:02:43Z<p>On Questions 2 and 3</p>
<p>Accent Sensitivity is something I would suggest turning OFF if you are accepting user data, and ON if you have clean, sanitized data.
Not being Finnish myself, I don't know how many words there are that are different depending on the ó ô õ or ö that they have in them. But if there are users entering data, you can be sure that they will NOT be consistent in their usage, and you want to be able to match them.
If you are gathering data from a dataset that you know the content of, and know the consistency of, then you will want to turn Accent Sensitivity ON because you know that the differences are purposeful.</p>
<p>The same questions apply when considering Question 3. (I'm mostly getting this from the link Tomalak provided) If the data is case and accent sensitive, then you want _BIN, because it will sort faster. If the data is irregular, and not case/accent sensitive, then you will want _BIN2, because it is designed for Unicode data. </p>
http://stackoverflow.com/questions/531453/sql-server-2008-difference-between-collation-types/633358#6333581Answer by Qingsong Yao for Sql Server 2008 - Difference between collation typesQingsong Yao2009-03-11T04:43:32Z2009-03-11T04:43:32Z<p>please view my blog at <a href="http://blogs.msdn.com/qingsongyao/" rel="nofollow">http://blogs.msdn.com/qingsongyao/</a>. Please send my comments and feedbacks if you have more question related to collation.</p>
http://stackoverflow.com/questions/531453/sql-server-2008-difference-between-collation-types/1465123#14651231Answer by Andreas for Sql Server 2008 - Difference between collation typesAndreas2009-09-23T10:12:35Z2009-09-23T10:12:35Z<p>The letters ÅÄÖ/åäö do not mix up with A and O just by setting the collation to AI (Accent Insensitive). That is however true for â and other "combinations" not part of the Swedish alphabet as individual letters. â will mix or not mix depending of the setting in question.</p>
<p>Since I have a lot of old databases I still need to communicate with, also using linked servers, I chose FINNISH _SWEDISH _CI _AS now that I'm installing SQL2008. That was the default setting for FINNISH _SWEDISH when the Windows collations first appeared in SQL Server.</p>
http://stackoverflow.com/questions/531453/sql-server-2008-difference-between-collation-types/1465218#14652181Answer by Blixt for Sql Server 2008 - Difference between collation typesBlixt2009-09-23T10:36:35Z2009-09-23T10:47:08Z<p>Use the query below to try it out yourself.</p>
<p>As you can see, å, ä, etc. do not count as accented characters, and are sorted according to the Swedish alphabet when using the Finnish/Swedish collation.</p>
<p>However, the accents are only considered if you use the <code>AS</code> collation. For the <code>AI</code> collation, their order is unchanged, as if there was no accent at all.</p>
<pre><code>CREATE TABLE #Test (
Number int identity,
Value nvarchar(20) NOT NULL
);
GO
INSERT INTO #Test VALUES ('àá');
INSERT INTO #Test VALUES ('áa');
INSERT INTO #Test VALUES ('aa');
INSERT INTO #Test VALUES ('aà');
INSERT INTO #Test VALUES ('áb');
INSERT INTO #Test VALUES ('ab');
-- w is considered an accented version of v
INSERT INTO #Test VALUES ('wa');
INSERT INTO #Test VALUES ('va');
INSERT INTO #Test VALUES ('zz');
INSERT INTO #Test VALUES ('åä');
GO
SELECT Number, Value FROM #Test ORDER BY Value COLLATE Finnish_Swedish_CI_AS;
SELECT Number, Value FROM #Test ORDER BY Value COLLATE Finnish_Swedish_CI_AI;
GO
DROP TABLE #Test;
GO
</code></pre>