Answer Posted / sumit
Index Scan is nothing but scanning on the data pages from
the first page to the last page. If there is an index on a
table, and if the query is touching a larger amount of
data, which means the query is retrieving more than 50
percent or 90 percent of the data, and then optimizer would
just scan all the data pages to retrieve the data rows. If
there is no index, then you might see a Table Scan (Index
Scan) in the execution plan.
Index seeks are generally preferred for the highly
selective queries. What that means is that the query is
just requesting a fewer number of rows or just retrieving
the other 10 (some documents says 15 percent) of the rows
of the table.
In Index Scan the cost is proportional to the total number
of rows in the table. Thus, a scan is an efficient strategy
if the table is small or if most of the rows qualify for
the predicate.
In Index Seek the cost is proportional to the number of
qualifying rows and pages rather than to the total number
of rows in the table.
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
What are the advantages of using stored procedures?
Give an example of why you would want to denormalize a database
What is co-related sub query?
You want to implement the one-to-many relationship while designing tables. How would you do it?
What is sharding?
How data can be copied from one table to another table?
Explain the difference between HTTP and HTTPS in database?
Hi all, can any one please tell me the difference between sql server 2008 and orace 9i
What is usually the first word in a sql query?
Explain the cursor lock types?
Explain syntax for dropping triggers?
What do you mean by stored techniques? How would we use it?
How to use group functions in the select clause in ms sql server?
How to get a list of columns in a view using "sys.columns" in ms sql server?
Is it possible to run multiple publications and different type of publications from the same distribution database? : sql server replication