What “Clustered Index Scan (Clustered)” means on SQL Server execution plan?
I would appreciate any explanations to “Clustered Index Scan (Clustered)” I will try to put in the easiest manner, for better understanding you need to understand both index seek and scan. SO lets build the table use tempdb GO create table scanseek (id int , name varchar(50) default (‘some random names’) ) create clustered index … Read more