Viewing 12 posts - 1 through 12 (of 12 total)
I want to drop and recreate indexes and partition some tables on the clustered server.
November 15, 2011 at 10:01 am
Do you want me to run the stats on the production box on the one that is already fixed?
November 14, 2011 at 10:31 am
Tried rebuilding. Fragmentation didn't change very much. The drop and recreate gave us 0% fragmentation.
November 14, 2011 at 10:28 am
On the new system we dropped and recreated all the indexes. On the production I tried a script that checks fragmentation levels and decides based on that whether or not...
November 13, 2011 at 9:48 pm
Tried to reindex them but they were still over 50%.
November 13, 2011 at 8:54 pm
The primary keys are fragmented too and can't drop them without dropping constraints and that's not a good idea to do on live production.
November 13, 2011 at 8:37 pm
Performance is terrible at this point. I have one table that has 1.8 billion records and several others that are pretty big but not that big. The indexes are fragmented...
November 13, 2011 at 8:33 pm
Have you tried the updated version that is NOT a procedure?
February 5, 2010 at 9:30 am
Ths is the correct solution.
Declare DDOKRaw cursor for
Select [field name],startingposition, fieldlength from dbo.TablefieldPositionLength
DECLARE @insert_part varchar(4000)
DECLARE @value_part varchar(4000)
DECLARE @loop int
Declare @fn varchar(128)
Declare @sp-2 varchar(128)
Declare @fl varchar(128)
Open DDOKRAW
Fetch...
December 8, 2008 at 11:22 am
Viewing 12 posts - 1 through 12 (of 12 total)