1
BEGIN
2
-- This stored procedure is intended to keep the systemeventdates tables with the least amount of records as possible while still keeping at least one entry per eventsource type.
3
DROP TEMPORARY TABLE IF EXISTS `tempSystemEventDates`;
4
CREATE TEMPORARY TABLE `tempSystemEventDates` (EventSource VARCHAR(50),eventdate TIMESTAMP);
5
INSERT INTO `tempSystemEventDates` SELECT 'AlertTemplates', MAX(EventDate) FROM SystemEventDates WHERE EventSource='AlertTemplates';
6
INSERT INTO `tempSystemEventDates` SELECT 'WriteConfigControl', MAX(EventDate) FROM SystemEventDates WHERE EventSource='WriteConfigControl';
7
TRUNCATE `SystemEventDates`;
8
INSERT IGNORE INTO `SystemEventDates` (`EventSource`,`EventDate`) SELECT `EventSource`,`EventDate` FROM `tempSystemEventDates`;
9
DROP TEMPORARY TABLE IF EXISTS `tempSystemEventDates`;
10
CALL PopulateSystemEventDates();
11
END