Using ActivityMonitor, I got an SQL query that is slow.
It looks like this:
SELECT 1, 2, 3,
FROM MyTable
WHERE Column1 = @parameter1 AND Column2 = @parameter2
How do I execute the query with specific parameter values without changing the existing execution plan?
I would guess a combination of the following query hints would do that: