When I run this query...select object_name(os.object_id) as 'Table Name', i.name as 'Index Name',*from sys.dm_db_index_operational_stats(db_id(), object_id('Activity'),NULL,NULL) os,sys.indexes iwhere os.index_id=i.index_idand i.object_id=os.object_idorder by os.index_id
I am returned five records representing the five indexes on the "Activity" table. Two of the indexes have zero range_scan_count and zero singleton_lookup_count. Does that mean that they are not being used and should be deleted?Thanks.