Question: I'm working with vendor supplied ddl scripts, which are causing case-sensitive issues. Early in the scripts - there is a CREATE TABLE statement . But further down the script there is an INSERT statement - but the case of the table is lower - causing an error . How can I fix this issue? Answer:To fix this issue - change the "lower_case_table_names" variable . To see the current value of lower_case_table_names use : show variables like '%lower_case_table_names%' To solve this problem - you will need to change the value to "1" . Find the location of the "my.cnf" file...
Read more →