I am running sp_BlitzIndex from Brent Ozar and get a number of these items.
Multiple Index Personalities: Borderline duplicate keys
I'm not 100% on what to do but here is an example below.
CREATE INDEX [IX_Test] ON [Test] ( [SportId] ) WITH (FILLFACTOR=100, ONLINE=?, SORT_IN_TEMPDB=?, DATA_COMPRESSION=?);
CREATE UNIQUE INDEX [IX_Test_2] ON [Test] ( [SportId], [AnotherId] ) WITH (FILLFACTOR=100, ONLINE=?, SORT_IN_TEMPDB=?, DATA_COMPRESSION=?);
As you can see they seem similar. My question is does it hurt to remove the first index SportID but keep the dual index (SportId, TextId).
What is my best approach here?