16
votes
3answers
168 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
34 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:
…
1
vote
2answers
38 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
2answers
87 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 …
0
votes
1answer
24 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
63 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
104 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
342 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" …
1
vote
4answers
79 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 …
0
votes
1answer
23 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
1answer
90 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
61 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
80 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
44 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 …
0
votes
1answer
78 views
PostgreSQL utf8 character comparison
I am changing from MySQL to PostgreSQL but can't find equivalent to MySQL's collation utf8_general_ci. What I'm trying to achieve here is to be able to compare strings using genera …
