Viewing 15 posts - 1,321 through 1,335 (of 2,463 total)
Derrick Smith (9/15/2010)
It shows that the indexes are not fragmented.
I am sorry , but which value showed it ?
September 15, 2010 at 9:33 pm
GilaMonster (9/13/2010)
Defrag only works on the leaf level of the index (level 0) .
Then what about the intermediate level ?
September 15, 2010 at 9:26 pm
Derrick Smith (9/15/2010)
statistics/indexes are just the most likely culprits here.
But the above DBCC results show that table is not fragmented and statistics are also updated ( from scan density value...
September 15, 2010 at 9:23 pm
Derrick Smith (9/14/2010)
It sounds more like Table 2 is missing indexes or statistics.
How did you get this from above first post ( from DBCC results)?
September 15, 2010 at 1:59 am
gprbobby (1/5/2010)
September 15, 2010 at 1:56 am
bhaskar.mythili (9/14/2010)
September 14, 2010 at 10:54 pm
nikhil.verma (9/13/2010)
I want to find the logins who have enabled the PW policy for the logins or users.
That should be available in sql server log
September 14, 2010 at 1:24 am
Raghavender (9/13/2010)
- Scan Density [Best Count:Actual Count].......: 98.40% [10788:10963]- Logical Scan Fragmentation ..................: 1.07%
It doesn't seem that this table requires any defragmentation.scan density is very much closer to 100% which...
September 13, 2010 at 10:12 pm
Vivek29 (9/13/2010)
Is there any way to know the initial size of a datafile when the db was created?
Goto database properties( right click it) >> select "files" option >> see...
September 13, 2010 at 9:52 pm
Raghavender (9/13/2010)
some tables are of 20000 pages and more......same situation no change in the fragmentation.... what should we need to do ?
run the above DBCC command for any one...
September 13, 2010 at 6:25 am
Raghavender (9/13/2010)
- Pages Scanned................................: 32
it is very small table , you cant expect good defragmentation here , table less then 1000 pages ( as i mentioned in my first...
September 13, 2010 at 5:12 am
Raghavender (9/13/2010)
can any one please help ?
POst its result also
SELECT avg_page_space_used_in_percent
,avg_fragmentation_in_percent
,index_level
,record_count
,page_count
,fragment_count
,avg_record_size_in_bytes
FROM sys.dm_db_index_physical_stats(DB_ID('Dbname'),OBJECT_ID('MediaService'),NULL,Null, null)
where index_id in (0,1)
September 13, 2010 at 4:31 am
EXEC msdb.dbo.sp_send_dbmail
@profile_name = 'SqlNotification' ,
@recipients = 'bkumar@abc.com',
@subject = 'SQl 2008 email test',
@body =...
September 13, 2010 at 4:10 am
Vivek29 (9/13/2010)
Adding a new drive and then attach\detach is fine. But what if no new drive is added.
From c_c_ post
2 reason: Detach then copy to bigger drive and reattach...
September 13, 2010 at 2:23 am
Viewing 15 posts - 1,321 through 1,335 (of 2,463 total)