Forum Replies Created

Viewing 15 posts - 8,911 through 8,925 (of 39,804 total)

  • RE: Are the posted questions getting worse?

    BrainDonor (12/10/2015)


    Bought this one in Portland - designed to upset as many sci-fi fans as possible - http://fashionablygeek.com/t-shirts/trolling-shirt/

    Excellent

  • RE: How to select 200k data faster in sql

    If you pulled the data directly into a data reader and then processed that down on the client, is that faster?

  • RE: Are We Engineers?

    ccd3000 (12/10/2015)


    I think we're alchemists (most of us anyway) in terms of where we are in the profession's evolutionary development. Others in this thread have astutely pointed out that we...

  • RE: Are We Engineers?

    cjb110 (12/10/2015)


    Yes we are, and are we striving to reach the same standards as physical engineering, yes I think most of us are.

    I think that article was a disservice to...

  • RE: Are We Engineers?

    Manic Star (12/10/2015)


    We're janitors.

    We clean up the place, take out the trash and keep the mechanism humming along with regular maintenance that no one sees, appreciates or cares about...

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

Viewing 15 posts - 8,911 through 8,925 (of 39,804 total)