|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Today @ 4:31 AM
Points: 1,194,
Visits: 2,119
|
|
Hi All
When using the sys.dm_db_index_usage_stats DMV to track Index Usage, is the user_updates column just for updates to records in the table or does it also contain the cumulative inserts as well?
Thanks
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Wednesday, May 15, 2013 2:33 AM
Points: 180,
Visits: 512
|
|
| The number of times index has been used in an update operation (this counts inserts, updates, and deletes) along with the time of the last update
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 3:30 AM
Points: 37,725,
Visits: 29,982
|
|
Inserts, updates and deletes. In this case, update means change, and the index is changed by all 3 of those.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Today @ 4:31 AM
Points: 1,194,
Visits: 2,119
|
|
GilaMonster (10/23/2012) Inserts, updates and deletes. In this case, update means change, and the index is changed by all 3 of those.
Thanks for this
|
|
|
|