In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
SELECT
dbo.vw_mos_DPL_Reporting.UserID,
dbo.vw_mos_DPL_Reporting.First_NM,
dbo.vw_mos_DPL_Reporting.Last_NM,
dbo.vw_mos_DPL_Reporting.MgrName,
CASE
WHEN dbo.vw_mos_DPL_Reporting.PendReason = 'On Prod' THEN DATEDIFF(s,
dbo.vw_mos_DPL_Reporting.DateStart,
dbo.vw_mos_DPL_Reporting.DateEnd)
ELSE 0 END AS OnProd,
CASE
WHEN dbo.vw_mos_DPL_Reporting.PendReason = 'Off Prod' THEN DATEDIFF(s,
dbo.vw_mos_DPL_Reporting.DateStart,
dbo.vw_mos_DPL_Reporting.DateEnd)
ELSE 0 END AS OffProd INTO #ProdTmp
FROM
dbo.vw_mos_DPL_Reporting
WHERE
dbo.vw_mos_DPL_Reporting.PendReason LIKE '%Prod%'