Click to Rate and Give Feedback

  Switch on low bandwidth view
Community Content
In this section
Statistics Annotations (0)
SQL Server 2005 Books Online (November 2008)
sys.dm_db_missing_index_groups

Updated: 17 July 2006

Returns information about what missing indexes are contained in a specific missing index group.

Column name Data type Description

index_group_handle

int

Identifies a missing index group.

index_handle

int

Identifies a missing index that belongs to the group specified by index_group_handle.

In SQL Server 2005, an index group contains only one index.

Information returned by sys.dm_db_missing_index_groups is updated when a query is optimized by the query optimizer, and is not persisted. Missing index information is kept only until SQL Server is restarted. Database administrators should periodically make backup copies of the missing index information if they want to keep it after server recycling.

Neither column of the output result set is a key, but together they form an index key.

For information about enabling and disabling missing index information collection, see About the Missing Indexes Feature.

For information about limitations of this feature, see Limitations for Using the Missing Indexes Feature.

For information about transaction consistency in relation to the missing indexes dynamic management objects, see About the Missing Indexes Feature.

To query this dynamic management view, users must be granted the VIEW SERVER STATE permission or any permission that implies the VIEW SERVER STATE permission.

Release History

17 July 2006

Changed content:
  • Clarified that a group contains only one index in the definition of index_handle.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
how to use for displaying information      MarkVanTilburg   |   Edit   |   Show History
select * from sys.dm_db_missing_index_groups
Tags What's this?: Add a tag
Flag as ContentBug
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker