Apparently you work on some kind of linux/unix because on Win table names are case insensitive (OS file names are case insensitive). You should consider starting mysqld as: mysqld -O lower_case_table_names=1. This will convert all table names to lowercase. (From version 4.0.2, this option also applies to database names.) Old names, however, need to be converted manually…