-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors with MySQL 8 need documenting #266
Comments
@byte Maybe we could add something to Troubleshooting Articles in the Knowledge Base. Do you have access to the Oracle documentation? If you do, can you copy the article or the needed info to me? |
i do not have such access. but troubleshooting would be a good idea |
@byte What do you think of these two suggestions for a troubleshooting article draft: Illegal mix of collations Occasionally, you may see an error like the one below:
This error is likely caused by a mismatch in collations used in incoming replication and the table structure in the node itself.
To solve this, specify a shared collation for the two columns within the query. See below for an example COLLATE clause:
Illegal mix of collations Occasionally, you may see an error like the one below:
An "illegal mix of collations" occurs when an expression compares two strings of different collations but of equal coercibility and the coercibility rules cannot help to resolve the conflict. To solve this problem:
|
Sometimes we see errors similar to:
2021-03-25T16:09:32.856092+01:00 37 [ERROR] [MY-010584] [Repl] Slave SQL for channel ‘’: Error ‘Illegal mix of collations (utf8_general_ci,IMPLICIT) and (latin1_swedish_ci,EXPLICIT) for operation ‘=’' on query. Default database: ‘farao_achmea_hdod_a’. Query: ’UPDATE tblDocument SET LockedBy = NULL , LockedDT = NULL , LockExpirationDT = NULL WHERE LockedBy = NAME_CONST(‘inLockedBy’,_latin1'AchmeaHdodEnrichFaraoFile:123646188' COLLATE ‘latin1_swedish_ci’)‘, Error_code: MY-001267
2021-03-25T16:09:32.879162+01:00 37 [ERROR] [MY-010584] [Repl] Slave SQL for channel ‘’: Node has dropped from cluster, Error_code: MY-001047 <<<
We know that this is likely caused by a mismatch in collations used in incoming replication and the table structure in the node itself. We don't know if an upgrade changed some columns or something.
We know Oracle is documenting stuff similar to this: https://support.oracle.com/knowledge/Oracle%20Database%20Products/2582168_1.html
We should be documenting this as well, because the Oracle site isn't free for others to read up on
The text was updated successfully, but these errors were encountered: