Viewing 15 posts - 4,936 through 4,950 (of 5,841 total)
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
chileu17 (10/20/2008)
October 20, 2008 at 4:03 pm
I recommend (if not done yet) that you do a forced-failover (and fail back) under load to ensure everything is truly functional. Glad you had a (relatively) simple resolution!
October 20, 2008 at 11:22 am
Viewing 15 posts - 4,936 through 4,950 (of 5,841 total)