Re: Illegal mix of collations (latin1_swedish_ci,COERCIBLE) and (utf8_general_ci,IMPLICIT) for operation 'UNION'

2005-08-25 Thread Florian Burkart
Hey Gleb, thanks for taking your time! php.ini: ; As of 4.0b4, PHP always outputs a character encoding by default in ; the Content-type: header. To disable sending of the charset, simply ; set it to be empty. ; ; PHP's built-in default is text/html default_mimetype = "text/html" default_char

Re: Illegal mix of collations (latin1_swedish_ci,COERCIBLE) and (utf8_general_ci,IMPLICIT) for operation 'UNION'

2005-08-25 Thread Gleb Paharenko
Hello. What is the value of the default_charset variable in your php.ini file? What version of MySQL do you use? Florian Burkart <[EMAIL PROTECTED]> wrote: > What might help as well is another problem I have: > > Somehow, the data I am getting out of mysql and php and is being served

Re: Illegal mix of collations (latin1_swedish_ci,COERCIBLE) and (utf8_general_ci,IMPLICIT) for operation 'UNION'

2005-08-24 Thread Florian Burkart
What might help as well is another problem I have: Somehow, the data I am getting out of mysql and php and is being served by apache is still in iso format, and not utf8. Which leads to bad displaying (unless i switch back to iso in the browser, but then the html stuff in utf8 gets strange (whi

Re: Illegal mix of collations (latin1_swedish_ci,COERCIBLE) and (utf8_general_ci,IMPLICIT) for operation 'UNION'

2005-08-24 Thread Florian Burkart
mysql> show create table tbl_gruppen; +-+--

Re: Illegal mix of collations (latin1_swedish_ci,COERCIBLE) and (utf8_general_ci,IMPLICIT) for operation 'UNION'

2005-08-24 Thread Gleb Paharenko
Hello. Your character_set_xxx variables is ok. The problem could be in the table definition. Send the output of SHOW CREATE TABLE tbl_gruppen; Florian Burkart <[EMAIL PROTECTED]> wrote: > Hey everyone, > > can't figure this one out, might be easy for one of you. > > > > This is

Re: Illegal mix of collations (utf8_general_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation '=' (SOLVED)

2005-08-01 Thread Mark
You're right. It is not related. The same output are shown as before. However, the links you gave me was quite useful. I re-read and re-read them over and over until this little query solved my dilemma, sort of: SET NAMES 'utf8'; Thanks for the help! ^_^ useful links: http://dev.mysql.com/do

Re: Illegal mix of collations (utf8_general_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation '='

2005-08-01 Thread Bastian Balthazar Bux
useful links: http://dev.mysql.com/doc/mysql/en/charset-collation-charset.html http://dev.mysql.com/doc/mysql/en/Charset-server.html http://dev.mysql.com/doc/mysql/en/Charset-map.html http://dev.mysql.com/doc/mysql/en/Option_files.html http://bugs.mysql.com/bug.php?id=3611 I've found this in my ph

Re: Illegal mix of collations (utf8_general_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation '='

2005-08-01 Thread Mark
I didn't find any option for character-set-server so I add it under mysqld as you've stated. I also found default-character-set so I also set its value to utf8. It didn't work. I tried adding a dash (utf-8) to it. It didn't work also. Yes, I did restart MySQL after saving the configuration. W

Re: Illegal mix of collations (utf8_general_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation '='

2005-08-01 Thread Bastian Balthazar Bux
Mark Dacasco wrote: > SHOW VARIABLES LIKE ''%char%; > character_set_client utf8 > character_set_connection utf8 > character_set_database utf8 > character_set_results utf8 > character_set_server latin1 > character_set_system utf8 > > SHOW CREATE TABLE `table1`; > CREATE TABLE `main_peeps` ( > `id

Re: Illegal mix of collations (utf8_general_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation '='

2005-08-01 Thread Mark Dacasco
SHOW VARIABLES LIKE ''%char%; character_set_client utf8 character_set_connection utf8 character_set_database utf8 character_set_results utf8 character_set_server latin1 character_set_system utf8 SHOW CREATE TABLE `table1`; CREATE TABLE `main_peeps` ( `id` int(11) unsigned NOT NULL auto_incremen

Re: Illegal mix of collations (utf8_general_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation '='

2005-08-01 Thread Gleb Paharenko
Hello. Please, send the output of the following statements: show variables like '%char%'; show create table table1; "Tulong!" <[EMAIL PROTECTED]> wrote: > Here's how the problem starts. > 1. Entered Korean characters in a form. > 2. Press submit and I receive that error. >

Re: Illegal mix of collations

2005-07-19 Thread Gleb Paharenko
Hello. > `key` varchar(255) character set utf8 collate utf8_bin NOT NULL ^^^ Field's character set should be latin1 as well. Change it. >

Re: Illegal mix of collations

2005-07-19 Thread Marco Pöhler
> > Illegal mix of collations (latin1_bin,IMPLICIT) and > > (utf8_general_ci,COERCIBLE) for operation '='' on query. Default > > What default charset do your slave's tables have? The coercibility > value of system constants has changed in 4.1.11. Though it seems not > related to your problem I re

Re: Illegal mix of collations

2005-07-18 Thread Gleb Paharenko
Hello. > Illegal mix of collations (latin1_bin,IMPLICIT) and > (utf8_general_ci,COERCIBLE) for operation '='' on query. Default What default charset do your slave's tables have? The coercibility value of system constants has changed in 4.1.11. Though it seems not related to your problem I

Re: Illegal mix of collations for operation IN

2005-06-02 Thread Gleb Paharenko
Hello. Usually debugging of such kind of problems starts with examination of the output of: show variables like '%char%'; show variables like '%colla%'; Send the output of: show create table your_table; >Hello, > >I have problem which I don't understand. > >if I send com

Re: Illegal mix of collations - new twist on a familiar problem...

2005-03-05 Thread Gleb Paharenko
Hello. Please, send us an output of the following statements: show variables like '%char%'; show variables like '%collation%'; "Stembridge, Michael" <[EMAIL PROTECTED]> wrote: > When running this simple query: > SELECT fileid FROM test WHERE ecn='0' > > > MySQL yields

Re: illegal mix of collations(latin2_general_ci Implicit)and(latin1_s wedish_ci IMPLICIT) for operation"="

2005-01-25 Thread Gleb Paharenko
Hello. See: http://dev.mysql.com/doc/mysql/en/charset-collation-charset.html "Cecep Rosuludin" <[EMAIL PROTECTED]> wrote: > Dear All, > > I found an error in mysql message, when I tried to excute this sql in mysql= > front: > > select dsr2.mother_vessel,mother_vessel_voy,voyage.v

Re: illegal mix of collations(latin2_general_ci Implicit)and(latin1_s wedish_ci IMPLICIT) for operation"="

2005-01-25 Thread Santino
Hello, I think your tables have a collation different from the connection collation. Open mysql client: mysql> show variables like 'colla%'; +--+---+ | Variable_name| Value | +--+---+ | collation_connection

Re: Illegal mix of collations with 4.1.7

2004-12-03 Thread Gleb Paharenko
Hello. Use Perl, DBI :) Frederic Wenzel <[EMAIL PROTECTED]> wrote: > On Tue, 30 Nov 2004 19:24:05 +0200, Gleb Paharenko > <[EMAIL PROTECTED]> wrote: >> The first impression is that you forgot to convert character >> columns. See: >> >> http://dev.mysql.com/doc/mysql/en/Upgrading-fr

Re: Illegal mix of collations with 4.1.7

2004-12-02 Thread Frederic Wenzel
On Tue, 30 Nov 2004 19:24:05 +0200, Gleb Paharenko <[EMAIL PROTECTED]> wrote: > The first impression is that you forgot to convert character > columns. See: > > http://dev.mysql.com/doc/mysql/en/Upgrading-from-4.0.html > http://dev.mysql.com/doc/mysql/en/Charset-conversion.html Once the Chara

Re: Illegal mix of collations with 4.1.7

2004-12-01 Thread Gleb Paharenko
Hello. The first impression is that you forgot to convert character columns. See: http://dev.mysql.com/doc/mysql/en/Upgrading-from-4.0.html http://dev.mysql.com/doc/mysql/en/Charset-conversion.html "V. M. Brasseur" <[EMAIL PROTECTED]> wrote: > Ever since we upgraded to 4.1.7, we'

Re: Illegal mix of collations with 4.1.7

2004-11-30 Thread V. M. Brasseur
Ah! Many thanks. That appears to be our problem here: mysql> show variables like 'colla%'; +--+---+ | Variable_name| Value | +--+---+ | collation_connection | latin1_swedish_ci | | collation_database | u

Re: Illegal mix of collations with 4.1.7

2004-11-30 Thread Santino
Hello, I think your tables have a collation different from the connection collation. Open mysql client: mysql> show variables like 'colla%'; +--+---+ | Variable_name| Value | +--+---+ | collation_connection

RE: Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) and Replication

2004-11-15 Thread Donny Simonton
nt: Monday, November 15, 2004 4:23 PM To: Donny Simonton Cc: [EMAIL PROTECTED] Subject: Re: Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) and Replication Donny, I certainly appreciate your help. "show create table contacts" shows the same output on

Re: Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) and Replication

2004-11-15 Thread Michael Grubb
Donny, I certainly appreciate your help. "show create table contacts" shows the same output on both the master and the slave ('latin1'). This is being run by the slave's SQL thread, and the Error is shown in the "Last error" line of "show slave status" and the error log. Thanks again, Micha

RE: Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) and Replication

2004-11-15 Thread Donny Simonton
Michael, Normally I would let a fellow domain registrar fend for themselves, but I'm feeling nice today. :) Do a "show create table contacts" and see what the charset is set too. I bet the character set on the slave is different. Are you running this from the command line? Or are you gett