0
votes
1answer
13 views
Collate information missing when converting a MySQL table from Latin1 to UTF8
I'm converting an existing table such as this:
CREATE TABLE `example`(`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`column1` char(32) COLLATE latin1_gene …
16
votes
3answers
206 views
What is Perl’s “standard string comparison order”?
This is really a double question, my two end goals having answers to:
What is the standard string comparison order, in terms of the mechanics?
What's a better name for that so I …
0
votes
1answer
96 views
Cast collation of nvarchar variables in t-sql
I need to change the collation of an nvarchar variable. By documentation:
(...)
3. The COLLATE clause can be specified
at several levels. These include the
following:
…
0
votes
2answers
136 views
SQL Server: impact of column collation on T-SQL instructions
I discovered(*) today that, depending on the server, my TSQL commands were case-sensitive, meaning that, when one table's column is named tableId, the following instruction might n …
1
vote
2answers
47 views
Allow special characters SQL Server 2008
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 conve …
0
votes
1answer
29 views
COLLATION Conflict For Equal To Operation Sql Server 2000
I have a collation conflict in a stored procedure I am trying to run to send it live... it has been explained here
http://stackoverflow.com/questions/1519544/sql-server-2000-dts-c …
0
votes
1answer
82 views
Hibernate case-insensitive utf-8/unicode collation that works on multiple DBMS
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 o …
1
vote
1answer
115 views
Use MySQL collation in Java
Short Version
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 …
-1
votes
3answers
394 views
rake db:create - collation issues
kratos-iii:railsproj zachinglis$ rake db:create
(in /Users/zachinglis/Sites/rails/railsproj)
Couldn't create database for {"adapter"=>"mysql", "host"=>"localhost", "username" …
0
votes
1answer
31 views
problem saving to mysql database php mysqli
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,
here is …
1
vote
4answers
89 views
Sort string collection in Python using various locale settings
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?
I know I can s …
1
vote
0answers
107 views
Collation problem with Oracle linked to SQL Server
Hello everyone,
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 incor …
0
votes
3answers
77 views
Croatian diacritic signs in MySQL db (utf-8)
So, symbols belows display title should be displayed that way.
UTF-8 entities are listed below HTML (utf-8) title (here is list: LINK)
And last line shows what is stored in my da …
0
votes
1answer
96 views
what is collation_database, collation_connection, collation_server used for in mysql?
Illegal mix of collations (big5_chinese_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation 'like'
sometimes this error will be throw, what's up ?
what's the collation_* us …
1
vote
3answers
52 views
Does ICU handle the collation of a list of strings of varying languages?
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 sho …
