Answer by Rishi Gautam for How to schedule a stored procedure in MySQL
In order to create a cronjob, follow these steps:run this command : SET GLOBAL event_scheduler = ON;If ERROR 1229 (HY000): Variable 'event_scheduler' is a GLOBALvariable and should be set with SET...
View ArticleAnswer by Nero for How to schedule a stored procedure in MySQL
I used this query and it worked for me:CREATE EVENT `exec` ON SCHEDULE EVERY 5 SECOND STARTS '2013-02-10 00:00:00' ENDS '2015-02-28 00:00:00' ON COMPLETION NOT PRESERVE ENABLEDO call delete_rows_links();
View ArticleAnswer by dee-see for How to schedule a stored procedure in MySQL
If you're open to out-of-the-DB solution: You could set up a cron job that runs a script that will itself call the procedure.
View ArticleAnswer by zerkms for How to schedule a stored procedure in MySQL
You can use mysql scheduler to run it each 5 seconds. You can find samples at http://dev.mysql.com/doc/refman/5.1/en/create-event.htmlNever used it but I hope this would work:CREATE EVENT myevent ON...
View ArticleHow to schedule a stored procedure in MySQL
I have this stored procedure. How can I run this for example with intervals of 5 seconds? Like a routine for eliminate data with a time-stamp older than one day?DROP PROCEDURE IF EXISTS...
View Article