Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two database schema, one with tables in uppercase, the other with table in lowercase :

mysql uppercase_schema -e 'show tables'
+-----------------+
| UPPERCASE_TABLE |
+-----------------+
mysql lowercase_schema -e 'show tables'
+-----------------+
| lowercase_table |
+-----------------+

I need to access both on the same mysql instance. The problem: lowercase_table is queried in a mixed of uppercase and lowercase (no way to change the query) :

select * from LowerCASE_table;

I was wondering how to go about using mysql options such as lower_case_table_names without dumping UPPERCASE_TABLE.

share|improve this question
On what filesystem is your database stored? – eggyal Aug 3 '12 at 15:01
@eggyal: ext3 filesystem – Philippe Blayo Aug 3 '12 at 15:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.