> Is their a way within Speck to force all table names to lower case.
Not really no, well, not without modifying a lot of code. I've just had
a look at the MySQL docs and it seems that this particular problem
you're having is due to a different default values for the
lower_case_table_names system variable on Windows and UNIX (on Windows,
table names are forced lower case, not so on UNIX).
http://dev.mysql.com/doc/refman/5.0/en/identifier-case-sensitivity.html
Speck uses the same mixed case names throughout the application so once
you set the lower_case_table_names to the same value on both machines
you should be able to copy the data from one machine to the other.
Mark