SQL Server 2008 - Worth the Wait
Hints can be used with indexed views if you find that the Query Optimizer has not chosen the ideal index for best performance. Normally, if the following conditions are met, the Query Optimizer will automatically consider the use of an indexed view if one exists when running a query:
But if you find that the index on the indexed view is not optimal, you can specify which index to use in an indexed view if you do the follow two steps:
If you want to force a clustered index scan of the indexed view, use: "INDEX(0)". [2000, 2005] Updated 5-1-2006