active questions tagged collation - Stack Overflow
most recent 30 from stackoverflow.com
2009-12-19T19:34:26Z
http://stackoverflow.com/feeds/tag/collation
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/1677258/what-is-perls-standard-string-comparison-order
16
What is Perl's "standard string comparison order"?
brian d foy
2009-11-04T22:55:46Z
2009-12-15T21:25:29Z
<p>This is really a double question, my two end goals having answers to:</p>
<ul>
<li>What is the standard string comparison order, in terms of the mechanics?</li>
<li>What's a better name for that so I can update the docs?</li>
</ul>
<p>Perl's documentation for <a href="http://perldoc.perl.org/functions/sort.html" rel="nofollow">sort</a> says that without a block, <code>sort</code> uses "standard string comparison order". But what is that order? There should be a better name for it. For this question, I specifically mean the situation where <a href="http://perldoc.perl.org/perllocale.html" rel="nofollow">locale</a> is not in effect, since that defines its own order.</p>
<p>In years past, we normally called the standard sort order "ASCIIbetically". It's in <a href="http://oreilly.com/catalog/9780596001322/" rel="nofollow">Learning Perl</a> and many other books. However, that term is dated. Perl has been Unicode-aware since 5.6. Talking about ASCII is old school. Since Perl is also Unicode-aware, it knows about character strings. In <em>sv.c</em>, <code>Perl_sv_cmp</code> knows about <code>locale</code>, <code>bytes</code>, and UTF-8. The first two are easy. But I'm not confident about the third.</p>
<pre><code>/*
=for apidoc sv_cmp
Compares the strings in two SVs. Returns -1, 0, or 1 indicating whether the
string in C<sv1> is less than, equal to, or greater than the string in
C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
coerce its args to strings if necessary. See also C<sv_cmp_locale>.
=cut
*/
</code></pre>
<p>When Perl sorts using UTF-8, what is it really sorting? The bytes the string encodes to, the characters it represents (including marks maybe?), or something else? I think this is the relevant line in <em>sv.c</em> (line 6698 for commit 7844ec1):</p>
<pre><code> pv1 = tpv = (char*)bytes_to_utf8((const U8*)pv1, &cur1);
</code></pre>
<p>If I'm reading that right (using my rusty C), <code>pv1</code> is coerced to octets, turned into UTF-8, then coerced to characters (in the C sense). I think that means it's sorting by the UTF-8 encoding (i.e. the actual bytes that UTF-8 uses to represent a code point). Another way to say that is that it doesn't sort on graphemes. I think I've almost convinced myself I'm reading this right, but some of you know way more about this than I do.</p>
<p>From that, the next interesting line is 6708:</p>
<pre><code> const I32 retval = memcmp((const void*)pv1, (const void*)pv2, cur1 < cur2 ? cur1 : cur2);
</code></pre>
<p>To me that looks like once it has <code>pv1</code> and <code>pv2</code>, which were coerced to <code>char *</code>, now are just compared byte-by-byte because they are coerced to <code>void *</code>. Is that what happens with <code>memcmp</code>, which looks like it's just comparing bits based on the various docs I've read so far? Again, I'm wondering what I'm missing in the trip from bytes->utf8->char->bytes, like maybe a Unicode normalization step. Checking out <code>Perl_bytes_to_utf8</code> in <em>utf8.c</em> didn't help me answer that question.</p>
<p>As a side note, I'm wondering if this is the same thing as the <a href="http://unicode.org/reports/tr10/" rel="nofollow">Unicode Collation Algorithm</a>? If it is, why does <a href="http://search.cpan.org/dist/Unicode-Collate" rel="nofollow">Unicode::Collate</a> exist? From the looks of it, I don't think Perl's <code>sort</code> handles canonical equivalence.</p>
http://stackoverflow.com/questions/1910146/sql-server-code-page-translations-are-not-supported-for-the-text-data-type
0
SQL Server: Code page translations are not supported for the text data type.
Ian Boyd
2009-12-15T20:25:02Z
2009-12-15T20:27:26Z
<p>When inserting text into a TEXT column in SQL Server using ADO, i get the error:</p>
<blockquote>
<p>Code page translations are not supported for the text data type. From: 1257 To: 1252.</p>
</blockquote>
<p>Now it is true that i've changed my Windows code page to 1257 (Estonian).</p>
<p>My question is: How does SQL Server know what code page i'm running in?</p>
<p>All strings sent to and from the server are sent as wide (unicode) strings. At the server, SQL Server is then forced to stuff the unicode string into a <strong>TEXT</strong> (not NTEXT) column. The text column is set to use collation code page <strong>1252</strong>.</p>
<p>There are no characters in the source string that are outside of the Windows 1252 code page. Even if there were, how does SQL Server know i'm running code page <strong>1257</strong>?</p>
<p>i've tried profiling my connection to SQL Server, and i see nothing that looks like the client identifying its code page with the server.</p>
http://stackoverflow.com/questions/836169/varchar-collation-versus-varbinary-ordering-in-sql-server-2000
0
VARCHAR collation versus VARBINARY ordering in SQL Server 2000
Larry Sellers
2009-05-07T18:07:46Z
2009-12-15T11:00:03Z
<p>I need to do some in-memory merging in C# of two sorted streams of strings coming from one or more SQL Server 2000 databases into a single sorted stream. These streams of data can be huge, so I don't want to pull both streams into memory. Instead, I need to keep one item at a time from each stream in memory and at each step, compare the current item from each stream, push the minimum onto the final stream, and pull the next item from the appropriate source stream. To do this correctly, though, the in-memory comparison has to match the collation of the database (consider the streams <code>[A,B,C]</code> and <code>[A,B,C]</code>: the correct merged sequence is <code>[A,A,B,B,C,C]</code>, but if your in-memory comparison thinks <code>C < B</code>, your in-memory merge will yield <code>A,A,B</code>, at which point it will be looking at a <code>B</code> and a <code>C</code>, and will yield the <code>C</code>, resulting in an incorrectly sorted stream.)</p>
<p>So, my question is: is there any way to mimic any of the collations in SQL Server 2000 with a <code>System.StringComparison</code> enum in C# or vise-versa? The closest I've come is to use <code>System.StringCompaison.Ordinal</code> with the results of the database strings converted to <code>VARBINARY</code> with the standard <code>VARBINARY</code> ordering, which works, but I'd rather just add an <code>"order by name collate X"</code> clause to my SQL queries, where X is some collation that works exactly like the <code>VARBINARY</code> ordering, rather than converting all strings to <code>VARBINARY</code> as they leave the database and then back to strings as they come in memory.</p>
http://stackoverflow.com/questions/1764618/fluent-nhibernate-collation-conflict
0
fluent nhibernate collation conflict
unknown (google)
2009-11-19T16:30:06Z
2009-12-10T16:27:49Z
<p>hi, really struggling to resolve this issue. using nhibernate Im trying to join two different tables from two different databases but im getting a collation conflict error.</p>
<p>To resolve this issue i know i need to append "collate Latin1_General_CI_AS" to the end of my sql string but have no idea how to do it using nhibernate.</p>
<p>Error:</p>
<pre><code>Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the equal to operation.
</code></pre>
<p>have looked for solutions for some time without any real joy. I get the feeling that it will be a simple configuration change. I thought that maybe i could override some string function within IQuery to append "collate Latin1_General_CI_AS" to the end of the sql but couldnt find anything obvious.</p>
<p>the sql that nhibernate fails on fails in ms sql 2005 management studio but runs and returns a result if i append the collate.</p>
<p>any help would be greatly recieved.</p>
<p>much love c</p>
http://stackoverflow.com/questions/1826085/picking-the-right-sql-server-collation-for-storage
0
Picking the right SQL Server collation for storage
John Leidegren
2009-12-01T13:05:03Z
2009-12-01T13:12:12Z
<p>How does the collation impact SQL Server in terms of storage and how does this affect the Unicode and non-unicode data types?</p>
<ul>
<li><p>Does the collation impact Unicode storage? or just govern sort rules within the database?</p></li>
<li><p>When I use the non-unicode data types what restictions are tied to the collation?</p></li>
<li><p>If restrictions apply, what happens when I try to store a character not in database collation of a non-unicode data type?</p></li>
</ul>
<p>My understanding is that the Unicode data type can always store the full set of Unicode data while the non-unicode data types storage capabilties depend on the code page (which is defined by the collation) and can only represent a number of common characters in that collation.</p>
<p>Obviously each character in an Unicode data type would at least occupy 2 bytes while the non-unicode data types occupy 1 byte per character (or does this vary with collation as well?)</p>
<p>Set me straight here, how does this work exactly?</p>
http://stackoverflow.com/questions/1823955/case-insensitivity-for-db-collation-does-it-affect-performance
0
Case insensitivity for DB Collation - does it affect performance?
thephpdeveloper
2009-12-01T04:14:00Z
2009-12-01T04:26:36Z
<p>Earlier on while I was working on my databases, I wondered if using a case sensitive collation like <code>utf8_bin</code> would increase performance over case insensitive collaction like <code>utf8_general_ci</code> (examples are from MySQL).</p>
<p>Does anyone have any comment on this? What about databases other than MySQL?</p>
http://stackoverflow.com/questions/611459/how-to-sort-text-in-sqlite3-with-specified-locale
5
How to sort text in sqlite3 with specified locale?
klew
2009-03-04T16:50:51Z
2009-11-26T13:24:13Z
<p>Sqlite3 by default sorts only by ascii letters. I tried to look in google, but the only thing I found were informations about collations. Sqlite3 has only NOCASE, RTRIM and BIARY collations. How to add support for a specific locale?
(I'm using it in Rails application)</p>
http://stackoverflow.com/questions/1363772/rake-dbcreate-collation-issues
-1
rake db:create - collation issues
Pie
2009-09-01T17:54:39Z
2009-11-26T10:22:04Z
<pre><code>kratos-iii:railsproj zachinglis$ rake db:create
(in /Users/zachinglis/Sites/rails/railsproj)
Couldn't create database for {"adapter"=>"mysql", "host"=>"localhost", "username"=>"root", "password"=>nil, "database"=>"railsproj_development"}, charset: utf8, collation: utf8_general_ci (if you set the charset manually, make sure you have a matching collation)
</code></pre>
<p>I had no issues using Sequel Pro and even creating said database. </p>
<p>How do I resolve this?
Having an empty password never gave me issues before. And I really doubt thats it.</p>
http://stackoverflow.com/questions/1784376/export-and-import-users-and-database-collation-issue
1
export and import users and database collation issue
Ali
2009-11-23T16:42:24Z
2009-11-23T18:54:03Z
<p>Hi ,
I have mambo 4.6.5 on my source site and joomla 1.5 on destination site. I'm going to move users from first one to second. so I install <a href="http://extensions.joomla.org/extensions/migration-a-conversion/users-import-a-export/5430" rel="nofollow"><strong>userport component</strong></a> on joomla 1.5 and then went to mambo database and select my users with this Query :</p>
<pre><code>SELECT name, username, email, password FROM mos_users
</code></pre>
<p>and export them to a CSV file which is all "userport" needs.
some of user's name are Persian and UTF-8 . as you see in below some of texts are disassemble due to UTF-8 unicode while they have shown correctly in Backend and frontend section of mambo.
<img src="http://i.imagehost.org/0422/2%5F5.jpg" alt="mambo Database">
(mambo database)</p>
<p>The problems is here :
when i import my users in joomla 1.5 via userport, the texts that seems disassemble in database (<strong><em>But shows correctly in mambo simultaneity !</em></strong>) ; are as when shows in mambo database and remain ill in joomla administrator :
<img src="http://i.imagehost.org/0675/1%5F34.jpg" alt="joomla Administrator">
(joomla Administrator)</p>
<p>What's the solution?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1732999/collate-information-missing-when-converting-a-mysql-table-from-latin1-to-utf8
0
Collate information missing when converting a MySQL table from Latin1 to UTF8
Spoonface
2009-11-14T02:13:39Z
2009-11-14T11:59:44Z
<p>I'm converting an existing table such as this:</p>
<pre><code>CREATE TABLE `example`(`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`column1` char(32) COLLATE latin1_general_ci NOT NULL
DEFAULT '',
`column2` char(64) COLLATE latin1_general_ci NOT NULL
DEFAULT '',
PRIMARY KEY (`id`))
ENGINE=MyISAM AUTO_INCREMENT=1
DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
</code></pre>
<p>to utf8 using the following command:</p>
<pre><code>ALTER TABLE example CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
</code></pre>
<p>This seems to work ok, but the resulting table doesn't include any collation information:</p>
<pre><code>CREATE TABLE `example` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`column1` char(32) NOT NULL DEFAULT '',
`column2` char(64) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
</code></pre>
<p>So my question is, would the missing collate information be a problem? I searched google but couldn't find mention of this anywhere. My understanding of the collate flag is pretty basic ( it matters in some way when comparing the characters in string functions I think?)</p>
<p>thanks</p>
http://stackoverflow.com/questions/845321/join-column-with-different-collation-issue
0
Join column with different collation issue
George2
2009-05-10T13:17:12Z
2009-11-09T08:00:10Z
<p>Hello everyone,</p>
<p>I am using SQL Server 2005. I have two tables, and they are using different collations. It is not allowed to concatenate columns from tables with different collations, for example the following SQL is not allowed,</p>
<pre><code>select table1column1 + table2column2 from ...
</code></pre>
<p>My question is, why concatenation of two columns from different collations is not allowed from database engine design perspective? I do not know why collation will impact results, the result is just concatenating strings -- should be simple enough and not dependent on collation...</p>
<p>thanks in advance,
George</p>
http://stackoverflow.com/questions/1384424/collation-problem-with-oracle-linked-to-sql-server
1
Collation problem with Oracle linked to SQL Server
a programmer
2009-09-05T22:38:51Z
2009-11-02T12:30:34Z
<p>Hello everyone,</p>
<p>On SQL Server 2000 there is a linked server to an Oracle 9.2 server. I am able to select from the remote tables, but all not latin (Greek) characters, return incorrect.</p>
<p>I tried specifying a collation on the SQL Server, but nothing changed.</p>
http://stackoverflow.com/questions/1628957/allow-special-characters-sql-server-2008
1
Allow special characters SQL Server 2008
Rahul
2009-10-27T05:48:03Z
2009-10-27T18:12:35Z
<p>I am using SQL Server 2008 express edition and its collation settings are set to default.I wish to store special characeters like á ,â ,ã ,å ,ā ,ă ,ą ,ǻ in my database but it converts them into normal characters like 'a'. How can I stop SQL Server from doing so?</p>
http://stackoverflow.com/questions/1631936/cast-collation-of-nvarchar-variables-in-t-sql
0
Cast collation of nvarchar variables in t-sql
Sandor Davidhazi
2009-10-27T16:12:41Z
2009-10-27T16:14:56Z
<p>I need to change the collation of an nvarchar variable. <a href="http://msdn.microsoft.com/en-us/library/ms184391.aspx" rel="nofollow">By documentation</a>:</p>
<blockquote>
<p>(...)
3. The COLLATE clause can be specified
at several levels. These include the
following:</p>
<p>Casting the collation of an
expression. You can use the COLLATE
clause to apply a character expression
to a certain collation. Character
literals and variables are assigned
the default collation of the current
database. Column references are
assigned the definition collation of
the column. For the collation of an
expression, see <a href="http://doc.ddart.net/mssql/sql2000/html/tsqlref/ts%5Fda-db%5F7ory.htm" rel="nofollow">Collation Precedence</a>
(Transact-SQL).</p>
</blockquote>
<p>However I can't figure out the correct syntax for the usage of CAST(), CONVERT() or variable declaration with DECLARE for this purpose.</p>
http://stackoverflow.com/questions/1598328/collation-conflict-for-equal-to-operation-sql-server-2000
0
COLLATION Conflict For Equal To Operation Sql Server 2000
boon
2009-10-21T01:46:25Z
2009-10-21T16:07:40Z
<p>I have a collation conflict in a stored procedure I am trying to run to send it live... it has been explained here</p>
<p><a href="http://stackoverflow.com/questions/1519544/sql-server-2000-dts-cannot-resolve-collation-conflict-for-equal-to-operation">http://stackoverflow.com/questions/1519544/sql-server-2000-dts-cannot-resolve-collation-conflict-for-equal-to-operation</a></p>
<p>Is there a way to fix the issue without writing the COLLATE database_default next to every problem equals comparison and do some sort of global command or setting? Or maybe there are some options when generating the scripts to have the collation tags pre done?</p>
http://stackoverflow.com/questions/1589023/sql-server-impact-of-column-collation-on-t-sql-instructions
0
SQL Server: impact of column collation on T-SQL instructions
Philippe Grondier
2009-10-19T14:34:30Z
2009-10-19T15:46:54Z
<p>I discovered(*) today that, depending on the server, my TSQL commands were case-sensitive, meaning that, when one table's column is named <code>tableId</code>, the following instruction might not succeed:</p>
<pre><code>SELECT TableId FROM myTable
</code></pre>
<p>Depending on the column's collation. <code>SQL_Latin1_blablabla</code> seems not to be case-sensitive, when <code>Latin1_blablabla</code> is.</p>
<p>So my first question is WHY!!!</p>
<p>And the second one is: what is the quickest trick (sp?) to change all collations for all concerned columns in the database? </p>
<p>EDIT: to make things very clear:</p>
<pre><code>SELECT tableId FROM myTable
</code></pre>
<p>Work on all servers while</p>
<pre><code>SELECT TableId FROM myTable
</code></pre>
<p>Works only on the server with the <code>SQL_Latin_blablabla</code> collation. Notice the difference between the 2 strings. We are not talking here about data collation, but about the impact of this collation on the way we write code!</p>
<p>(*) I could use here some additional and specific word to qualify my state of mind after this 'discovery', but all of them are adult-rated ... </p>
http://stackoverflow.com/questions/1552639/hibernate-case-insensitive-utf-8-unicode-collation-that-works-on-multiple-dbms
0
Hibernate case-insensitive utf-8/unicode collation that works on multiple DBMS
yuku
2009-10-12T04:02:50Z
2009-10-12T16:11:32Z
<p>I'm looking for Hibernate annotation or .hbm.xml that allows me to specify a table column as case-insensitive string working in unicode/utf-8/locale-independent manner that works on multiple database engines.</p>
<p>Is there any such thing?</p>
<p>So that I can do query using <code>Restrictions.eq("column_name", "search_string")</code> efficiently.</p>
http://stackoverflow.com/questions/1526109/sort-string-collection-in-python-using-various-locale-settings
1
Sort string collection in Python using various locale settings
Jiri
2009-10-06T14:54:05Z
2009-10-10T04:32:15Z
<p>I want to sort list of strings with respect to user language preference. I have a multilanguage Python webapp and what is the correct way to sort strings such way?</p>
<p>I know I can set up locale, like this:</p>
<pre><code>import locale
locale.setlocale(locale.LC_ALL, '')
</code></pre>
<p>But this should be done on application start (and doc says it is not thread-safe!), is it good idea to set it up in every thread according to current user (request) setting?</p>
<p>I would like something like function locale.strcoll(...) with additional parameter - language that is used for sorting.</p>
http://stackoverflow.com/questions/1531107/use-mysql-collation-in-java
1
Use MySQL collation in Java
sfussenegger
2009-10-07T11:41:21Z
2009-10-08T06:17:58Z
<h2>Short Version</h2>
<p>I'm currently looking into an issue with MySQL collations and how they affect a Set of values (which is mapped using Hibernate, but that shouldn't matter for now). I want to have a Set of Strings using the same collation as MySQL uses. E.g. I want "foobar" and "fööbar" considered equal but "foo bar" and "foobar" considered different. Using default <em><a href="http://java.sun.com/javase/6/docs/api/java/text/Collator.html#getInstance%28%29" rel="nofollow">Collator.getInstance()</a></em> (with <em><a href="http://java.sun.com/javase/6/docs/api/java/text/Collator.html#PRIMARY" rel="nofollow">Collator.PRIMARY</a></em> strength) doesn't work reliably, as there are still differences (most notably whitespaces). So how to get a Collator that behaves equally as MySQL for each and every possible String?</p>
<h2>Long Version</h2>
<p>I want to have a unique index on the table where I store the Set's values and make sure the Set only holds values that are allowed in the DB and vice-versa.</p>
<p>Table looks like this:</p>
<pre><code>CREATE TABLE `MY_SET` (
`entity_id` int NOT NULL,
`value` varchar(255) NOT NULL,
UNIQUE `entity-value`(`entity_id`, `value`)
) ENGINE = InnoDB DEFAULT CHARSET=latin1 DEFAULT COLLATION=;
</code></pre>
<p>Now, if I use plain Strings and a HashSet to hold my values, e.g. as in</p>
<pre><code>public class MyValues {
private MyEntity _myEntity;
private final HashSet<String> _values = new HashSet<String>();
}
</code></pre>
<p>It would be possible to add both, "foobar" and "fööbar" to the set of values. Now if Hibernate flushes the Set to the DB, MySQL will complain about "foobar" and "fööbar" beeing duplicates for the defined 'entity-value' key. Therefore, I thought I wrap the Strings and use a <a href="http://java.sun.com/javase/6/docs/api/java/text/Collator.html" rel="nofollow">Collator</a> to check strings for equality:</p>
<pre><code>public class MyValues {
private MyEntity _entity;
private final HashSet<CollatedString> _values = new HashSet<CollatedString>();
}
public static class CollatedString {
private String _string;
private CollationKey _key;
public String getString() {
return _string;
}
public void setString(final String string) {
_string = string;
_key = getCollator().getCollationKey(_string);
}
@Override
public int hashCode() {
return _key.hashCode();
}
@Override
public boolean equals(final Object obj) {
if (!(obj instanceof CollatedString)) {
return false;
}
return _key.equals(((CollatedString) obj)._key);
}
}
</code></pre>
<p>This works well for "foobar" and "fööbar":</p>
<pre><code>final MyEntity e = new MyEntity();
final MyValues v = new MyValues();
v.setEntity(e);
v.getValues().add(new CollatedString("foobar"));
v.getValues().add(new CollatedString("fööbar"));
System.out.println("1 == " + v.getValues().size()); // prints 1 == 1
</code></pre>
<p>But doesn't work for "foo bar" and "foobar" which MySQL considers different:</p>
<pre><code>v.getValues().add(new CollatedString("foobar"));
v.getValues().add(new CollatedString("foo bar"));
System.out.println("2 == " + v.getValues().size()); // prints 2 == 1 (which is wrong)
</code></pre>
<p>Do basically what's left to do is implement the <em>getCollator()</em> method:</p>
<pre><code>public static final Collator getCollator() {
// FIXME please help!
}
</code></pre>
<p>Full code for the sample is available: <a href="http://pastebin.com/ma2da8a8" rel="nofollow">Download</a></p>
http://stackoverflow.com/questions/1535200/problem-saving-to-mysql-database-php-mysqli
0
problem saving to mysql database php mysqli
Yaniv
2009-10-08T01:49:56Z
2009-10-08T02:00:49Z
<p>Hi all
i'm trying to save data to database and i get an error i never saw before
i have a hunch it has something to do with the db collation but I'm not sure whats wrong,</p>
<p>here is the query:</p>
<pre><code>$query1 = "INSERT INTO scape.url (url,normalizedurl,service,idinservice) VALUES (url, normalizedurl, 4, 45454)";
$query = "INSERT INTO scape.url (url, normalizedurl, service, idinservice) VALUES ("
.$sql->real_escape_string($this->url).","
.$sql->real_escape_string($this->normalizedUrl).","
.$sql->real_escape_string($this->service).","
.$sql->real_escape_string($this->idInService).")";
$result = $sql->query($query);
echo $sql->error;
</code></pre>
<p>the error massage i get is :</p>
<p>You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '://www.something/here/here/here/12345,httpwwwsomthighere' at line 1</p>
<p>database collation for this fields is utf8-general-ci and field type is varchar 255</p>
<p>any ideas on that?</p>
http://stackoverflow.com/questions/1379603/does-icu-handle-the-collation-of-a-list-of-strings-of-varying-languages
1
Does ICU handle the collation of a list of strings of varying languages?
Thomas
2009-09-04T14:26:41Z
2009-10-07T17:43:28Z
<p>My application may have strings comprised of different alphabets / languages in a single list. I can't seem to find any information on what the correct method for sorting these should be or any indication that ICU supports this functionality.</p>
<p>Example List:</p>
<ul>
<li>Apple </li>
<li>яблоко </li>
<li>μήλο </li>
<li>Baby</li>
<li>βρέφος</li>
<li>ребенок</li>
</ul>
http://stackoverflow.com/questions/1516259/croatian-diacritic-signs-in-mysql-db-utf-8
0
Croatian diacritic signs in MySQL db (utf-8)
ile
2009-10-04T12:13:43Z
2009-10-04T19:35:23Z
<p><img src="http://img98.imageshack.us/img98/3383/dijakritickiznakovi.gif" alt="Diacritic signs" /></p>
<p>So, symbols belows display title should be displayed that way.<br>
UTF-8 entities are listed below HTML (utf-8) title (here is list: <a href="http://webdesign.maratz.com/lab/utf%5Ftable" rel="nofollow">LINK</a>)<br>
And last line shows what is stored in my database.<br>
Collation of db table is <code>utf8_unicode_ci</code>.<br>
I suppose that symbols in db shouldn't be as they are in my case?
They are displaying correctly on page when loaded from database, but they all of them are not displayed by utf-8 table from given link. Even if I see them correctly maybe someone other won't?</p>
http://stackoverflow.com/questions/1491892/collation-conversion-normal
0
collation conversion normal?
shantanuo
2009-09-29T11:04:45Z
2009-09-29T11:58:32Z
<p>Hi,
The following explain extended let me know that MySQL is internally doing a lot of collation conversion like latin1 and _utf8.</p>
<pre><code>(`mydb`.`node`.`status` = _latin1'1') and (`mydb`.`node`.`type` = _utf8'usernode')
and (`mydb`.`node`.`uid` = `mydb`.`users`.`uid`)
and (`mydb`.`usernode_list`.`uid` = _latin1'65484')
</code></pre>
<p>Is it normal? Will this slow down the query?</p>
http://stackoverflow.com/questions/1241856/illegal-mix-of-collations-error-in-mysql
0
Illegal mix of collations error in MySql
Oliver
2009-08-06T22:21:14Z
2009-09-29T10:01:24Z
<p>Just got this answer from a previous question and it works a treat!</p>
<pre><code>SELECT username, (SUM(rating)/COUNT(*)) as TheAverage, Count(*) as TheCount
FROM ratings WHERE month='Aug' GROUP BY username HAVING TheCount > 4
ORDER BY TheAverage DESC, TheCount DESC
</code></pre>
<p>But when I stick this extra bit in it gives this error:</p>
<blockquote>
<p>Documentation #1267 - Illegal mix of
collations
(latin1_swedish_ci,IMPLICIT) and
(latin1_general_ci,IMPLICIT) for
operation '='</p>
</blockquote>
<pre><code>SELECT username, (SUM(rating)/COUNT(*)) as TheAverage, Count(*) as TheCount FROM
ratings WHERE month='Aug'
**AND username IN (SELECT username FROM users WHERE gender =1)**
GROUP BY username HAVING TheCount > 4 ORDER BY TheAverage DESC, TheCount DESC
</code></pre>
<p>The table is:</p>
<p>id, username, rating, month</p>
<p>Cheers</p>
http://stackoverflow.com/questions/531453/sql-server-2008-difference-between-collation-types
2
Sql Server 2008 - Difference between collation types
Octadrone
2009-02-10T08:16:22Z
2009-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/1460336/collation-conflict-in-stored-procedure-while-assigning-a-variable
0
Collation conflict in stored procedure while assigning a variable
iar
2009-09-22T14:11:49Z
2009-09-22T14:50:50Z
<p>We are trying to create a stored procedure, however we run into the following error message:</p>
<pre><code>Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the equal to operation.
</code></pre>
<p>This error occurs at line 33, which reads as follows:</p>
<pre><code>SET @MINTIME = (SELECT CONVERT(varchar,DATEADD(MONTH,-1,GETDATE()),112));
</code></pre>
<p>Does anyone know how to resolve this issue?</p>
http://stackoverflow.com/questions/485428/mysql-internationalization-with-dcm4chee
1
MySQL internationalization with DCM4CHEE
Jon
2009-01-27T21:45:08Z
2009-09-20T15:00:04Z
<p>I'm attempting to internationalize dcm4chee (a Java based open source medical imaging storage with system) with MySQL, and have a number of questions.</p>
<p>Here's what I know so far
1. I need to change the character set from latin1 to utf8 (to support all the international characters) in the MySQL
2. I'm pretty sure I want to set the collation to utf8_unicode_ci</p>
<p>Here's what I need to know
1. How/when should I do these things?
a. Can these changes be made to existing tables?
b. If so how do I do it?
c. Do these changes need to be made only once for the entire life of the database?
d. Will changes made affect only future entries or all entries?
2. How do I change the default for future installs of dcm4chee to use utf8?
3. From my research it appears that changing the character set and collations to use a wide enough character set (utf8) is all I need to do to internationalize MySQL. Is this true? If not, what else do I have to do?</p>
<p>Thanks, any help with this will be greatly appreciated</p>
http://stackoverflow.com/questions/1450841/mysql-colation-for-all-languages
1
Mysql colation for all languages
Narven
2009-09-20T11:40:29Z
2009-09-20T12:08:09Z
<p>Hi,</p>
<p>I'm currently developing a website that is gonna show stuff for almost any language in the world. And im having problems choosing the best collation to define in the mysql.</p>
<p>Wich one is the best to support all characters??? Or the most accurate???</p>
<p>Or is just best to convert all characters to unicode?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1440837/mysql-convert-latin1-data-to-utf8
0
MySQL Convert latin1 data to UTF8
Kibbee
2009-09-17T19:20:01Z
2009-09-18T12:54:45Z
<p>I imported some data using LOAD DATA INFILE into a MySQL Database. The table itself and the columns are using the UTF8 character set, but the default character set of the database is latin 1. Because the default character type of the database is latin1, and I used LOAD DATA INFILE without specifying a character set, it interpreted the file as latin1, even though the data in the file was UTF8. Now I have a bunch of badly encoded data in my UTF8 colum. I found <a href="http://www.mysqlperformanceblog.com/2007/12/18/fixing-column-encoding-mess-in-mysql/" rel="nofollow">this article</a> which seems to address a similar problem, which is "UTF8 inserted in cp1251", but my problem is "Latin1 inserted in UTF8". I've tried editing the queries there to convert the latin1 data to UTF8, but can't get it to work. Either the data comes out the same, or even more mangled than before. Just as an example, the word Québec is showing as Québec.</p>
<p>[ADDITIONAL INFO]</p>
<p>When Selecting the data wrapped in HEX(), Québec has the value 5175C383C2A9626563.</p>
<p>The Create Table (shortened) of this table is.</p>
<pre><code>CREATE TABLE MyDBName.`MyTableName`
(
`ID` INT NOT NULL AUTO_INCREMENT,
.......
`City` CHAR(32) NULL,
.......
`)) ENGINE InnoDB CHARACTER SET utf8;
</code></pre>
http://stackoverflow.com/questions/1443346/what-is-collationdatabase-collationconnection-collationserver-used-for-in-my
0
what is collation_database, collation_connection, collation_server used for in mysql?
MemoryLeak
2009-09-18T09:00:46Z
2009-09-18T09:38:35Z
<p>Illegal mix of collations (big5_chinese_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation 'like'</p>
<p>sometimes this error will be throw, what's up ?
what's the collation_* used for ?
Can someone give me a example to show how the character is encoded and transited and selected relate to collation_*?</p>