SQL Server Plans : difference between Index Scan / Inde…
https://stackoverflow.com/questions/1136524/sql-server-plans-difference-between-index-scan-index-seek
QuestionAnswer137answered Jul 16, 2009 at 10:07An index scan is where SQL server reads the whole of the index looking for matches - the time this takes is proportional to the size of the index. In general an index seek is preferable to an index scan (when the number of matching records is proprtionally much lower than the total number of records), as...
In general an index seek is preferable to an index scan (when the number of matching records is proprtionally much lower than the total number of records), as...
DA: 74 PA: 55 MOZ Rank: 40