Table of Contents

SQL Indexing

SQL Query should use index seeks and not index scans.

* https://www.red-gate.com/simple-talk/sql/performance/identifying-and-solving-index-scan-problems/

The below examples are taken from the “Actual Execution Plan”

Good Example with a Seek taking under a second to run

Bad SQL Example using a Scan - taking over a minute and 45 seconds to run