I'd start with this:SELECT OBJECT_NAME([object_id]) AS ObjectName, index_id AS IndexId, avg_fragmentation_in_percent AS FragPercent, record_count AS RecordCount, index_type_desc AS IndexType, alloc_unit_type_desc AS AllocUnitTypeFROM sys.dm_db_index_physical_stats (DB_ID('DatabaseNameGoesHere'), NULL, NULL, NULL, 'SAMPLED')WHERE avg_fragmentation_in_percent > 10 AND avg_fragmentation_in_percent < 100 AND index_id > 0ORDER BY FragPercent DESC
Tara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/