I have created event in mysql to do repair, optimize, and delete old data from some tables on monthly bases.
delimiter $$ Create event CheckMyDB On SCHEDULE AT current_timestamp + INTERVAL 1 MONTH DO DELETE FROM SESSIONS where MYCONDITION; REPAIR TABLE DATANODES; OPTIMIZE TABLE DATANODES; $$
now how can i know what is the output of my event?? in other words can i save the output of delete, repair and otimize in table (something like INTO OUTFILE) or to insert it into custom table or to send it by email (i dont think sending email from mysql is possible!!)
Thanks for your help