Forum Replies Created

Viewing 15 posts - 8,926 through 8,940 (of 39,804 total)

  • RE: NoSQL Complaints

    xsevensinzx (12/4/2015)


    I really don't understand this article at all.

    NoSQL is such a broad topic that you really can't push out blanket statements about everything under the NoSQL umbrella much...

  • RE: An Inconceivable Scale

    william-700725 (12/9/2015)


    Steve Jones - SSC Editor (12/9/2015)


    I don't have fundamental problems with gathering some of this data. Now keeping it, that's perhaps something we don't want to do. However we...

  • RE: An Inconceivable Scale

    aalcala (12/9/2015)


    Steve,

    It has been a long time since I was in school, but I thought an Exabyte would be 3 orders of magnitude larger than a petabyte.

    I thought it was...

  • RE: An Inconceivable Scale

    william-700725 (12/9/2015)


    I would suggest that the growth in the volume of data stored does not reflect a growth in actual information.

    If you look, how much of that growth is...

  • RE: An Inconceivable Scale

    Sean Redmond (12/9/2015)


    A part of this increase in data-size is our sloppiness in database design. We throw in GUIDs everywhere partly because it is in fashion, partly because it makes...

  • RE: Restoring a mirrored database to a different server. Why does it occasionally fail?

    Could it be that once you've restored it someone runs something that does an ALTER DATABASE to turn mirroring on the dev db?

    Otherwise, I'm not sure. This shouldn't be an...

  • RE: Fantasy Football 2015

    roryp 96873 (12/3/2015)


    Steve Jones - SSC Editor (12/3/2015)


    Last tie breaker is who beat Steve the most

    That's almost an 11-way tie right now I think. :hehe:

    Probably

  • RE: What is DevOps?

    Rod at work (12/3/2015)


    Argh!! Steve, please stop writing articles that interest me so much. Ones that I want to respond to. Believe me, I want to respond to this, but...

  • RE: QOTD Suggestion

    On the list

  • RE: Syntax help needed

    Can you not join to dm_exec_sessions here?

    INNER JOIN sys.dm_exec_sessions AS des

    ON des.session_id = r.session_id

  • RE: Read articles without requiring login

    Yes and no. We've almost always required a login, which helps us support the site, and I've been hearing this complaint for 15 years.

    We are looking at some work to...

  • RE: Fantasy Football 2015

    Last tie breaker is who beat Steve the most

  • RE: writing queries that easily readable

    My vote is you write this:

    with mycte (col)

    as

    (select ...

    );

    If you get a syntax error because:

    select mycol from mytable

    with mycte (col)

    as

    (select ...

    );

    then you do this:

    select mycol from mytable;

    with mycte (col)

    as

    (select ...

    );

    I...

  • RE: Are the posted questions getting worse?

    GilaMonster (12/2/2015)


    jasona.work (12/2/2015)


    //me doesn't always terminate statements with a semi-colon

    ///semi-colon;

    Neither do I, though I fix that any time I notice the mistake. I don't however start statements with terminators.

    ditto.

    I CTRL+B,...

  • RE: Rethinking Hiring

    Rod at work (12/2/2015)


    Oh Steve, man have you said a lot here that I'd like to respond to. But I think prudence forebears me from saying everything I'd like to....

Viewing 15 posts - 8,926 through 8,940 (of 39,804 total)