0
votes
1answer
9 views
SQL Server: Code page translations are not supported for the text data type.
When inserting text into a TEXT column in SQL Server using ADO, i get the error:
Code page translations are not supported for the text data type. From: 1257 To: 1252.
Now it is true that i've …
0
votes
1answer
25 views
Picking the right SQL Server collation for storage
How does the collation impact SQL Server in terms of storage and how does this affect the Unicode and non-unicode data types?
Does the collation impact Unicode storage? or just govern sort rules …
0
votes
1answer
21 views
Case insensitivity for DB Collation - does it affect performance?
Earlier on while I was working on my databases, I wondered if using a case sensitive collation like utf8_bin would increase performance over case insensitive collaction like utf8_general_ci (examples …
1
vote
0answers
18 views
export and import users and database collation issue
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 userport component on joomla 1.5 and then went to mambo …
0
votes
1answer
23 views
fluent nhibernate collation conflict
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.
To resolve this issue i …
0
votes
1answer
34 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_general_ci NOT NULL
…
16
votes
3answers
283 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 can update the docs?
…
0
votes
1answer
191 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:
Casting the …
1
vote
2answers
67 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 converts them into normal …
0
votes
1answer
33 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
…
0
votes
2answers
175 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 not succeed:
SELECT …
0
votes
1answer
115 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 on multiple database …
0
votes
1answer
39 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 the query:
$query1 …
1
vote
1answer
131 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 want to have a Set …
1
vote
4answers
111 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 set up locale, like …
