SQL: How do I choose a clustering key in SQL Server?
Clustered indexes vs heaps
OK so you know that a table can either be a heap or it can have a clustered index. The first question of course, is which should I use?
If you have any doubt at all, put a clustered index on the table. Most SQL server tables will end up performing better that way. There are a few scenarios like log files where heaps will be preferable but if you’re not sure, start with a clustered index.
2019-01-07

