SQL Server 2008 Question:
Download Questions PDF

Explain filtered indexes benefits?

MS SQL Server 2008 Interview Question
MS SQL Server 2008 Interview Question

Answer:

The benefits of Filtered indexes are:

Has only that row which satisfies the filter criteria defined. This results in reducing the storage space need for the index.
The filtered index statistics are accurate and more compact. The reason is they consider only the tuples / rows in the filtered index and it reduces the cost of overhead of updating the statistics.
The data modification impact is less by using filtered index. Because it is updated only at the time where the data of the index is impacted.
The cost of maintenance will be reduced, because only the subset of rows will be considered which rebuilding the index.

Download MS SQL Server 2008 Interview Questions And Answers PDF

Previous QuestionNext Question
Explain filtered indexes?What is Compound Operators?