For tables with no Clustered index, hint INDEX(0) will force a table scan. But, I query a table with Clustered index. Is there any hint to force the optimizer to do a Table scan? I am using SQL Server 2000.
Once you have a clustered index on a table, it will always be used due to the fact that the data exists in the leaf node of the index. Sorry, but you cannot do this without dropping the index.
Tom Davis
tdavis@sark.com
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.