Viewing post 1 (of 1 total)
you can make SQL Server use particular index with a hint like:
SELECT * FROM [table_name] WITH( INDEX(index_name))
WHERE etc.
Try it.
July 3, 2003 at 6:24 am
#464039