Viewing 15 posts - 4,936 through 4,950 (of 5,843 total)
Take a look in BOL for SET DATEFIRST. NOte that setting this inside sprocs causes a recompile event. Another possiblity is to store the start of the week...
October 27, 2008 at 9:13 pm
1) I am sure heaps have their uses, like other tools/options
2) speaking of options, I like having the ability to rebuild heaps in 2008!
October 27, 2008 at 8:50 pm
chunkym0nk3y (10/27/2008)
October 27, 2008 at 8:45 pm
Christopher Stobbs (10/27/2008)
Thanks for all the support.
The wierd thing is that the where clause is on a table that only has 170+- rows in it.
It seems that the problem...
October 27, 2008 at 10:14 am
assuming you have an identity PK you could do something like this (psuedo-code)
get maxid
@i = minid
while @i < @maxid
begin
begin tran
insert newtable select origtable where id between @i and @i +...
October 25, 2008 at 12:28 pm
This one is easy - do the migration in batches of 100-500K rows at a time with tlog backups after each batch or couple of batches (possibly with truncate_only if...
October 24, 2008 at 10:23 am
If you force this query you WILL wind up with some of them being just as bad as you have now. You can rob Peter or you can rob...
October 24, 2008 at 9:39 am
Can you please tell us which bug it was in CU9 that was causing the problem? I checked and cannot find any FIX from that update dealing with a...
October 24, 2008 at 9:02 am
ALZDBA (10/22/2008)
When you switched the NICs, did you rename the NIC ?
We tend to use "public network connection" for...
October 22, 2008 at 5:27 am
chileu17 (10/21/2008)
October 21, 2008 at 5:54 pm
One way around this is to move all 'prevent' columns such as varchar(max) off to another table with a one-to-one link back to the base table. Then a simple...
October 21, 2008 at 10:41 am
1) are you absolutely certain it is doing a CI SEEK and not a CI SCAN??
2) I am with the others on index maintenance. I would also...
October 21, 2008 at 10:38 am
For future reference (and for others who may do a web search and stumble across this thread), for your particular situation it would almost certainly have been better to drop...
October 21, 2008 at 10:35 am
You REALLY should have given us the function code! Anyway, I can tell what is happening even without it: You are doing table accesses on the options table...
October 21, 2008 at 10:31 am
only a little! We are still talking about tlogs and data in them and them filling up.
October 21, 2008 at 10:17 am
Viewing 15 posts - 4,936 through 4,950 (of 5,843 total)