Are the posted questions getting worse?

  • Gianluca Sartori (1/27/2012)


    Or maybe "just give me the split function".

    Awesome - I didn't even bother reading that one. I like the link Cadavre posted on the other one. Includes the immortal line, "Car doesn't work. Plz fix. It is urgent! Thx!!".

    Says it all really.

  • Gianluca Sartori (1/27/2012)


    SQL Kiwi (1/27/2012)


    Evil Kraig F (1/27/2012)


    On yet another note, what is it, "Spoon Feed me my job" day?

    If you are referring to "please reply me of my question only .Thanks", I would say yes.

    Maybe that.

    Or maybe "just give me the split function".

    Oh boy. :rolleyes:

    That reminds me of the time I provided a link to an article that contained the solution.

    I got the swift reply: "No links. Only code samples plz. Its urgent."

    I replied: "Read the damn article, everything's in there" (but in a more polite way)

    Reply: "I don't have time to read all that. I hoped you would just give the answer. It's urgent" (but apparently not urgent enough to wait for me to type out an entire reply)

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • SQL Kiwi (1/27/2012)


    Gianluca Sartori (1/27/2012)


    Or maybe "just give me the split function".

    Awesome - I didn't even bother reading that one. I like the link Cadavre posted on the other one. Includes the immortal line, "Car doesn't work. Plz fix. It is urgent! Thx!!".

    Says it all really.

    Best-article-ever 🙂

    I keep it in my signature for over a year now. I wonder if someone has already clicked on it and read it.

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • On a totally different note, I was looking for a good open source project management software for a client of mine and I found this one[/url] that looks pretty cool.

    I installed it on a test VM and started to play with it.

    I opened the database to see how I could plug my own code and this is what I found.

    OMG.

    Keep devs away from the database. If you see one approaching with some Hibernate code, shoot: the judge will agree.

    -- Gianluca Sartori

  • Koen Verbeeck (1/27/2012)


    I got the swift reply: "No links. Only code samples plz. Its urgent."

    Whenever I see "...it's urgent...", I think: "Not for me it isn't."

  • If I'm helping someone and they come back and say something about urgent, that thread automatically goes to the bottom of my things to look at.

    "It's urgent" = "I'm more important than everyone else here and hence you must help me first". Um, no.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • SQL Kiwi (1/27/2012)


    Koen Verbeeck (1/27/2012)


    I got the swift reply: "No links. Only code samples plz. Its urgent."

    Whenever I see "...it's urgent...", I think: "Not for me it isn't."

    Indeed 🙂

    Found a similar thread from a while ago:

    http://www.sqlservercentral.com/Forums/Topic1220141-148-1.aspx#bm1220214

    Apparently Google is slower than human beings typing out lengthy answers.

    I totally lost my temper with that one. :blush:

    Wait. Does this mean we're back on topic? :w00t:

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • GilaMonster (1/27/2012)


    If I'm helping someone and they come back and say something about urgent, that thread automatically goes to the bottom of my things to look at.

    "It's urgent" = "I'm more important than everyone else here and hence you must help me first". Um, no.

    I love some of those topic titles:

    "pls help me. Itz urgent."

    With absolute no summary of the problem at all.

    Most of the time in caps or with smileys.

    Mmmmm. Shall I click on that one?

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • Koen Verbeeck (1/27/2012)


    SQL Kiwi (1/27/2012)


    Koen Verbeeck (1/27/2012)


    I got the swift reply: "No links. Only code samples plz. Its urgent."

    Whenever I see "...it's urgent...", I think: "Not for me it isn't."

    Indeed 🙂

    Found a similar thread from a while ago:

    http://www.sqlservercentral.com/Forums/Topic1220141-148-1.aspx#bm1220214

    Apparently Google is slower than human beings typing out lengthy answers.

    I totally lost my temper with that one. :blush:

    Wait. Does this mean we're back on topic? :w00t:

    Only JUST long enough to confuse Roy.


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • My favourite 'not enough information' recently was at SQLTeam. Question basically stated "The following code throws an error. Please help

    Dim CPDHourUpdate As SqlDataSource = New SqlDataSource() CPDHourUpdate.ConnectionString = ConfigurationManager.ConnectionStrings("Application").ToString() CPDHourUpdate.UpdateCommand = "UPDATE UserDetails SET CPD_Hours = CPD_Hours + 2 WHERE UserId = @userid" CPDHourUpdate.UpdateParameters.Add("UserId", Session("UserID").ToString()) Dim rowsAffected As Integer = CPDHourUpdate.Update()"

    That's it, nothing else. Now the update looks syntactically valid, and I don't know VB enough to tell if there's something wrong with the rest. I asked for the error message and the table definition as without those I wouldn't be able to help.

    The reply was "So don't answer then??? Just a suggestion...."

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • GilaMonster (1/27/2012)


    The reply was "So don't answer then??? Just a suggestion...."

    Pffff. We don't get paid enough for this. 😀

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • GilaMonster (1/27/2012)


    My favourite 'not enough information' recently was at SQLTeam. Question basically stated "The following code throws an error. Please help

    Dim CPDHourUpdate As SqlDataSource = New SqlDataSource() CPDHourUpdate.ConnectionString = ConfigurationManager.ConnectionStrings("Application").ToString() CPDHourUpdate.UpdateCommand = "UPDATE UserDetails SET CPD_Hours = CPD_Hours + 2 WHERE UserId = @userid" CPDHourUpdate.UpdateParameters.Add("UserId", Session("UserID").ToString()) Dim rowsAffected As Integer = CPDHourUpdate.Update()"

    That's it, nothing else. Now the update looks syntactically valid, and I don't know VB enough to tell if there's something wrong with the rest. I asked for the error message and the table definition as without those I wouldn't be able to help.

    The reply was "So don't answer then??? Just a suggestion...."

    Blazing Saddles


    You've got to remember that these are just simple farmers. These are people of the land. The common clay of the new West. You know... morons.


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • GilaMonster (1/27/2012)


    Dim CPDHourUpdate As SqlDataSource = New SqlDataSource() CPDHourUpdate.ConnectionString = ConfigurationManager.ConnectionStrings("Application").ToString() CPDHourUpdate.UpdateCommand = "UPDATE UserDetails SET CPD_Hours = CPD_Hours + 2 WHERE UserId = @userid" CPDHourUpdate.UpdateParameters.Add("UserId", Session("UserID").ToString()) Dim rowsAffected As Integer = CPDHourUpdate.Update()"

    My complete guess would be that the first "UserId" parameter to the Add method ought to be "@UserId". But that would be me missing the point by quite some margin. In other news: Google indexes scarily fast:

  • Roy Ernest (1/26/2012)


    Somebody please put the brakes on the THREAD. It keeps moving from one random topic to another. It does not even care who gets run over with these topic changes.

    SCREECH! <crash>

    Whoops. I hope that wasn't your squirrel I just hit.

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • So, question of the day. How do you help people who refuse to be helped? People who are resistant to your suggestions of "test it" or "try this".

    I'm talking forum peeps AND people you may know locally.

    Thoughts?

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

Viewing 15 posts - 33,991 through 34,005 (of 66,749 total)

You must be logged in to reply to this topic. Login to reply