Book Image

Microsoft SQL Server 2008 R2 Administration Cookbook

By : Satya Shyam K Jayanty
Book Image

Microsoft SQL Server 2008 R2 Administration Cookbook

By: Satya Shyam K Jayanty

Overview of this book

Table of Contents (19 chapters)
Microsoft SQL Server 2008 R2 Administration Cookbook
Credits
Foreword
About the Author
Acknowledgment
About the Reviewers
www.PacktPub.com
Preface
More DBA Manageability Best Practices

Implementing sustainable index maintenance practices for a VLDB & 24/7 environment


The index maintenance is one of the optimizing applications steps, and implementing sustainable index maintenance for a VLDB environment should be evaluated from several different perspectives. There are many cases for any performance hit will see on the databases, next to not having indexes or indexes that are very fragmented. Also, the issue will be multi-fold where fragmented indexes will take more space than to maintain the indexes alone impacting on all aspects of the database activities.

In this recipe, we will go through the strategy of implementing sustainable index maintenance practices for a very large database, and a database environment that must be available 24/7.

Getting ready

The process of implementing index maintenance practices includes the defragmentation of indexes by identifying the indexes that require maintenance activities, such as re-indexing or reorganizing.

In order to perform the...