December 20, 2024 at 4:54 pm
Tables have identical structure but different indexes (except) PK and different stats. all DTA recommendations for stats were saved on Table1 all have been deleted on Table 2. Could these stats be the reason for the difference in logical reads? Same query executed against both tables.
December 21, 2024 at 5:10 pm
Thanks for posting your issue and hopefully someone will answer soon.
This is an automated bump to increase visibility of your question.
December 24, 2024 at 7:32 pm
You've answered you own question. The tables are, in fact, NOT identical. You different indexes, which can make the difference between a full table scan (or clustered index scan) and an appropriate seek followed by a solid range scan. Even if the indexes were identical, is the data? And, have you checked for page density difference between the two table. Could one of them be suffering with the problem of "Fast Inserts" where even the insertion of 1 new row can create a whole new, nearly completely empty extent?
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply