I have read that "every table should have at least one unique clustered index". I have also been told that if a column is a member of a comopsite index, queries that group or have 'where' clause on that column will not perform as well as if that column were indexed independently. So here is my dilema:
The unique clustered index consists of three columns. One of these columns is frequently used in groupings, where's and table joins. Should I create a new unique key so this field can be indexed independently?
The unique clustered index consists of three columns. One of these columns is frequently used in groupings, where's and table joins. Should I create a new unique key so this field can be indexed independently?