Hello everyone,
I am trying to create an alert rule for a query with three column series. time stamp, status and feedback.
In the alert output, the names of the columns are getting replaced with series 1 and series 2. there are more series and this is confusing. What am i doing wrong that is making the series name get lost?
CREATE TABLE #Tempt
(timestamp datetime,
status INT, feedback INT
);
DECLARE @rounded_time_from DATETIME = DATEADD(MINUTE, DATEDIFF(MINUTE, 0, $__timeFrom()), 0);
INSERT INTO #Tempt
(timestamp,
status, feedback)
EXEC DCS.usc
@rounded_time_from, $__timeTo(),
'4016, 3005',
15;
SELECT *
FROM #Tempt;
DROP TABLE #Tempt;
Thank you in advance!