Forum Replies Created

Viewing 15 posts - 8,881 through 8,895 (of 39,771 total)

  • RE: How to Get SQL to Change Date is Time Goes Past Midnight.

    If you aren't storing dates, be careful here. I would bet you get a bug at some point when a shift or a schedule goes over 24 hours. I've worked...

  • RE: SQL Server Agent 2012 Permissions with domain account

    Make sure no proxy is set and ensure that the job itself has the account correctly chosen. There are various ways to change this, and configure different accounts for a...

  • RE: Are the posted questions getting worse?

    SQLBits is going to be iffy for me. I need to be back here on Sun, May 8, so I may have to check if I can speak on Friday...

  • RE: SELECT last not null date

    Ah, good one Luis. I realize I misread this as first. You want to parse out related rows.

    I think Luis' solution will work, but only if your rules are for...

  • RE: Windows Server Core & SQL Server

    You are asking too much of Server Core.

    If you're remote, and you need client tools in a GUI, then you should have a remote machine that you connect to, which...

  • RE: SELECT last not null date

    I'm guessing the end set is what you want? Find the max date for each id

    SELECT Id

    , MAX(te.Date1) AS 'Resubmitted On'

    FROM #TEmp AS te

    GROUP BY id

    Then you can put...

  • RE: Combine text from two records into one

    I agree with Sergiy. XML makes this easy.

    As a hint, you can use the idea of joining a column to itself.

    select '' + mycol

    from mytable

    If you have the tsqlt...

  • RE: What is DevOps?

    Tavis Reddick (12/9/2015)


    Could there be a tendency, over time and in a successful devops team, for individuals to learn new skills from the 'other' side, to the detriment of learning...

  • RE: What is DevOps?

    Michael L John (12/3/2015)


    DevOps is what's implemented to break down the communication barriers and silos that were created when Agile was implemented.

    To me, it's only a new name for...

  • RE: NoSQL Complaints

    IIRC, Amazon uses messaging between systems, so the high volumes of orders get queued and processed into a relational system. It's usually seconds, but the queue allows for delays.

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

Viewing 15 posts - 8,881 through 8,895 (of 39,771 total)