SQL Server 2005 SP3 on Windows Server 2008 R2.
I ran a server side trace, and use DTA (database engine tuning advisor) On one table DTA is suggesting me to create a nonclustered index with clustering key. I mean per DTA I need to create a composite non clustred index with explicit clustred index key as part of non clustered index.
I thought at leaf level non clustred index already includes clustering key.
MeasurementDataID is a primay key and has clustered index on it...
CREAT INDEX IX_NAME(
[MeasurementID] ASC,
[SampleName] ASC,
[MeasurementDataID] ASC )