Forum Replies Created

Viewing 15 posts - 8,896 through 8,910 (of 39,771 total)

  • 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....

  • RE: Rethinking Hiring

    JustMarie (12/2/2015)


    There's far too many companies that want a senior level person with a lot of experience only to make an offer that is more in line with a junior...

  • RE: Rethinking Hiring

    lnardozi 61862 (12/2/2015)


    Here is the problem in a nutshell - salary opacity and salary equality.

    Demigod of SQL = x$

    Seat Filler = x$

    Unfortunately, just as much money is allocated by management...

  • RE: Rethinking Hiring

    Sean Redmond (12/2/2015)


    The qualities that I look for in interviewees are willingness to learn, ease with logical thought and thoroughness. Being able to the job quickly is good, too, but,...

  • RE: Rethinking Hiring

    Dalkeith (12/2/2015)


    The older I get the more I realise the shear inefficiency of people's ability to communicate both what they want and what they can provide.

    Certificates have in the past...

  • RE: Rethinking Hiring

    ian.lee 73912 (12/2/2015)


    Negative thinking senior manager: "What if we invest in training and developing our people and they leave us?"

    Positive thinking senior manager: "What if we don't and they stay?"

    This...

Viewing 15 posts - 8,896 through 8,910 (of 39,771 total)