How can the Stack Overflow data in XML be converted into a MySQL dump?
It will be brilliant to have it for mysqlimport.
|
How can the Stack Overflow data in XML be converted into a MySQL dump? It will be brilliant to have it for |
||||
|
|
|
If I'd use PHP for the import, I wouldn't use preg_match_all but XMLReader. First attempt, without error/schema handling, almost untested:
With the MySQL Connector/Net and I wouldn't put too much effort in error handling, schema testing, "but what if", etc. here. If you need something beyond "just fiddling with the data" there are other tools; you could even use Hibernate for that ;-) |
|||||
|
|
Just took a look at the data. It wouldn't be too hard to do a pattern matching |
|||||||
|
|
It's not MySQL, but I have imported the data from the dump into a SQLite database: http://sof.modos.org/forum/viewtopic.php?f=7&t=4 If you're interested in analyzing the data, you can use the same sort of queries that you'd use in MySQL in SQLite. I'm also working on making the script I used to import the data work with other databases, so keep an eye on the (unofficial) forum for updates. |
|||||||
|
|
I made a program to create a SQL file to load SO data into a PostgreSQL database. Reading it, it seems there are few PostgreSQL-specific things in it so you may try to port it. |
|||
|
|