SQL Server Management Studio is reommending the following index on the database. If we were to implement this, would the system still be supported by Microsoft and can you see any potential issues surrounding this?
USE [CRMLive]
GO
CREATE NONCLUSTERED INDEX [<Name of Missing Index, sysname,>]
ON [dbo].[SystemUserBase] ([DomainName])
GO
Many Thanks