Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Can you explain why you need that? – Positive May 18 '11 at 15:28
Because the application, which is running on linux, access the tables using their names in uppercase. – tanya May 18 '11 at 15:34

1 Answer

up vote 2 down vote accepted

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-names to 1.

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.

share|improve this answer
No, in fact windows converted the original tablenames from uppercase to lowercase. When i imported my database schema to linux, i noticed that my application is no longer working properly because it requires that the tablenames are in uppercase. – tanya May 18 '11 at 15:40
@tanya yeah, I understand. As said, using above option you can make the Linux version become case insensitive. – Pekka 웃 May 18 '11 at 15:40
Now i want to change the tablenames from lowercase to uppercase in linux. I was thinking of manually modifying the .sql file and changing the tablenames to uppercase but it's taking too long :( – tanya May 18 '11 at 15:41
alright, i will try running this command – tanya May 18 '11 at 15:41
thanks a lot for the suggestion, i will update you on this – tanya May 18 '11 at 15:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.