collate Questions
14
Solved
I imported a database with some data to compare with another database.
The target database has collation Latin1_General_CI_AS and the source database has SQL_Latin1_General_CP1_CI_AS.
I did change ...
Joline asked 8/8, 2013 at 9:44
4
Solved
I am having a Turkish Character problem in ASP.NET and SQL Server. I have searchbox in asp.net and trying to do a search in database. However, I am having problems in Turkish characters. When I sea...
Mansard asked 27/3, 2013 at 20:37
2
I have a postgresql 9.1 database table, "en_US.UTF-8":
CREATE TABLE branch_language
(
id serial NOT NULL,
name_language character varying(128) NOT NULL,
branch_id integer NOT NULL,
language_id...
Invercargill asked 17/10, 2011 at 14:25
5
I'd like to be able to do queries that normalize accented characters, so that for example:
é, è, and ê
are all treated as 'e', in queries using '=' and 'like'. I have a row with username field s...
Wylen asked 20/2, 2010 at 16:24
5
Solved
When creating my SQLite database in Android I set the database locale - db.setLocale(new Locale("cz_CZ")). This is a Czech locale.
A SELECT statement works and takes the locale into account, for e...
1
Solved
I tryed to fix a problem with encodings. So, I sent from 'Postman', from web browser request to server, where I search data in database by keys in request. Request can be like this:
http://localho...
Radman asked 18/11, 2018 at 11:0
2
Solved
I´m trying to join two tables but I get this error:
Msg 468, Level 16, State 9, Line 8 Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and
"Latin1_General_CI_AS" in...
Prospect asked 2/9, 2016 at 21:30
2
Solved
I have a temporary table which gets data inserted using bulk insert. However, when I want to update data from temp table to a normal table it gives collation problems. I know how to solve this by u...
Belvabelvedere asked 6/5, 2014 at 20:9
3
Solved
I'm trying to find records that contain a string of 6 or more alpha-numeric characters in uppercase. Some examples:
PENDING 3RDPARTY CODE27
I'm using the following statement:
SELECT Details
FRO...
Superfetation asked 26/2, 2013 at 0:30
1
Solved
I've been looking at a query that looks for non-ASCII characters, reproduced below…
select line,
patindex('%[^ !-~]%' COLLATE Latin1_General_BIN, Line) as [Position],
substring(Line, patindex('%[...
Scammon asked 4/12, 2015 at 20:15
3
Solved
I was trying to concatonate 2 columns with a whitespace in between and got a collation error:
SELECT DISTINCT
p.PERSON_ID,
p.ID_NUMBER,
CONCAT(p.FULLNAMES, CONCAT(' ', p.SURNAME)) AS NAME,
o.O...
Dwightdwindle asked 15/5, 2014 at 8:33
3
Solved
All I want to do is grab the stuff in alphabetical order and ignore the capital letters.
db.rawQuery("SELECT " + catName + " FROM "+tableName+" ORDER BY "+catName+" ASC COLLATE NOCASE;", nul...
Howey asked 11/5, 2011 at 0:49
2
Solved
I am using Django on Bluehost. I created a form for user generated input, but unicode inputs from this form fails to be stored or displayed of characters. So I did a SO and google search that I sho...
1
Solved
I have the following in my PHP query:
SELECT tags.tag, theValues.*
FROM ch09.tbl_tags tags
RIGHT JOIN ((SELECT 'dog' as 'Vals')
UNION (SELECT 'cat' as 'Vals')) theValues on tags.tag = theValues....
2
Solved
Is it possible to have collate SQL_Latin1_General_CP1_CS_AS in table variable columns' definitions?
The reason I want to do this is because I have case sensitive information in my source table but...
Emphasis asked 13/8, 2012 at 8:7
1
Solved
Is this code OK? I don't really have a clue which normalization-form I should us (the only thing I noticed is with NFD I get a wrong output).
#!/usr/local/bin/perl
use warnings;
use 5.014;
use utf...
Kaliope asked 13/7, 2011 at 13:1
3
Solved
According to the sqlite3 documentation,
The COLLATE clause following each
column name defines a collating
sequence used for text entries in that
column. The default collating sequence
is the...
1
© 2022 - 2024 — McMap. All rights reserved.