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

I'm working on a database in windows, which I must move it into a linux environment after development completion. It contains a lot of tables & stored procedures which CASE SENSITIVE table name is used in them. when I backup my daatabase all table names are lowercase & so when I restore it in linux, I've problem with that lowercase names as my stored procedures are using case sensitive table names. Note that I HAVE -NOT- ACCESS TO MYSQL CONFIGURATION IN LINUX ENVIRONMENT, so I cant change MySQL settings to case insensitive mode.

Is there any way to force MySQL (v5.x) to use case sensitive table names in windows?

If I can do this, my problem would solve.

share|improve this question
3  
Surprisingly, upgrading from MySQL 5.1 to MySQL 5.5 solved my problem! Now I can use case-sensitive table name in windows environment, although its still impossible to create two tables with the same name that only differs in letter case(i.e table_1 and TABLE_1) and of course I never want to do this! – Ehsan Khodarahmi Jul 10 '11 at 18:34

3 Answers

Following http://dev.mysql.com/doc/refman/5.0/en/identifier-case-sensitivity.html I would try with

/my.ini: lower_case_table_names=2

share|improve this answer
That worked for me! Now, if only the schema names were case sensitive as well... – Josh M. Jul 21 '12 at 20:42

Have a look at this article - http://dev.mysql.com/doc/refman/5.1/en/identifier-case-sensitivity.html

Mode 2 allows to store tables with specified lettercase, but anyway, name comparisons won't be case sensitive and you won't be able to store table1 and Table1 at the same time.

share|improve this answer

Unfortunately there's no way of making MySQL on windows to behave 100% as in Linux. What you can do, is to run a minimal VM on Virtual Box or VMware player with TurnKey - MySQL Appliance.

In my personal experience, I've found quite useful to have a VM with a configuration similar to the deployment environment to diagnose problems.

share|improve this answer

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.