Forum Replies Created

Viewing 15 posts - 1,201 through 1,215 (of 6,486 total)

  • RE: You Can Telecommute

    I also don't think it has to be an all of nothing scenario. There is a bit of value to having in person meetings (and the social aspects) even...

  • RE: You Can Telecommute

    gdonufrio (7/28/2011)


    my boss is very severe ... I must have real and official stats or articles to convince him ...

    Flipping the question around: other than seeing your butt in a...

  • RE: RAID 1 with 4 disks =?

    It all depends on the final amount of disk being made available. Using 4 disks, if the "virtual drive" space made available to the user is the same as...

  • RE: deleting consecutive rows

    GSquared (7/26/2011)


    There's a StatusDate column that gives the sequence, Matt. That should be adequate for that need, without an identity column.

    True. As long as the transactions and status...

  • RE: Trigger + CLR "threading" like workflow

    You may want to look into using service broker for the "fire and forget" part of the trigger. It will give you a queuing mechanism which after the message...

  • RE: NewSQL Can Save the World

    cengland0 (7/26/2011)


    Revenant (7/26/2011)


    cengland0 (7/26/2011)


    Does anyone have a link to the performance differences for all the different database products out there? I heard a rumor that the MS SQL license...

  • RE: deleting consecutive rows

    Keep in mind that your use of the word "last" in your problem description could be problematic. Look at the sample - how would one know which is...

  • RE: What is difference between For Loop, For Each Loop and Sequence containers?

    Sequence container isn't really about looping. it's just a way to logically group a "sequence of tasks" in a control flow.

    if you have a set of tasks:

    - needing...

  • RE: Checking for patterns in a int

    The Dixie Flatline (7/19/2011)


    Call the people at SETI[/url]. 😀

    Seriously, I think T-SQL may be the wrong tool for the job of discovering undefined patterns. This sounds like...

  • RE: I Want Stupid Employees

    anelson 66875 (7/20/2011)


    "Training" is dead - for IT jobs anyway. Training, as in getting somebody up to speed on a routine repeatable task like, say, machining an engine valve,...

  • RE: Dynamic CTE?

    Same caveats as others have put up - this will likely start having perf issues.

    Your best bet would be a simple cleanse routine which extracts the data and actually normalizes...

  • RE: Would you change to a better job for a lot less money?

    Loner (7/13/2011)


    Trey staker and brazumich - only you two understand job satifaction does not come from money.

    My boss asked me one time to write a .NET web program and I...

  • RE: Count with inner joins

    krypto69 (7/14/2011)


    That worked as far as accepting the altered proc...but when I go to run I get an error-

    Msg 102, Level 15, State 1, Line 47

    Incorrect syntax near ')'.

    this is...

  • RE: Second Normal Form

    Smendle (7/14/2011)


    Great article, didnt read any previous articles before (assuming you started at 1). It should be noted that with any production DB system, even one that seems simple,...

  • RE: Count with inner joins

    According to that - since you're dynmiacally building the query, so definitely don't need the function in the JOIN. Instead - use the parameter differently:

    SELECT * FROM PaymentViewPaged

    WHERE RowIndex...

Viewing 15 posts - 1,201 through 1,215 (of 6,486 total)