sql server - SQL objects that use an index -
Is there a way to see that SQL objects use a fixed index from a data base. But I do not want to see the execution plan for every object because I have many stored procedures and ideas
PS it is for SQL 2005
Database objects do not use any index, do queries.
A table
or view
can be an index defined you can call it management studio
. In the property tree.
This or may not be later
table
or view
.
Whether or not to use index, it is decided during the query parsing phase.
Seeing the execution, the plan is the only way to determine whether the query uses the index or not.
Comments
Post a Comment