I imported a database from Windows to linux and all the tables names are in lowercase.
Is there a way to convert the mysql table names form lowercase to uppercase in linux?
Thanks a lot for any suggestion provided.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I am assuming you are addressing the table names in uppercase, which worked in Windows but no longer works on Linux because of case sensitivity.
You could rename each database. However, if you have access to the mySQL configuration, you should also be able to set
--lower-case-table-namesto1.I have no experience with the option, but according to the manual, it makes mySQL behave case-insensitively towards tables, as it does by default on Windows.