I have exported a database from a MySQL database out on the web using phpMyAdmin to create the SQL for the export. I dumped that SQL code into a script tab in MySQL query browser (I have MySQL query browser locally, but cannot use it for the other database because it does not allow remote connections).
The database is created on my local server, and everything is there, but all of the table names are a bit different. In the first version, a table name might be phUser. In the local version, it is phuser.
I want to create an easy system for someone to make a backup of the online database and dump it into the local server. We will use MS Access to connect to the local version and do some fancy reporting. I know I could do some work-arounds for this (renaming my linked tables for instance) but I would like to have the table names come across correctly - not converted to all lower case. What can I do differently?
MrsBean
The database is created on my local server, and everything is there, but all of the table names are a bit different. In the first version, a table name might be phUser. In the local version, it is phuser.
I want to create an easy system for someone to make a backup of the online database and dump it into the local server. We will use MS Access to connect to the local version and do some fancy reporting. I know I could do some work-arounds for this (renaming my linked tables for instance) but I would like to have the table names come across correctly - not converted to all lower case. What can I do differently?
MrsBean