MySQL Forums
Forum List  »  Quality Assurance

Re: Best way of updating a database from a file
Posted by: d batz
Date: November 23, 2011 01:46AM

I've done many importing exporting data from our databases.
Yes I've done CSV, but there is limitation. I noticed CSV doesn't support complicated special characters, asian characters.. etc.
I always keep monitorning my fields if are Unicode or UTF-8

If you are experienced with XMLs,
I recommend using XML import using this:
http://dev.mysql.com/doc/refman/5.5/en/load-xml.html

You can do same with CSV:
http://dev.mysql.com/doc/refman/5.5/en/load-data.html

When Exporting small amounts of data for the sake of "presenting" to your bosses, I would use EXCEL export using PHPmyadmin or "Mysql Browser" tool.

Reverse, You can also use EXCEL to import into PHPmyAdmin

*If dumping large data just use the commandline, (sql format)
*If you have full control with database, you can just copy the RAW data (MyIsam only, it's portable) XDDD



Edited 1 time(s). Last edit at 11/23/2011 01:48AM by d batz.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Best way of updating a database from a file
1240
November 23, 2011 01:46AM


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.