Bonjours à tous,
Dans la tableil y a la colonneCode:sys.dm_db_missing_index_group_stats
Je voudrais savoir quel est l'unité de mesure ? Millisecondes ?Code:avg_total_user_cost
Merci
Version imprimable
Bonjours à tous,
Dans la tableil y a la colonneCode:sys.dm_db_missing_index_group_stats
Je voudrais savoir quel est l'unité de mesure ? Millisecondes ?Code:avg_total_user_cost
Merci
Bonjour,
c'est un pourcentage : http://msdn.microsoft.com/en-us/library/ms345421.aspx
Cordialement,
Il est question de coût de requête ici. Il n'y a pas d'unité de mesure pour ce type de paramètre.
++
Re,
pour compléter la réponse du dessus :
C.F. http://www.geniiius.com/blog/missing-indexes/Citation:
This value does not have a unit, but it’s a value that tells you something about the estimated cost of the queries that needed the index. The higher the value is, the more resource intensive is the query that needs the index. If the value is very low (perhaps 0.01) then the query that needed the index was not very resource intensive. Think of a query that executes in 2ms compared to a query that takes 2000ms. You will probably gain more by adding an index to satisfy the 2000ms query than the 2ms one.
Bonne journée,