http://mysql2.mirrors-r-us
mysql on Windows will lowercase it for you automatically
Main Topics
Browse All TopicsHello! Me Again, have a new thing stumping me.....
we have 2 MySQL systems, a mysql dump is used, coded in PHP to copy data from one server to another server, now when this script was running, it used to copy from Windows to a LInux system, now the LInux system is being replaced temp, with a Windows box, now switching the script to point to this new server when it runs, when it creates the folder on the new windows box, it makes the folder name with a small letter as opposed to a capital (the original soure has a capital A)
Here is the script being used, is there somethign in it thatis making it change the Capital A to a small A? or is this some new setting / restriction in MySQL 5.0.45?
This file is run via a .bat file using php.exe, something that will remain for now so i need to figure out why it is making a small A, i could manually change it every day this run, but would prefer if it could fully work.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
http://mysql2.mirrors-r-us
mysql on Windows will lowercase it for you automatically
is there any way to remove that auto feature? daily we extract archived files and we use a Capital A and have for about 6 years now, some scripts are written to look for the spefic name, and if i read MySQL site right, certain things are case sensitive.. on windows?
Just found this
Use lower_case_table_names=0 on Unix and lower_case_table_names=2 on Windows. This preserves the lettercase of database and table names. The disadvantage of this is that you must ensure that your statements always refer to your database and table names with the correct lettercase on Windows. If you transfer your statements to Unix, where lettercase is significant, they do not work if the lettercase is incorrect.
Business Accounts
Answer for Membership
by: imitchiePosted on 2007-11-22 at 19:32:00ID: 20337214
mysql databases on windows boxes do not use upper case. create a database called "MyBase" in phpMyAdmin on Windows, and you will see what I mean