Help Center/ Data Replication Service/ Troubleshooting/ Solutions to Failed Check Items/ Database Parameters/ Checking Whether the Source and Destination Database Table Names Are Consistent in Case Sensitivity
Updated on 2024-09-25 GMT+08:00

Checking Whether the Source and Destination Database Table Names Are Consistent in Case Sensitivity

During MySQL migration, the value of lower_case_table_names of the source database is inconsistent with that of destination database. If the value of lower_case_table_names is 0, the database is case sensitive. If the value of lower_case_table_names is 1, the database is case insensitive and all uppercase letters are converted to lowercase letters for storage. If the lower_case_table_names values of the source and destination databases are different, and a database or table is named using uppercase letters, the task may fail.

Failure Cause

The lower_case_table_names values of the source and destination databases must be the same.

Handling Suggestion

  • If the database is an RDS for MySQL instance, change the value of lower_case_table_names by referring to Tables Failed to Be Found After Case-Sensitivity Setting Changes for RDS for MySQL.
  • If the database is an on-premises MySQL database, perform the following steps:
    1. Log in to the server where the MySQL source database is located.
    2. Add lower_case_table_names=n under [mysqld] in the my.cnf file.
    3. After the modification, restart the source database during a non-service period.