If the PK of the table is a standard int (Id) increment, and the extracted and updated records are almost always closer to the maximum Id, will there be any performance difference depending on whether the clustered PK index is sorted as ascending or descending?
When such a PK is created, SSMS by default sets the sort order of the index as ascending, and since the rows most accessible are always the ones closest to the current maximum identifier, I wonder if sorting will change the sort in descending order until the records are sorted from top to bottom, not bottom to top, and records closer to the top will be available most often.
source share