Viewing 15 posts - 55,681 through 55,695 (of 59,078 total)
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...
July 24, 2007 at 7:46 am
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...
July 23, 2007 at 11:54 pm
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...
July 23, 2007 at 11:52 pm
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...
July 23, 2007 at 11:40 pm
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...
July 23, 2007 at 11:31 pm
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...
July 23, 2007 at 11:18 pm
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...
July 23, 2007 at 11:12 pm
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...
July 23, 2007 at 11:10 pm
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...
July 23, 2007 at 9:52 pm
Thanks Wutang
, but, nope... just a regular ol' SQL guy answering questions if I can. ![]()
July 23, 2007 at 6:08 pm
No effect... maybe size of TempDB? Mine is set to 1 gig...
July 22, 2007 at 3:51 pm
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
...
July 22, 2007 at 2:16 pm
Viewing 15 posts - 55,681 through 55,695 (of 59,078 total)