MySQL Forums
Forum List  »  Newbie

Re: upload csv information into related tables
Posted by: Lachlan Mulcahy
Date: June 22, 2005 05:31PM

Hi Roginald,

MySQL's CSV loading is quite straightforward in functionality.

If you have one flat CSV file for all of your tables, you will need to write some kind of importing utillity yourself. If you can export each table to a seperate CSV file and the tables contain fields that logically link the tables by the data itself, then it is simply a matter of using the 'mysqlimport' script or LOAD DATA INFILE command for each of those CSVs.

You can find documentation on those here:

http://dev.mysql.com/doc/mysql/en/load-data.html
http://dev.mysql.com/doc/mysql/en/mysqlimport.html

Kind Regards,

Lachlan Mulcahy, Melbourne, Australia
MySQL AB, www.mysql.com
Are you MySQL certified? www.mysql.com/certification

Options: ReplyQuote


Subject
Written By
Posted
Re: upload csv information into related tables
June 22, 2005 05:31PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.