Category: MySQL

MySQL
2024-07-24 11:30 (19 months ago)

I encountered an issue in MySQL where a subquery on a field with an index was taking an extensive amount of time because the index was not being utilized. It turned out that the collation of the fields being compared was different.

DjangoMySQL
2022-09-11 09:58 (3 years ago)

Here is a summary of the blog article in English: "When issuing raw SQL in Django, an error '2027 Malformed packet' may occur with certain SQL statements. A helpful solution is to avoid using double quotations."

DjangoMySQL
2021-11-14 11:10 (4 years ago)

When querying MySQL (5.7) with Django, the process started to stop due to the error (2013, 'Lost connection to MySQL server during query'). First, check the innodb_strict_mode setting in the current connection. Use the command SHOW VARIABLES LIKE '%innodb_strict_mode%'; It needs to be set to ON.

MySQL
2021-01-01 12:28 (5 years ago)

When trying to connect MySQL Client 8.0 to MySQL 5.6, DataGrip displays an error message: "[08S01] Communications link failure java.io.EOFException: SSL peer shut down incorrectly," and the connection fails.

DjangoMySQL
2020-11-08 10:53 (5 years ago)

If you encounter the django.db.utils.InterfaceError: "(0, '')" error When this error occurs intermittently during get operations depending on the table or record, it might be due to a mismatch in the connection character encoding.

DjangoMySQLPython
2020-10-11 02:52 (5 years ago)

If a Django project that has been working until now fails to start after a long time with the following error: ``` version_info, _mysql.version_info, _mysql.__file__ NameError: name '_mysql' is not defined ```

MySQL
2018-02-26 13:14 (8 years ago)

While managing the root user with the mysql_user module in Ansible, I found that I was no longer able to grant privileges to other users.

AWSMySQL
2017-01-03 12:34 (9 years ago)

Something is wrong with AWS RDS MySQL replication

MySQL
2016-09-14 09:44 (9 years ago)

This isn't a completely quantitative discussion, but...

MySQL
2015-12-01 06:42 (10 years ago)

Background I'm creating a full-text index with bigrams in InnoDB on MySQL 5.6. However, when I tried to search for the term "TWIN,"

Categories

Archive