Viewing 15 posts - 15,241 through 15,255 (of 22,211 total)
Dugi (4/29/2010)
WayneS (4/29/2010)
D.Oc (4/29/2010)
My bet is on GB's not TB.Especially singe "G" is right under "T" on the keyboard...
I think we choose the situation, now what any solution scenario for...
April 29, 2010 at 9:24 am
krypto69 (4/29/2010)
I've now been told that I need to not delete any records from table C.
I'm trying to run this:
declare @DaysToRetainSMALLINT
DECLARE @cutoffdate DATE
SET @daystoretain = '200'
SET @cutoffdate = '12/01/2009'
SELECT@CUTOFFDATE =...
April 29, 2010 at 9:21 am
ricardo_chicas (4/29/2010)
April 29, 2010 at 9:02 am
Dave Ballantyne (4/29/2010)
We can hate them both. Besides, they won't stop sending us beer. If you drink it, they'll keep exporting it.
You can always mark you share for my attention,...
April 29, 2010 at 8:44 am
Well, based on the information provided, I'd expect to see a seek, so I have to assume that some piece of information is missing. Without seeing any of the actual...
April 29, 2010 at 8:35 am
It really depends on how many cpu's you have. Zero sets it to use as many as it has available. Setting it to 1 limits it to a single cpu.
April 29, 2010 at 8:30 am
Paul White NZ (4/29/2010)
Grant Fritchey (4/29/2010)
Thanks. I'll pass it on if you haven't already.
I replied on Ask, but thanks for posting the thread reference there too.
I don't usually post on...
April 29, 2010 at 8:28 am
Sqlfrenzy (4/29/2010)
Grant Fritchey (4/29/2010)
April 29, 2010 at 8:27 am
It's not parallelism itself that's the issue, it's the cost threshold. The default value of 5 is ridiculously low. I'd suggest starting off with it at 25 and see things...
April 29, 2010 at 8:06 am
GilaMonster (4/29/2010)
Grant Fritchey (4/29/2010)
April 29, 2010 at 8:02 am
ricardo_chicas (4/29/2010)
April 29, 2010 at 7:56 am
Paul White NZ (4/29/2010)
Grant Fritchey (4/29/2010)
April 29, 2010 at 7:54 am
krypto69 (4/29/2010)
Im trying to use your statement:
But when I run the below code I get the error:
"Must declare the scalar variable "@CUTOFFDATE".
declare @DaysToRetainSMALLINT
DECLARE @cutoffdate DATE
SET @daystoretain = '1'
SET @cutoffdate =...
April 29, 2010 at 7:52 am
But... almost forgot this, part of why you use monotonically increasing values as clustered keys so often (or identities defaulted to the primary key) is because inserts always occur at...
April 29, 2010 at 7:50 am
It's down to page splitting as inserts and updates occur, the data may not fit on a given page. At that point the page is split. Half the data remains...
April 29, 2010 at 7:48 am
Viewing 15 posts - 15,241 through 15,255 (of 22,211 total)