April 23, 2014 at 6:42 am
Why did you create two identical indexes?
How many environments do you have which will run this query?
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
April 23, 2014 at 6:46 am
First i made changes to existing index but as due to business rule, i have rollbacked the changed and created new index similar to 14147.
April 23, 2014 at 8:07 am
So how on earth are you supposed to properly tune a table when you can't change its indexes?? :w00t:
Edit: Moved the emoticon after the ??.
SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".
April 23, 2014 at 10:08 am
I have downloaded and looked at both of the latest sqlplans, both use the same index due to the use of the WITH(INDEX(AI_OperatorCBGEstimate_HAP)) index hint on the query.
April 24, 2014 at 2:07 am
Lynn Pettis (4/23/2014)
I have downloaded and looked at both of the latest sqlplans, both use the same index due to the use of the WITH(INDEX(AI_OperatorCBGEstimate_HAP)) index hint on the query.
File HAP.sqlplan
Here's the query from the plan:
select KeyInstn,MAX(dateendedstandard) DateEndedStandard
from ObjectViews..InternalOperCBGEstimate WITH ( INDEX ( AI_OperatorCBGEstimate_HAP ) )
where dateendedstandard < @Current and mostrecentsequence = 1 and UpdOperation<2
group by KeyInstn
The index seek uses filtered nonclustered index [AI_OperatorCBGEstimate_HAP] with an estimated i/o cost of 12.6.
The seek is on DateEndedStandard and there's no residual predicate.
Forced index is false.
File 14197.sqlplan
Here's the query from the plan:
select KeyInstn,MAX(dateendedstandard) DateEndedStandard
from ObjectViews..InternalOperCBGEstimate WITH ( INDEX ( AI_OperatorCBGEstimate_HAP ) )
where dateendedstandard < @Current and mostrecentsequence = 1 and UpdOperation<2
group by KeyInstn
The index seek uses filtered nonclustered index [AI_OperatorCBGEstimate_14947] with an estimated i/o cost of 6.4.
The seek is on DateEndedStandard and there's no residual predicate.
Forced index is false.
The queries don't match the plans.
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
Viewing 5 posts - 46 through 49 (of 49 total)
You must be logged in to reply to this topic. Login to reply