New answers tagged sql-azure
4
My suggestion would be:
(a) talk to Azure support. This is not how it should be working AFAIK.
(b) when building your list of indexes to rebuild/reorganize, add a NOT EXISTS clause to the criteria to eliminate any indexes with GUIDs as the leading key column:
SELECT name, etc.
FROM sys.indexes AS i
INNER JOIN sys.dm_db_index_physical_stats AS s
ON ...
...
Top 50 recent answers are included