What are some information that you consider should be specified when asking questions?

E.g.) When asking database related questions, I consider that one should mention which RDBMS the person is working with. For .NET, what framework (Version 1.0, 1.1, 2.0, 3.0, 3.5), language(C#, VB.net, F#, etc) and IDE (Visual Studio, SharpDevelop, etc)

The problem is that, especially when someone asks a database related question for query, if one does not mention RDBMS, those who are willing to help should first ask about that info to come up with the best (as one considers) solution for questions asked.

Any thoughts on this?

It would be also helpful if people can link to questions that were well thought out.

link|improve this question
feedback

migrated from stackoverflow.com Aug 7 '10 at 18:05

This question came from our site for professional and enthusiast programmers.

4 Answers

One of the goals of SO is to provide useful knowledge to people who may want to ask the same question in the future.

Therefore, if you feel that the details are not crucial, they shouldn't be part of the question title itself. So don't ask something like "How do I do X in .NET Y) if you don't think this is specific to Y. Otherwise, it may not come up when somebody else searches or it would seem irrelevant, and the person may skip it.

In the question body, I'd put all the extra information that might be relevant in the end. (e.g., BTW, in my specific case, I am using X Y Z). Therefore it doesn't bother most readers unless they want that info.

link|improve this answer
feedback

Being primarily a database developer, I'd suggest that anyone asking SQL questions reads this article from SqlServerCentral:

Forum Etiquette: How to post data/code on a forum to get the best help

General steps:

  1. Specific RDBMS name, version, etc.
  2. Put together a CREATE TABLE statement to make a temporary table boiled down to the relevant fields.
  3. Create some sample data that properly demonstrates the SQL question you're about to ask.
  4. Post the SQL you're looking to run.

This way, those looking to help you can copy/paste your code and immediately get to work helping you!

link|improve this answer
feedback

I find that it can be really important to give the broader picture. This allows people to come up with suggestions that do not solve the specific problem that the question is about, but avoid this problem altogether. That often results in a better solution.

To name just one example: this question.

link|improve this answer
feedback

Raymond has a good take on it here

Add all details you think are important. Follow up with more details if you continue to investigate after asking the question and find something pertinent.

State the problem clearly and why it's a problem. "It doesn't work" and "how do i write a program to do blah" aren't exactly helpful because they are many possibilities to choose from when answering.

Above all, minimise the problem/question down to the smallest reproducible section so that the rest of us don't have to continually quiz the poster to identify the actual problem.

link|improve this answer
feedback

You must log in to answer this question.

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