You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Workaround: Manually change Adder in measurement table. Note that this would need to be reversed when a fix is applied.
UPDATE Measurement SET Measurement.Adder =
(SELECT COUNT(M.SignalReference) * D.FramesPerSecond*10
FROM [openPDCv29].[dbo].[Device] AS D
INNER JOIN Measurement AS M ON M.DeviceID = D.ID
WHERE M.SignalReference LIKE D.Acronym + '-%' AND M.SignalTypeID <> 8 AND M.SignalTypeID <> 11
GROUP BY D.ID, D.IsConcentrator, D.FramesPerSecond HAVING D.IsConcentrator = 0 AND D.ID = Measurement.DeviceID
) FROM Measurement
WHERE SignalReference LIKE '%PMU-ST5'
Replicated in 2.9.130+.
The Expected measurements statistics (ST5) reports 0 expected measurements for a Device.
The text was updated successfully, but these errors were encountered: