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.