SQL Server 2008 Question: Download MS SQL Server 2008 PDF

Explain filtered indexes benefits?

Tweet Share WhatsApp

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 PDF Read All 27 MS SQL Server 2008 Questions
Previous QuestionNext Question
Explain filtered indexes?What is Compound Operators?