I would like to create a covering index to improve query performance.
I do know that this one more index will impact INSERT
performance.
The table has only INSERT
operations no UPDATE
or DELETE
. The data in covering index will unique because the index keys contain the table's PK, so I need no further constraining uniqueness, my only goal to improve query performance.
Question
Which type of index will the optimal (means degrade less) the INSERT
performance, unique or not unique?