Forum Replies Created

Viewing 15 posts - 55,681 through 55,695 (of 59,078 total)

  • RE: Speeding up the Execution of Triggers.

    I'd recommend that changing the timeout is a patch, not a fix.  All you'd end up doing is allowing code that desparatly needs to be fixed to take its sweet...

  • RE: Problem with Date

    Did the problem happen to start on the 13th of July?  Sounds like someone may have changed the default date format from dmy to mdy and your code isn't handling...

  • RE: delete

    Everyone is forgetting about the "other" problem... the excessive row sizes that arise when doing the table ALTERs for the nocheck of constraints.  It means that one or more of...

  • RE: altered proc, but old version is showing up on sql monitor?

    You may want to try using DBCC FREEPROCCACHE.  If that doesn't do it and it's a GUI proc, you may have to clear cache for the application.  Since I don't...

  • RE: Rounding numeric data

    Ram,

    Dunno about the others, but I need to know why you want to simply throw away so many decimal places especially since the target datatype (Money) has 4 decimal places...

  • RE: Whoops

    I agree... bad message to promote and, depending on what the server is doing, if you down it, you could cost someone their life (seriously... 911 control server, traffic light...

  • RE: Why DTS ignores a second extension when loading a text file?

    Like I said on the other forum, I think you have a bit of a technical error in the code.  I think this...

    ImportFullPath = ImportPath & ImportFile

    ... should be this...

    ImportFullPath...

  • RE: Speeding up the Execution of Triggers.

    This is what I call "RBAR" (pronounced "ree-bar" and is a "Modenism" for "Row by Agonizing Row") because you have variables on the right side of an update.  The only...

  • RE: Recurring values

    Thank you for the detailed explanation... I have just a couple more questions , if you don't mind...

    Can you post the table of results for the "A" items?

    In the formula 18(18)+18(18-15), do...

  • RE: Recurring values

    Very nicely stated and explained, Steve.

  • RE: How to extract month and year(combined) from a date

    Thanks Wutang , but, nope... just a regular ol' SQL guy answering questions if I can.

  • RE: Recurring values

    Have you tried anything on your own?

  • RE: delete duplicates

    Now, there's a lesson learned... Thanks, Serqiy.

  • RE: delete duplicates

    No effect... maybe size of TempDB?  Mine is set to 1 gig...

  • RE: delete duplicates

    Ok... replaced the CROSS JOIN with INNER JOIN like it was supposed to be...

    DELETE AD1

    FROM   DBO.AILMENTDETAIL AS AD1

           INNER JOIN DBO.AILMENTDETAIL AS AD2

    ON  AD1.AILMENTID = AD2.AILMENTID

          ...

Viewing 15 posts - 55,681 through 55,695 (of 59,078 total)