I have a cluster index whose index analysis is like:
Reads: 3,429,540 (329,579 seek 241,236 scan 2,858,725 lookup) Writes:153,774 As I can see the scan and lookups are very high. I want to reduce it .You can see the design below: USE [XYZ] GO /****** Object: Index [PK_JobElement] Script Date: 19/06/2014 2:04:23 PM ******/ ALTER TABLE[dbo].[JobElement]ADD CONSTRAINT[PK_JobElement]PRIMARYKEYCLUSTERED ( [JobElementID]ASC ) WITH(PAD_INDEX=OFF,STATISTICS_NORECOMPUTE=OFF,SORT_IN_TEMPDB=OFF,IGNORE_DUP_KEY=OFF,ONLINE=OFF,ALLOW_ROW_LOCKS=ON,ALLOW_PAGE_LOCKS=ON,FILLFACTOR=90)ON[PRIMARY] GO
|
Thanks