The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
73 views

Trouble with fetching data

I'm trying to query the following data from stackexchange: Fetch all the questions asked about Android, in past five years, and display post's id (a.iD), associated tags (a.Tags), for the person ...
1
vote
2answers
173 views

Download Stack Overflow data for a research project

I would like to download the Stack Overflow data for a data mining research project. I tried the SQL interface at data.stackexchange.com, but the downloading process was not obvious since the ...
3
votes
1answer
119 views

SQL Query not returning hyperlink on data.stackexchange.com

I am basically a C programmer but I started on SQL today with the only purpose of fiddling around the data available on data.stackexchange.com. So please bear with me if my question is naive or ...
13
votes
0answers
118 views

Organize tags for SQL key words

There are a number of tags for SQL key words. And I think that makes sense, mostly. However, many of those keywords are not very selective or descriptive by themselves as they are very common words. ...
5
votes
1answer
197 views

Creating beautiful tables [duplicate]

Possible Duplicate: Is there any markdown to create tables? How to format SQL tables in a Stack Overflow post? I was wondering how users are able to create beatiful tables of how their ...
31
votes
1answer
466 views

What does SE use to calculate reputations? SQL aggregate functions? A manual method?

I want to implement something similar to Stack Exchange's reputation system. What would be the better practice: using an SQL aggregate function to recalculate every time it changes, or storing ...
5
votes
1answer
166 views

A query to get all posts that count for Archaeologist and Excavator

I've been playing with data-explorer to peruse stackoverflow more and learn some t-sql. I managed to write this query, which lists out all posts the user has edited and then shows a difference in ...
7
votes
5answers
527 views

Ethics for SQL insert queries vulnerable to SQL injection

I've come across and helped lots of people with SQL INSERT queries, where nothing about the values being from the user and form input is being mentioned. The main point of the questions vary from ...
4
votes
2answers
76 views

Stack Exchange Data Queries - Get URL of Site Query Ran Against

I've made myself a little query on the stack exchange data explorer which gets a leader board for the top comments on the site, and the URL for the post that the comment was posted on. This query ...
0
votes
1answer
66 views

Is the following question type OK in Stack Overflow? [duplicate]

Possible Duplicate: How to determine if I should post on Stack Overflow or Server Fault about SQL I want to describe how I am handling a SQL (MySQL) query, and want to know if there are ...
15
votes
2answers
1k views

Stack Overflow DB performance and redis cache

I am trying to understand some of the data storage and caching details of Stack Overflow. Are the pages build completely from redis cached data or does it need to make some db calls? Assuming that ...
6
votes
1answer
216 views

SQL Server 2011 vs. SQL Server Denali

I'm wondering what the process should be for guiding the tag people should be using for the next version of SQL Server. With CTP3 now out in the public's hands, I expect StackOverflow, ServerFault and ...
6
votes
1answer
214 views

Stack Exchange SQL samples

I swear I saw this on one of Stack Exchange sites, but can't find it. There was a section full of SQL query samples, like which users got most upvotes for last 2 weeks and so on. Does anyone know ...
8
votes
2answers
217 views

Why is there no syntax highlight for SQL merge statements?

It seems, that Stack Overflow doesn't recognise the SQL:2003/SQL:2008 MERGE statement, as can be seen in my answer here: Oracle: Updating a table column using ROWNUM in conjunction with ORDER BY ...
2
votes
0answers
41 views

Links to all my questions?

Is there a way to get hold of a parsable list of links (or if that's not possible, IDs) to all my questions to all my answers preferably without using the data dump?
0
votes
1answer
135 views

What SQL query does stackoverflow use to retrieve a question and all its answers in order?

According to this, stackoverflow uses one table for both questions and answers. This design seems somewhat unusual. What SQL query does stackoverflow use to retrieve question #123456 and all its ...
45
votes
14answers
1k views

Can we become our own “Northwind” for teaching SQL / databases?

In the Microsoft ecosystem there are some standard databases like Northwind ... The Northwind Traders sample database contains the sales data for a fictitious company called Northwind Traders, ...
0
votes
1answer
129 views

Using the data dump without MS SQL? [duplicate]

Possible Duplicate: Scripts to convert data-dump to other formats I was wondering how I can use the data dump to query for answers offline (on a MacOS box)? - I recently saw some people ...
1
vote
3answers
319 views

Rejection of text containing SQL statements

OK, I've been having weird problems for the last 1/2 hour trying to post an answer to a database-related question on StackOverflow, and I keep getting this result (on Firefox 3.6) The connection ...
2
votes
2answers
335 views

SQL Syntax highlighter doesn't recognized double-dash comment syntax

-- this is a comment UPDATE Employees SET fired = 1 WHERE noiseLevelInDB > 80
0
votes
3answers
217 views

SQL users' upvotes

I am not trying to be rude, at all, but I just have a quick question. Maybe some stats can back me up, but this is my personal feeling. Why do SQL users upvote less than others? I answer a variance ...
-2
votes
3answers
277 views

Auto generated create table snippets for sample data in specific format

Edit: try again. In a SQL related question, when the OP gives a code table such as: Department | Category | 0001 | A | 0002 | D | 0003 | A | 0003 ...