Forum Replies Created

Viewing 15 posts - 166 through 180 (of 515 total)

  • RE: Will Coding Be Less Important?

    I've been coding since 1976. I've been hearing about coders being replaced since...1976. 🙂

    AI won't replace humans in the loop, just as voice dictation didn't replace the keyboard....

  • RE: Pause and Backtrack

    So...ideally what you want is a dependency tracking feature that allows changes to a (set of related) tables to be rolled back independently of changes in (unrelated) tables?

  • RE: Intrinsic or Extrinsic

    doodlingdba - Friday, May 4, 2018 9:07 AM

    Adding a slightly different spin on the debate:
    What about the fact that we have to...

  • RE: Intrinsic or Extrinsic

    Intrinsic, pure and simple.

    When I was 16 years old I walked into the computer room at my highschool for the very first time. Up to that point I had...

  • RE: The Right Connection

    Well, the perfect solution is isolation of responsibility. Developers never touch production, DBAs never touch anything BUT production. Easy. 🙂

    That assumes, of course, your company has sufficient financial...

  • RE: Detaching CDC

    So, by the question's own wording, the "correct" answer is actually wrong. The question says "new instance" the explanation says "same instance".

    Badly constructed question!

  • RE: Is the DBA Title Dying?

    Jeff Moden - Friday, April 6, 2018 7:42 AM

    roger.plowman - Thursday, April 5, 2018 8:54 AM

    April 6, 2018 at 8:03 am

    #1985805

  • RE: Is the DBA Title Dying?

    Jeff Moden - Thursday, April 5, 2018 8:26 AM

    roger.plowman - Thursday, April 5, 2018 7:18 AM

    April 5, 2018 at 8:54 am

    #1985691

  • RE: Is the DBA Title Dying?

    Jeff Moden - Thursday, April 5, 2018 6:58 AM

    I actually wouldn't want the server to do a whole lot of stuff auto-magically. ...

  • RE: Is the DBA Title Dying?

    For a long time DBA meant "person who did what the database should have been doing but was too stupid to do."

    I mean, why isn't the query...

  • RE: ETL or ELT

    T/SQL is pretty useless for any kind of complex string manipulation, which is the lion's share of the T in my experience. So I like a hybrid approach, transforming disparate...

  • RE: Storing a variable with a SELECT, and why it didn't work.

    What about:

    DECLARE @Date DATE  = COALESCE((SELECT [Some Date]
                                    FROM   [Some Table]
                                    WHERE  [Some Key] = 'Key Value'),'1900-01-01')

    This lets you declare, set,...

  • RE: SQL Server Authenticated Users, why are we still using them?

    We're small enough that we have no trouble using AD exclusively. One really nice feature of AD is hierarchal security, where assigning a single group to a user has the...

  • RE: The Nightmare Letter

    Eric M Russell - Wednesday, March 28, 2018 9:02 AM

    Well, I'm not a clairvoyant. Better than that; I'm an engineer. What I...

  • RE: The Nightmare Letter

    Now I'm really feeling sympathy toward any IT staff that are affected by this. Happily, my company keeps their business firmly inside U.S. borders so it doesn't affect me or...

Viewing 15 posts - 166 through 180 (of 515 total)