Forum Replies Created

Viewing 15 posts - 106 through 120 (of 241 total)

  • RE: Create Index based on execution plan

    I'll venture that the 'OR' clause in the join statement is the issue here. You're looking for values that are either NULL (at one end of the index range) or...

  • RE: Installating SSIS with Named Instance

    Great question. The referenced article has a really good overview of how this all hangs together, too. Definitely learned something today!

  • RE: Use of BETWEEN and DATETIME

    Good question - without the reversed order of the variables in the assignment of values, which was clearly designed to put a 'gotcha' into the mix. However, as many have...

  • RE: Raw Materials - Time Warp

    Sad part is, she'll probably bust her backside and actually deliver the product by tomorrow, then be frustrated when it actually takes 3 weeks for the contract to be available...

  • RE: Find birthdays of a week

    Birthdays (as opposed to birth dates) are a surprisingly difficult data item to work with because they represent a point on a line (from January 1 through December 31) rather...

  • RE: Finding Max Value from a 4-character Date String

    kramaswamy (8/29/2011)


    Hm. So you're using the max of a string value. That works in all cases? Hadn't thought about trying that, 'cause I wasn't sure how SQL Server handles taking...

  • RE: Finding Max Value from a 4-character Date String

    Since your working with what is essentially just text anyway, just continue treating it as text and do the following:

    SELECT MAX(RIGHT(FourCharDate,2) + LEFT(FourCharDate,2)) FROM #TestValues

    Result (from your sample data) is...

  • RE: Today's Random Word!

    bopeavy (8/22/2011)


    PAC-MAN

    Nostalgia 😉

  • RE: Today's Random Word!

    SQLRNNR (8/19/2011)


    innumerable

    stars

  • RE: Today's Random Word!

    Revenant (8/16/2011)


    SQLRNNR (8/16/2011)


    jjankiewicz (8/16/2011)


    Ointment

    Fly

    Unzipped

    awkward!

  • RE: How Far Will You Go (To Work)?

    Like others here, I live on acreage with lots of animals, gardens and trees, few neighbors. For 12 years I worked mostly out of my home office (50 foot commute),...

  • RE: Shrink Database

    Great question. Definitely learned something from this one.

  • RE: That case filter

    Ninja's_RGR'us (7/20/2011)


    Rob Schripsema (7/20/2011)


    Toreador (7/20/2011)


    My original thought was that there would be no rows returned as this was an insert.

    But I then thought that was silly, and I was being...

  • RE: That case filter

    Toreador (7/20/2011)


    My original thought was that there would be no rows returned as this was an insert.

    But I then thought that was silly, and I was being unfair on the...

  • RE: Removing duplicate records from a table

    parthi-1705 (5/26/2011)


    hi this can be done like this also, no need of where condition to be joined with main table (TABLEDUPLICATE) .You can just delete CTE which will reflect in...

Viewing 15 posts - 106 through 120 (of 241 total)