vote up 7 vote down star
3

Before I go about doing this myself, I wonder, has anyone written a script or program that can efficiently and quickly load up the the SO date into SQL Server.

I tried the script here but it completely took out my machine.

Im thinking either some c# script that streams through the xml file forward only and uses bulk inserter should do the trick.

Otherwise I'm considering just converting the sqlite dump _nobody created to sql server should be fairly fast.

Any other ideas or scripts to do this out there? Perhaps a compressed sql server backup torrent?

Update I created a very fast sql server importer which lives on github.

Related What interesting stats can I obtain from the Stack Overflow data-dump?

flag

What sort of machine are you running? – George Stocker Jun 16 at 1:16
Please why the minus one, this is an honest question, im running a Q6600 after thirty minutes importing posts took out my machine – Sam Saffron Jun 16 at 1:17
I didn't give you a -1, someone else did. Though I'll +1 to offset it. It's a good question. – George Stocker Jun 16 at 1:20
sorry Gortok, I didn't know... I suspect it must have been the community wiki police – Sam Saffron Jun 17 at 0:31

3 Answers

vote up 0 vote down

Brent Ozar at BrentOzar.com has a whole bunch of articles on this.

  1. How to Import the Data Into SQL Server.
  2. Data Mining the Stack Overflow Data Dump.
  3. Cleansing the Data From the Stack Overflow Data Dump.
link|flag
Thats the same slow script i found (that linked) ... granted im not running on a server class machine, but it completely takes out my machine – Sam Saffron Jun 16 at 1:11
Sometimes I wish Stack Overflow used the same mechanism /. uses so you can see links without hovering over them. – George Stocker Jun 16 at 1:13
@Gortok that's not the Web 2.0 way :p apparently underlines under links is so last year useit.com/alertbox/20040510.html – Sam Saffron Jun 16 at 1:16
I meant see where the links go to. – George Stocker Jun 16 at 1:20
Yeah that's there as well "One useful hovering effect is to use link titles to help users predict where a link will lead before they click it." – Sam Saffron Jun 16 at 1:23
show 2 more comments
vote up 2 vote down

I've had some good results importing into MySQL by writing a program that converts the files to CSV, and then doing a bulk insert from the CSV directly into MySQL. I used the XMLTextReader in .Net to read the xml files. Converting to CSV is pretty simple. Just read each row, and output the attributes enclosed in ", And replace any " with "". Writing the posts.xml to csv only took a couple minutes, and similarly for importing it. I used LOAD DATA INFILE to load the Data into MySQL. You can probably get similar results writing the CSV file, and importing it using BULK INSERT.

Just some numbers to give you an idea of how long it should take to import. Converting the posts.xml (bulk of the data) to CSV can be done in under 2 minutes. Importing the resulting CSV into MySQL takes about 5 minutes. This is running an AMD Dual Core (4200?) with 2 GB of RAM and a 7200 RPM SATA HD on Windows XP Pro.

link|flag
OK I wrote a tiny import winform app, im able to get at all the data in under 5 minutes. Pretty happy with that. I get the added bonus that the thing does not take out my machine ... :) – Sam Saffron Jun 16 at 3:51
vote up 2 vote down check

OK I just wrote a tool that imports the full SO dump into SQL Server in under 5 minutes.

Feel free to amend and extend it (just go ahead and fork it on github) its using a BSD license.

http://github.com/samsaffron/So-Slow/tree/master

link|flag
Can you add a compiled version? Us DBAs don't have the tools to compile it, unfortunately. – Brent Ozar Jun 16 at 15:13
would this work with mysql as well or is it different? – jasondavis Aug 14 at 2:03
For downloads look at: github.com/SamSaffron/So-Slow/downloads – Sam Saffron Aug 14 at 2:10
Note it will be tricky to adapt this solution to mysql cause it relies on SqlBulkCopy which is not available on MySql – Sam Saffron Aug 14 at 2:12

Your Answer

Get an OpenID
or

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