Running a very simple query:
SELECT TOP 10 *
FROM WH.dbo.vw_data m
ORDER BY DateCompleted
Takes around 4 minutes.
96% of the execution is taken up by the following:
What does the warning mean and how is it interpretted?
The field DateCompleted
isn't indexed: does this mean unless we hit an alternative field with an index, or add an index to DateCompleted
it will always be slow?