you are looking at the last 10 updated questions there, there are:
Answered, Do not publish 16881
Answered, Publish 8611
over 25,000 questions in there all together. So your sample was a bit small.
But, unfortunately for every question you see, there are 2 you do not -- because they are not worth printing typically. They violate the policy for posting that I have (i'm copying that policy below so all can see it clearly) most of the time or are so "been there, done that" that the answer is "well when I searched this site using your subject, I saw .... what did you see?"
the followups are generally on "published" content -- although if I answer but don't publish it -- the original poster can followup on it -- but those die out fast.
But the fact is that the number of NEW questions is going down over time because the number of FOLLOWUPS is going way way up over time.
Questions by year:
TO_C COUNT(*)
---- ----------
2000 5586
2001 8008
2002 5854
2003 4090
2004 1974
Followups made by me by year:
TO_C COUNT(*)
---- ----------
2001 1347
2002 6792
2003 10942
2004 12648
The followups take as much time, if not more sometimes, than a new question.
This is what people see when they post a new question:
New Questions Policy
READ THIS, REALLY, it'll save us all time and you have all of the time you need to read it!(the fact you are on this page means you will get to ask a question, take your time)....
This is not Oracle support. Repeat: THIS IS NOT Oracle support. Questions that are obviously support questions, for example:
* I'm getting an ora-600, ora-3113, ora-7445 are *support* questions
* I'm not able to install "X"
* I'm trying to configure "Y"
Questions posted here should be "how to" in nature, that is what I do best. Ask a support question and you will get the answer "that is a support question, please use support"
Here is my policy/procedure regarding new questions to Ask Tom:
1. I am not afraid to respond with RTFM at all. A question like "how do i delete an outline i don't need anymore" will be responded to with "read that fine documenation -- we actually document that stuff". Or "how do I use tkprof" -- it'll get the same (read the DOCS). Please take a minute to make sure you don't have a simple "documentation" question. All docs are available on otn.oracle.com for *FREE*. Get them, read them. Really, you won't be sorry.
2. I do not program using forms or reports. questions about forms and reports will get a canned response that basically says "i don't use those, please goto otn.oracle.com -> discussion forums". Really (not kidding). The last time I used forms was March 1995, and I've *never* used reports. If you have a database question -- great. Questions specific to forms/reports -- not a chance.
3. All questions that need a create table with some sample data should include the SIMPLIEST create table statement (no tablespaces, no storage -- just create table t ( smallest number of columns possible )) along with INSERT INTO statements. Eg: DON'T put this in a question:
I have a table with columns A, B, and C. Here is some data that is in it:
ops$tkyte@ORA9IR2> select * from t;
A B C
---------- --------- ------------------------------
1 01-JAN-04 hello
2 15-JAN-04 world
But DO put the following into the question -- this is what I need:
I have a table:
create table t ( a int, b date, c varchar2(30) );
with this data in it:
insert into t values ( 1, to_date( '01-jan-2004'), 'hello' );
insert into t values ( 2, to_date( '15-jan-2004'), 'world' );
Satisfying this simple request will save me hours of time each week! If you do not do this, I will send the question right back to you asking your to do this!!
4. Please include your definition of "it doesn't work". I will need all error codes, messages and a complete description of the failure. When you drop your car off to be fixed, you don't just say "it doesn't work". I cannot answer a "it does not work" question without additional information.
5. I do not handle installation questions. They are best dealt with by support or by if you have trial software by emailing to web-sup@us.oracle.com. I just have not installed every dot release on every platform personally, nor do I have the time to do so. It would be best if you do not post installation questions here (it will prevent others from asking questions I can answer)
6. Please try the SEARCH feature.... it really works. About 1/3 of the questions on AskTom are answered by ME searching AskTom and sending you a link to an existing answer. If I can do it -- so can you!
7. Do not submit multi-part questions. If you ask more then 3 or 4 separate questions in a question -- I will not answer it. The reviews on big multi-part questions indicate others do not like them (too hard to follow) and they take lots of my time to answer (preventing me from answering other questions). I will not answer large multi-part questions.
8. Do not submit 5 or 6 questions at once. Give others a chance. Be fair.
9. I am mostly a database guy. I do not, have not worked with every possible Oracle tool. I have limited Forms experience (some), I have never used reports, I've done Java, lots of Pro*C, some OCI. I never have (nor will) use VB, ODBC, ASP's or any related technologies. I use open systems. Don't be surprised (or mad) if I send you to </code>
http://otn.oracle.com/ <code>to the discussion groups for questions specific to a certain development environment. I'll try to answer but if I can't -- its that simple -- I can't.