Ok guys I've downloaded the wikipedia xml dump and its a whopping 12 GB of data :\ for one table and I wanted to import it into mysql databse on my localhost - however its a humongous file 12GB and obviously navicats taking its sweet time in importing it or its more likely its hanged :(.

Is there a way to include this dump or atleast partially at most you know bit by bit.


Let me correct that its 21 GB of data - not that it helps :\ - does any one have any idea of importing humongous files like this into MySQL database.

link|improve this question

73% accept rate
"its more likely its hanged" Oh that serves it right! – Frederick The Fool May 14 '09 at 10:30
feedback

2 Answers

up vote 2 down vote accepted

Use the command line instead, navicat is horrible for importing large files and will likely take 20x longer than using the CLI.

link|improve this answer
feedback

Take a look into Sax parser it allows you to read in the corpus piece by piece rather than reading the whole 12gb into memory. I'm not too sure how you would interface it with mysql though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.