Collation refers to a set of rules that determine how data is sorted and compared. Character data is sorted using rules that define the correct character sequence, with options for specifying case-sensitivity, accent marks, kana character types and character width.
-2
votes
3answers
51 views
Is converting everything to varbinary the correct way to compare character data?
I was using a MIN function to compare character data in a column that allowed nulls, with disastrous results. ;-) Here's a much simplified example that shows the same kind of thing:
Determine the ...
1
vote
1answer
31 views
utf8_general_ci: which characters are equal?
Where do I find a list of character sets that are equal in the WHERE clause?
Background: The list of characters may be used to solve a problem mentioned in another question.
(Also interesting, but ...
0
votes
2answers
26 views
COLLATION 'utf8_general_ci' is not valid for CHARACTER SET 'binary'?
mysql> SELECT LOCATE("n", "München") COLLATE utf8_general_ci;
ERROR 1253 (42000): COLLATION 'utf8_general_ci' is not valid for CHARACTER SET 'binary'
How do I get rid of this error?
What I ...
0
votes
2answers
37 views
How to amend sub strings?
Using collation xxx_german2_ci which treats ü and ue as identical, is it possible to have all occurences of München be highlighted as follows?
Example input: "München can also be written as ...
1
vote
1answer
33 views
Are some string comparisons not character by character?
With collation utf8_general_ci, MySQL considers Munchen and München to be the same, because with that collation u and ü are considered identical.
Are there any collations where character sequences of ...
1
vote
1answer
30 views
Alter column without changing collation
We're experiencing difficulties in managing different customer databases:
We need to alter a primary key column from VARCHAR(20) to VARCHAR(40) without altering the collation. The reason behind this ...
1
vote
1answer
35 views
How to store and get exact characters in mysql db?
Content with special characters e.g. ' " - when stored are replace into characters like these �. But not all instances of the characters are changed to characters like these �. So it is a little odd ...
1
vote
2answers
17 views
SQL-Server is ignoring my COLLATION when I'm using LIKE operator
I'm working with Spanish database so when I'm looking for and "aeiou" I can also get "áéíóú" or "AEIOU" or "ÁÉÍÓÚ", in a where clause like this:
SELECT * FROM myTable WHERE stringData like '%perez%'
...
0
votes
2answers
22 views
Alphabetical ordering of a utf8_bin table with Codeigniter
I store a table in MySQL with collation utf8_bin. I want to select all names ordered alphabetically using Codeigniter's active record tools but the code below sorts all words starting by a capital ...
0
votes
1answer
10 views
Can't find the correct collation/charset for my form
I've setup a simple bootstrap page to insert rows in my db, but I can't get the db to save in the right format/charset.
I want it to support multiple languages since I'm saving beer names from ...
0
votes
1answer
15 views
The database is case sensitive in unique constraints but not in select
I have a SQL Server 2008 R2 Express and in the installation wizard I select the collation Modern_Spanish_CS_AS.
When I create a new database if I go to the properties of the database, I can see that ...
2
votes
1answer
26 views
MySQL - What's utf8_general_mysql500_ci?
I just saw that MySQL 5.5 offers utf8_general_mysql500_ci as collation.
What is the difference to other collations like utf8_general_ci?
Should I better use utf8_general_mysql500_ci?
0
votes
1answer
35 views
how can I change the collation of a data base?
I have installed SQL Server 2008 Express R2 and in the istallation wizard I selected the Modern_Spabish_CS_AS collation because I want all the databases in the server are case sesitive.
However, when ...
0
votes
0answers
14 views
Java: Sorting multiple languages
I am using a Java application, and I have a requirement where I have to sort the app names from Android Store. As the app names are in different language, I don't have the specific locale on which I ...
0
votes
1answer
35 views
why is not case sensitive if I have a collation that is set as CS?
I have installed SQL Server Express 2008 R2 and in the installation I set the collation to Modern_Spanish_CS_AS.
In SQL Server Management Studio I can see that the server has this collation and my ...
6
votes
2answers
73 views
Java collation ignores space
I became recently aware, that Java Collation seems to ignore spaces.
I have a list of the following terms:
Amman Jost
Ammann Heinrich
Ammanner Josef
Bär Walter
Bare Werner
Barr Burt
Barraud ...
0
votes
1answer
18 views
Query DB2 using collation
Is it possible to perform a query in DB2 and specify a collation to use?
In SQL Server it's fairly common to do
SELECT Column1
FROM Table1
WHERE Column1 COLLATE Latin1_General_CS_AS = 'casesearch'
...
0
votes
1answer
21 views
Why can't I use a specific collation in MySQL?
I have a table with the character set latin1 (checked by show variables like "character_set_database";) and a default collation of latin1_swedish_ci (checked by SHOW TABLE STATUS;).
I'd like to run a ...
0
votes
1answer
22 views
SQL collation issue
I have a php code which parse XML files and store the parsed information in my database(MySQL) on my Linux server.
all my tables collation is 'utf8_unicode_ci' even my database collation is ...
0
votes
1answer
20 views
Control compilation order in Rcpp
In R, using Rcpp to access C++ code, without putting all of the C++ code on a single file, how can I control the order which the files are used when compilation takes place.
Lets say I have 2 ...
0
votes
0answers
21 views
BulkCopy and Collation from two Databases
I have two different databases, one has SQL_Latin1_General_CP1_CI_AS Collation and the other Modern_Spanish_CI_AS,
I obtain the data from de source
Select [DATA1] collate database_default as ...
0
votes
1answer
35 views
which datatype, size and collation should use to store hash SHA-512 64-bit words into MYSQL database
I am writing a simple tool to check duplicate files(i.e. files having same data). I generate hashes for each file using sha-512 algorithm. I am using MYSQL database for storing hashes.
My question ...
0
votes
2answers
34 views
sql server collation for multi lingual data
I am working with sql server 2012 and its the back end for an asp.net mvc multi lingual application.
I have set the collation on the database that powers the front end to ...
0
votes
1answer
52 views
Mysql error 1267 in batch-file
I have a batch like this:
mysql.exe -h -u -p data_base < D:\data_base.dat
In this data_base.bat i have a query. This query creates a table, like this:
CREATE TABLE table_name(
select *
from a
...
2
votes
1answer
49 views
Is there any way to have PostgreSQL not collapse punctuation and spaces when collating using a language?
From what I understand, PostgreSQL delegates collation to the strcoll() function of underlying operating system, and apparently most (if not all) Linux installations take advantage of the fact that ...
0
votes
0answers
13 views
MySQL Collation error: function vs table
I have a trigger (using user defined functions) on a table.
The Database default collation is utf8_general. To my mind, this means that all triggers, functions and tables should operate using this ...
0
votes
1answer
36 views
SSIS - Imported string fields from Oracle are converted into wrong/bad charaters
Using SQL Server Integration Services (SSIS) I am migration a table from Oracle (11g) to SQL Server 2008 R2. The table's fields are int, string (data type Unicode strings [DT_WSTR]) and blob type ...
0
votes
2answers
35 views
Case-sensitive SQL differentiate between upper and lower case
I'm trying to have a request with a case sensitive result.
For example in my database I have
ABCdef
abcDEF
abcdef
The request is
SELECT * FROM table WHERE col = 'abcdef'
but I have my 3 rows as ...
0
votes
0answers
22 views
Why does setting the default character set and collate not affect the character_* and collation_* variables?
If I run this statement against my database, it seems there is no effect on the character_set_database and colloation_database variables:
ALTER DATABASE `my-database`
DEFAULT CHARACTER SET utf8
...
0
votes
0answers
34 views
Collation in MySQL - Which one to use?
I have a website that deals with characters written in Spanish, French, German, English and Catalan language. I run the website using Drupal and MySQL 5.5.
I want to use a collation on my table ...
0
votes
1answer
51 views
give parameters in sql expression in NHibernate
I want to use collation in a query in NHibernate and apparently the only way to do that (at least from what I found) is through adding an sql expression (Can I customize collation of query results in ...
3
votes
1answer
85 views
Delphi 5, how to retrieve data from MySQL's tis620 fields?
I have a web application written in PHP which using MySQL as database back-end.
To store my language(Thai) data, I'm using tis620 charset on my database tables, this setting is great for my web ...
1
vote
2answers
15 views
meaing of maxlen in INFORMATION_SCHEMA CHARACTER_SETS Table of MySQL
From mysql official website:
http://dev.mysql.com/doc/refman/5.0/en/character-sets-table.html
YOu will see this table definition.
Can anybody here tell what does 'maxlen' mean? max length of bytes ...
0
votes
0answers
73 views
Crystal Reports 4.6 - Getting report with Unicode Character Encoding
I have a stable vb project that had developed with vb 6. I need to add new Crystal Reports. CR generates the report without unicode characters. So how can i fix that problem.
Things that I tried :
...
0
votes
0answers
66 views
Correctly distinguish UTF-8 email addresses in MySQL
What is the proper proper MySQL collation for storing email addresses?
I understand that email addresses can be UTF-8.
However, if I want to compare the input email with the email in database, how ...
3
votes
2answers
57 views
Why is = different from LIKE when using utf8_unicode_ci index?
I have a database table with column name defined as VARCHAR(255) COLLATE utf8_unicode_ci with a unique index. It contains the name "Grosse".
The following statement returns no rows:
SELECT name ...
0
votes
1answer
60 views
utf8_bin vs. utf8_general_ci. which collation will provide faster performance in mysql table?
I use 'id' field - char(22) as a primary key for MySQL table.
this field is used only to filter unique ids when adding new users to the table.
for me it's not important whether to use utf8_bin or ...
5
votes
2answers
59 views
SQL Server changed my strings before running the query
I try to select some special records contain special characters but SQL Server changes my string characters before it running the query.
For example:
DECLARE @param NVARCHAR(30)
SET ...
0
votes
2answers
20 views
Charset database
Im having the following charset problem.
Through a form user add name info (chars like åäö is common) - so far no problem
Mysqli adds the name to database - so far no problem
In the database chars ...
2
votes
1answer
38 views
Can´t create mysql collation including different alphabets
I am trying to create a mysql collation with which you can search with transcriptions for cyrillic letters.
Here an example: If I send the sql command
SELECT "w"="в" COLLATE utf8_myowncollation_ci
...
0
votes
2answers
130 views
Alter collation of SQL Server Compact 4.0
Is it somehow possible to change collation of a .sdf-file? I have tried Management Studio 2008 but it only supports version 3.5, Management Studio 2012 does not support SQL Server Compact at all as ...
1
vote
2answers
68 views
sql search for substring using LIKE vs locate()
I'm trying to write a query to find a string that contains a substring. What's the difference between the following two methods?
SELECT * FROM table WHERE names LIKE '%bob%'
SELECT * FROM table ...
1
vote
3answers
109 views
Storing swedish characters in mysql database
I'm having problems storing Swedish characters in my MySQL database. I want to store them in my table called users with the collation utf8-bin. Even though I'm using utf8, the characters å ä ö gets ...
0
votes
1answer
34 views
Prepare unique values for utf_unicode_ci in php
I need to read values from an ISO-8859-1 encoded file in PHP and use PDO to write them to a database table that's encoded utf8_unicode_ci and has a unique index. Sometimes the data is missing special ...
1
vote
1answer
28 views
mysql - illegal mix of collations with nested selects
I have a MySQL query, with a few nested selects. the as below:
my inner query, returns two columns:
` MIN( PreQuery.updatetime ) as InTime`
`MAX( PreQuery.updatetime ) as OutTime`
...
6
votes
1answer
145 views
Querying SQL Server from PHP
I've been searching this topic, but haven´t found any solution; there was a similar question, but it is not solved: Working with characters with accents in sql query and table name
I'm working with a ...
0
votes
1answer
190 views
Understand Unicode and code pages in SQL Server collations
Why all SQL Server 2008 R2 collations are associated to a code page. Are all collations unicode ?
How to choose a collation when our database is used by several languages using differents code pages ...
0
votes
0answers
20 views
Changing character set in MySQL and its impact
I've some tables with utf8_general_ci collation and some are with latin1_swedish_ci, collation of the database is latin1_swedish_ci.
From this post I came to know that all above mentioned collation ...
0
votes
0answers
100 views
How do you override the database collation in a query when using Sybase?
For example when using a SQL server database that has a default collation of case insensitive I can override that collation in a query to get a case sensitive comparison like so:
SELECT *
FROM ...
1
vote
0answers
150 views
Codeigniter / linux / mssql 2005 - no local chars (diarcritic marks)
I'm having a problem setting up codeigniter connection to mssql 2005 database on the linux. I managed to establish connection, but the data returned/parsed by the Codeigniter functions is missing all ...




