We are running a 3rd party Sql Monitor tool that reports we have excessive fragmentation in our master database. After hitting my head for some time I determined they were referring to the spt_values tables in the master database. Here are its fragmentation specs:
DB: master
Table: spt_values
Index: ix2_spt_values_nu_nc
Average_fragmentation_in_percent: 80
This is a system table (appears to be a lookup table mapping common sql strings to integer values, has about 2500 rows) and I'm nervous about defragging it. What's are your thoughts on this matter?
TIA,
edm2