-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ken
committed
Apr 14, 2009
1 parent
cc9f644
commit 015c41e
Showing
30 changed files
with
55,837 additions
and
55,719 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
for the query: | ||
SELECT FirstName, LastName | ||
FROM People p | ||
where p.Username BETWEEN 35260922 AND 36000000 | ||
|
||
using the following non-covering index: | ||
CREATE INDEX IX_People_Username | ||
ON People (Username) INCLUDE (FirstName, LastName) | ||
The query execution IO was: | ||
Table 'People'. Scan count 2, logical reads 7558, physical reads 0, read-ahead reads 12, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0. | ||
and the execution time was: | ||
CPU time = 530 ms, elapsed time = 656 ms. | ||
|
||
using the following covering index: | ||
CREATE INDEX IX_People_Username | ||
ON People (Username) | ||
The query execution IO was: | ||
Table 'People'. Scan count 1, logical reads 4604, physical reads 0, read-ahead reads 2, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0. | ||
and the execution time was: | ||
CPU time = 172 ms, elapsed time = 513 ms. | ||
|
||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.