I am getting a warning message when I run even a simple select query against a view saying
The Join Order has been enforced because a local join hint is used.
The view has been modified recently and the change was using Left loop join for one of the joins from before.
Can anyone please tell me how to suppress this warning message?
Please provide me sample examples.
Thank You.
Add an
OPTION (FORCE ORDER)to the end of the query.