Forum Replies Created

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

  • RE: Mortgage amortization table

    TomThomson (8/31/2016)


    It's certainly indisputable that Microsoft (or was it the SQL Standards committees?) has completely screwed up fixed point arithmetic by having insane detemination of the precision and scale resulting...

    _____________
    Code for TallyGenerator

  • RE: Mortgage amortization table

    I'll have to disagree with you there, ol' friend. Automatic truncation to a scale of 6 isn't correct. At least not in my book. If a dollar store calculator did...

    _____________
    Code for TallyGenerator

  • RE: SQL Sever 2012 identity bug?

    Create a job which every minute records current time and ident_current('session').

    When you encounter the issue again - check when the identity was reseeded.

    That must give you a hint who's the...

    _____________
    Code for TallyGenerator

  • RE: Mortgage amortization table

    it's that the answer is wrong and CASE doesn't use the rounded-to-prevent-human-hair-fires answer with CASE

    Jeff, what do you say when somebody complains that he/she cannot find today's transactions by querying...

    _____________
    Code for TallyGenerator

  • RE: Mortgage amortization table

    Jeff, I usually quick on blaming MS for this and that.

    But in this case they cannot be blamed.

    They did not create any mess.

    Because there is no mess.

    It's all done right,...

    _____________
    Code for TallyGenerator

  • RE: Fuzzy Matching

    The Dixie Flatline (8/30/2016) if you are willing to pay the price in disk space, it's possible to generate a routine that will generate the typo patterns I handle with...

    _____________
    Code for TallyGenerator

  • RE: Parameter Sniffing Issue

    Grant Fritchey (8/31/2016)


    Sergiy (8/30/2016)


    JALLYKAMOZE (8/29/2016)


    What is the best and permanent way to take care of parameter sniffing?

    A clustered or covering index having the column used for the range selection as...

    _____________
    Code for TallyGenerator

  • RE: Fuzzy Matching

    RonMexico (8/30/2016)


    I'm reaching out looking for pointers as I'm starting to brainstorm ideas how to handle a task that has been presented to me. We receive a set of...

    _____________
    Code for TallyGenerator

  • RE: Parameter Sniffing Issue

    JALLYKAMOZE (8/29/2016)


    What is the best and permanent way to take care of parameter sniffing?

    A clustered or covering index having the column used for the range selection as a first column...

    _____________
    Code for TallyGenerator

  • RE: Mortgage amortization table

    Oh, gosh.

    No wonder our industry has a bad name.

    Tom, here is something for you (and others) to think about.

    And verify your instincts.

    DECLARE @d DECIMAL (38, 28), @f FLOAT

    SET @d...

    _____________
    Code for TallyGenerator

  • RE: calculating time difference

    if you're sure that no even would ever take longer than 24 hours then you can use this trick:

    SELECT (24*60 + DATEDIFF (MINUTE, '19:00' , '00:00'))%(24*60)

    But anyway, I'd recommend you...

    _____________
    Code for TallyGenerator

  • RE: Log File is full when reindexing... but not

    Grant Fritchey (8/30/2016)


    That's if they add shrink file. That wasn't in your original answer. You just talked about the truncate, which won't result in freeing space on the drive.

    Probably not...

    _____________
    Code for TallyGenerator

  • RE: Log File is full when reindexing... but not

    Grant Fritchey (8/30/2016)


    Problem is that the allocated space on the log would still be there, even if the log was truncated. From the stand point of the file system, they...

    _____________
    Code for TallyGenerator

  • RE: SQL Sever 2012 identity bug?

    Pivot-156509 (8/30/2016)


    @matt-2 Miller (#4): no

    @Sergiy, @Lynn Pettis: because the SESSION's row are delete few time after, you can see this on code. When a new row is inserted the previous...

    _____________
    Code for TallyGenerator

  • RE: Mortgage amortization table

    Solomon Rutzky (8/30/2016)


    It strikes me as odd to hear that the FLOAT / REAL datatype is "precise" when by definition it is "imprecise". The following quote is taken from the...

    _____________
    Code for TallyGenerator

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