Hi everyone ,
I've found some missing indexes when I checked query plan from SQL and Suggestion from SQL server for recreate missing query as follows
USE [AXDB]
GO
CREATE NONCLUSTERED INDEX [<Name of Missing Index, sysname,>]
ON [dbo].[INVENTTRANS] ([TRANSTYPE],[DATAAREAID])
INCLUDE ([TRANSREFID],[RECID])
GO
so I have question that How do i create this on AOT and which field i have to add to Index [TRANSTYPE],[DATAAREAID] or [TRANSREFID],[RECID] or both sets?.
any help will be highly appreciated.
thanks & Regards,
Amith Prasanna