Jump to content

mysql export fields mapping


jason213123

Recommended Posts

hi,

i have two databases and each one have diferent fields names and tables

and i want a creat a map for each field and each table and export to a database to the other

i have tested the mysql migration but i can´t choose a diferent table in the destination

database.

any one know a software that does this?

thanks a lot for your help

:)

 

Link to comment
https://forums.phpfreaks.com/topic/254010-mysql-export-fields-mapping/
Share on other sites

You may try the next algorithm... It will work for any DBs, even when they a placed at different places.

 

1. Copy your data into file. "SELECT ... INTO OUTFILE" will help you.

2. Copy files to another server, if needed.

3. Load data from file to another database, use "LOAD DATA INFILE". At this step you may load info to a columns with any name.

 

Check syntax for these commands in the MySQL help.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.