Going along with this idea, I've created a sandbox for the monthly SO data dump. Eventually it will have an integrated SO stat framework that I've been working on for the past few days. It runs on MySQL 5, so make sure you use proper syntax! The only real restriction that I've placed on it as of yet is that all returns are limited to 500 results, mainly to prevent memory errors. Feel free to run some queries in 500 result sets if necessary. Also, it is read only.

The database can be found here, http://statoverflow.com/sandbox/. You must have javascript enabled. I also recommend you don't return all fields using * since their display is limited on the visual style, and this will make them almost impossible to read.

If you find any errors or mistakes, let me know. I'm still rapidly developing this so there's bound to be a few -- or several. I'll fix them ASAP.

An example query is:

SELECT Title, PostTypeId, Score, ViewCount FROM posts   
    WHERE Title != "" LIMIT 200 ORDER BY Score DESC

You can sort items ASC or DESC by clicking the respective field titles, and you may do live search upon any sorted column.

If you have ideas or suggestions let me know. I may or may not already have similar things in the works. Soon I will be integrating graphs and charts so you can easily model your data to use elsewhere.


Schema

There are currently the five default tables:
posts, users, comments, votes, badges

The field titles are verbatim from the dump, and have the same casing.
Examples: PostTypeId, Title, LastEditDate, etc.

All times have already been converted to Unix Stamps

I found a good wiki here, specifying exactly what the tables are. http://meta.stackoverflow.com/questions/2677/anatomy-of-a-data-dump

I plan on adding more tables shortly to make things easier, and will post those updates here.

link|improve this question

80% accept rate
It looks like we DOSed your server, I can't connect reliably. – Tom Ritter Jul 10 '09 at 21:41
Looks like it's back to normal now – Ian Elliott Jul 10 '09 at 22:02
Is there / can there be a way to create link to query results? – Shog9 Jul 23 '09 at 3:29
I would just repeat my thanks for statoverflow: I used it in meta.stackoverflow.com/questions/12988#16866 for the truncated answers, and it has prove tremendously useful :) – VonC Aug 25 '09 at 7:19
feedback

closed as too localized by random Jan 14 at 5:16

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

8 Answers

Great, great, great!

I'd suggest you add a section with some interesting queries.
It would be cool to have it under data.stackoverflow.com domain as well...

link|improve this answer
feedback

Fantastic idea. I wouldn't mind seeing the schema listed on the page (or at least link to it) along with a few example queries.

link|improve this answer
I'll get to that shortly – Ian Elliott Jul 10 '09 at 22:06
feedback

Another query which people might find interesting - order by "reputation per day":

select id, reputation, 
   (LastAccessDate - creationdate) / (24 * 60*60) as days_on_site,
   reputation / ((LastAccessDate - creationdate) / (24 * 60*60)) as rep_per_day
from users
where (LastAccessDate - creationdate) / (24 * 60*60) > 2
order by reputation / ((LastAccessDate - creationdate) / (24 * 60*60)) desc

(I can't work out how to make MySQL use a named computed expression elsewhere in the query, hence the repetition.)

link|improve this answer
It's interesting to see how quickly the numbers drop off. I expected to see a lot more users that hit the cap exactly 5 days/week, or close to that, but there are only 12 users as of August who have distinction. Even I'm 9 points per day back. – Joel Coehoorn Sep 4 '09 at 16:35
Check that. Played with the dating methodology some and that lowered scores across the board. Only 3 people manage that feat, and I miss it by 30 per day. – Joel Coehoorn Sep 4 '09 at 16:48
feedback

Would you be willing to release the code you used to import the data into MySQL?

link|improve this answer
feedback

Biggest feature request from my point of view: make the query area a multiline textbox with a smaller font :)

Fabulous idea though. Currently trying to see the number of votes my posts have received, grouped by vote type. It's taking a little while - I hope you've got a timeout as well :)

EDIT: I like Piotr's idea of showing some interesting sample queries. You might want to allow these to be really easily parameterised, too...

"I am user [...] - show me my (links to different queries with prepopulated userid)."

EDIT: The query I ran was as follows:

select votetypeid, count(1) from votes
inner join posts on votes.postid = posts.id 
where posts.owneruserid = 22656
group by votetypeid

(22656 is my userid, obviously.)

This lets you work out a "raw rep" by calculating 15 * count(type=1) + 10 * count(type=2) - 2 * count(type=3). That doesn't take into account bounties or your own downvotes, or posts which have changed to become CW after you gained some rep from them. It's a reasonable starting point though.

Someone with more SQL-fu than me can convert that formula into a query in its own right :)

link|improve this answer
I changed it to multiline. Did that query ever finish? Most complete within a second or two for me, but it shouldn't be an issue soon when I migrate this to my dv server -- I'm just waiting until I complete a bit more substantial work. Sample queries is a good idea too but I don't want implement until I can cache results (after I migrate). – Ian Elliott Jul 10 '09 at 13:11
Yes, the query did finish - and after adding a little bit to it, it was very interesting. Will post it in an edit in a minute. – Jon Skeet Jul 10 '09 at 13:48
feedback

It'd be nice if SHOW TABLES and DESCRIBE [table] worked. The auto-append of a LIMIT clause seems to break them.

link|improve this answer
Will be functional in my next release (which I really should get back to tending too) – Ian Elliott Sep 6 '09 at 23:34
feedback

Very cool, do you also have a tags table?

link|improve this answer
I do but it's not up yet. I'm currently in midterms (I have school year round), so have not had the time to finish/upload my changes. I hope to have up a much nicer version + new features in a week or so. – Ian Elliott Jul 23 '09 at 5:59
feedback

Did you setup indexes and such too?

link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged