Forum Replies Created

Viewing 15 posts - 4,246 through 4,260 (of 14,953 total)

  • RE: Database Kill

    Eric M Russell (5/19/2011)


    My guess is that either the transaction has already completed or you've rebooted the server by now. However, I found an article on Microsoft's CSS site about...

  • RE: Database Kill

    Had to failover the server to the passive node to get it done, but it's a done deal at this point.

    You should see the "Total CPU Time" on that query...

  • RE: Update statment Help

    rocky_498 (5/19/2011)


    Here is the problem, ID Column is not in sequence,

    ID = H:1105181028581180

    ID = H:1105181028581976

    And so on……

    Those look sequential to me. They'll sort correctly as strings if they...

  • RE: The Three Percent Difference

    Burhan Insel-262978 (5/19/2011)


    I'd highly disagree here. It's rather insulting to make this comparison and it's more extreme than needed. You can easily leave your job in most any situation.

    We, employees,...

  • RE: The Three Percent Difference

    Ninja's_RGR'us (5/19/2011)


    GSquared (5/19/2011)


    Ninja's_RGR'us (5/19/2011)


    GSquared (5/19/2011)


    I've gone from $7.50/hour in 2001 to, well HR says I can't say the number but it's more than 4X that. None of it has...

  • RE: The Three Percent Difference

    Ninja's_RGR'us (5/19/2011)


    GSquared (5/19/2011)


    I've gone from $7.50/hour in 2001 to, well HR says I can't say the number but it's more than 4X that. None of it has been through...

  • RE: The Three Percent Difference

    I've gone from $7.50/hour in 2001 to, well HR says I can't say the number but it's more than 4X that. None of it has been through percentage raises...

  • RE: Update statment Help

    Is there a way to tell from that what the next record in the sequence is?

  • RE: Database Search for pattern

    Then your best bet will be to dynamically create a query that checks all string datatypes in all tables.

    Something like:

    select 'select ' + case system_type_id when 39 then 'convert(varchar(max), '

    when...

  • RE: Database Development or Business Intelligence Development and Maintenance

    BI has the best market in the US right now. Good pay, lots of job opportunities for skilled people. I don't know about other markets, but in the...

  • RE: t-sql Help

    I need to know what you want if there are three "C-125"s, for example, before I could write any code. What do you want on the third one, if...

  • RE: Combinations and Permutations

    LutzM (5/18/2011)


    GSquared (5/18/2011)


    I put in the non-repeat bit because of the way Steve wrote his original Where clause. I just moved it into the Joins.

    Gus: If this concept is...

  • RE: Update statment Help

    Something to keep in mind:

    The sample I gave only works if the ID column doesn't have any missing values. If it does, you need to start the Merge with...

  • RE: Update statment Help

    That one's easy, assuming I got it right on what you're trying to do.

    Start with this:

    select *

    from MyTable as MT1

    inner join MyTable as MT2

    on MT1.ID = MT2.ID -1;

    You'll see the...

Viewing 15 posts - 4,246 through 4,260 (of 14,953 total)