You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps to Reproduce:
Connect to AdventureWorks2012 and paste in this query:
SELECT *
FROM dbo.DatabaseLog
WHERE DatabaseLogID BETWEEN 195 AND 198;
Click Explain, or select Run Current Query with Actual Plan from the Command Palette.
The resulting plan includes an operator "Key Lookup (Clustered)".
The corresponding node in the showplan's XML reads:
<RelOp NodeId="3" PhysicalOp="RID Lookup" LogicalOp="RID Lookup" (...) >
The node showing a Key Lookup should show an RID Lookup instead,
The text was updated successfully, but these errors were encountered:
Steps to Reproduce:
Connect to AdventureWorks2012 and paste in this query:
SELECT *
FROM dbo.DatabaseLog
WHERE DatabaseLogID BETWEEN 195 AND 198;
Click Explain, or select Run Current Query with Actual Plan from the Command Palette.
The resulting plan includes an operator "Key Lookup (Clustered)".
The corresponding node in the showplan's XML reads:
<RelOp NodeId="3" PhysicalOp="RID Lookup" LogicalOp="RID Lookup" (...) >
The node showing a Key Lookup should show an RID Lookup instead,
The text was updated successfully, but these errors were encountered: