Viewing 15 posts - 41,146 through 41,160 (of 59,069 total)
Ok... I'm confused. I thought you said you weren't the one responsible for importing the data.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 9:35 pm
Can't tell just from what you posted but it has all the smackings of "parameter sniffing".
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 9:23 pm
Thanks for the explanation.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 9:16 pm
Man, I missed this one. Sorry for the delayed answer.
The only time you need the WITH(INDEX(0)) index hint is if you're going to do something whacky like Hugo did...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 9:12 pm
vivek-459197 (11/7/2009)
Resolve the issue replacing -
DECLARE @select VARCHAR(MAX)
With
DECLARE @select VARCHAR(8000)
&
changing this query
SELECT @object_id = object_id, @schema_id = schema_id
FROM sys.tables
...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 9:08 pm
SQL Guy-482125 (11/9/2009)
But unfortunately our DBA's prohibit using sp_rename in production environment.
Then use a synonym and alter it to where it's pointing.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 8:54 pm
Naeem_Khan (11/3/2009)
I don't think there are end of line characters.
If they print on different lines, I can just about guarantee there are. 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 8:49 pm
Heh... you should walk a mile in my shoes. 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 8:47 pm
Thanks. I appreciate the feedback. Glad it worked out for you.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 8:31 pm
Alvin Ramard (11/12/2009)
.... hmmmmm .... using checksum(newid()) as a random number generator.Might be an idea for an article. 😉
IIRC, it was Bob who asked me if he could write...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 8:15 pm
Heh... take a look, Lutz. The person who provided the data isn't even the OP. 😀 I'm out of here.
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 7:51 pm
Ok, Martin... I'm confused... I see that all of your code examples update the "RunningBalance" column... none of the code updates the "RunningTotal" column yet your complaint is that the...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 7:39 pm
Jeff Moden (11/12/2009)
Martin Butcher-415798 (11/12/2009)
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 6:07 am
Martin Butcher-415798 (11/12/2009)
--Jeff Moden
Change is inevitable... Change for the better is not.
November 12, 2009 at 6:02 am
Fatal Exception Error (11/11/2009)
Jeff Moden (11/9/2009)
Let me summarize my thoughts... every minute you spend testing during development will save an equal number of hours in post implementation debugging... maybe more....
--Jeff Moden
Change is inevitable... Change for the better is not.
November 11, 2009 at 4:22 pm
Viewing 15 posts - 41,146 through 41,160 (of 59,069 total)