Event not working in MySQL v5.5.30 - mysql

I have been trying to create an event within a MySQL Database (v5.5.30). I followed the syntax from the MySQL documentation and the event seems to create just fine without errors. However, it does not appear as if the event is actually executing. Here is the syntax ...
CREATE EVENT `Restock_Traders_Test`
ON SCHEDULE EVERY 1 MINUTE
ENDS '2013-07-31 00:00:00'
ON COMPLETION PRESERVE
DO update traders_data set qty = 25 where qty = 0;
Though the event is set to fire every minute I am only doing this for testing. I keep checking the table to see if the quantity is updated but it does not appear to be updated. Does anyone see anything wrong with my syntax? Is there something I missed?
Below is the results of running the SHOW EVENTS command
dayz_epoch Restock_Traders_Test myusername#% SYSTEM RECURRING NULL 1 MINUTE 2013-07-30 14:20:10 2013-07-31 00:00:00 ENABLED 0 latin1 latin1_swedish_ci utf8_general_ci

You need to enable the event scheduler, which is OFF by default:
SET GLOBAL event_scheduler = ON;
You can see if it's running by executing SHOW PROCESSLIST\G and seeing if you have a thread with the user event_scheduler.
Although the default is OFF, it's possible for the configuration to set it to DISABLED, which means you can't set it to ON at runtime. If that's the case, you'll need to change the setting in your configuration file.

Related

Creating Event in MySQL does not work

I am creating an event (like crone job) in MySQL to execute a query every 3 seconds but does not work. I tried my best. Here is my code please see if I am doing anything wrong
CREATE EVENT `croneJob`
ON SCHEDULE EVERY 3 SECOND
STARTS '2014-03-24 13:45:57'
ON COMPLETION PRESERVE ENABLE
DO
insert into ranktable values (1,2,3);
It successfully creates it but does not execute every 3 seconds
You have to start your MySQL server events scheduler:
SET GLOBAL event_scheduler = ON;
Loot at:
https://dev.mysql.com/doc/refman/5.1/en/events-configuration.html
As I know all events are executed by a special event scheduler thread.When we refer to the Event Scheduler, we actually refer to this thread.There is global event_scheduler system variable determines whether the Event Scheduler is enabled and running on the server.
Try to set the event_Scheduler on your command line.
SET GLOBAL event_scheduler = ON;
OR
SET GLOBAL event_scheduler = 1;
Read more about events.
Hope it will help you.
Even setting
SET GLOBAL event_scheduler = ON;
was not working so I put these lines in my.ini
[mysqld]
event_scheduler = ON
and is working great now.

Delete record with Event Scheduler

Just wanted to ask if this Event Scheduler works, also if once ran, it will continue to run as long as mySQL is running as a service?
SET GLOBAL event_scheduler = ON;
CREATE EVENT deleteVistors
ON SCHEDULE EVERY 1 DAY STARTS'2013-08-13 04:00:00'
DO
DELETE FROM tblwhitelist WHERE description = 'Vistors';
Also would this need a delimiter? I'm still unsure to what it actually is!
Hope you can help!
http://dev.mysql.com/doc/refman/5.1/en/create-event.html
Not using ENDS means that the event continues executing indefinitely.
CREATE EVENT deleteVistors
ON SCHEDULE EVERY 1 DAY STARTS '2013-08-13 04:00:00'
-- !!! no *END*: will continue until you explicitly drop the event
DO
DELETE FROM tblwhitelist WHERE description = 'Vistors';
For the second question:
Also would this need a delimiter?
MySQL use the semi-colon as statement delimiter. For multi-line statements (BEGIN ... END, etc.) this could be confusing for your MySQL client as the ; might appears inside those multi-line statements.
Here, you have only one ; so you don't have to bother with that.

MySQL event is not running after an interval

I have created an event in MySQL using this query:
delimiter $$
create event update_usability_score
on schedule every 1 day
starts '2013-01-07 18:22:00'
do
begin
insert into table_name(pk_id,name) values(1,"testing");
update table table_name set name = 'Not testing' where name like '%testing%';
end//
delimiter ;
When I run this for 1st time it's working fine and not showing any error. As I queried this event will run every day. But it is not running everyday.
When I check with this:
select name, last_executed from mysql.event;
it is showing the start date. Means it is not running everyday.
How to run this event everyday? Anything I have missed in the query?
Please help to solve this problem, thanks in advance.
You need to set ON COMPLETION PRESERVE option:
CREATE EVENT update_usability_score
ON SCHEDULE EVERY 1 DAY
STARTS '2013-01-07 18:22:00'
ON COMPLETION PRESERVE
DO
BEGIN
...
END
From the event documentation:
Normally, once an event has expired, it is immediately dropped. You can override this behavior by specifying ON COMPLETION PRESERVE. Using ON COMPLETION NOT PRESERVE merely makes the default nonpersistent behavior explicit.
This particular event would fail because the very first query in the event would fail if you would run it second time as id 1 would be already in the database.

How 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 `delete_rows_links`
GO
CREATE PROCEDURE delete_rows_links
BEGIN
DELETE activation_link
FROM activation_link_password_reset
WHERE TIMESTAMPDIFF(DAY, `time`, NOW()) < 1 ;
END
GO
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.html
Never used it but I hope this would work:
CREATE EVENT myevent
ON SCHEDULE EVERY 5 SECOND
DO
CALL delete_rows_links();
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 ENABLE
DO
call delete_rows_links();
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 GLOBAL
variable and should be set with SET GLOBAL:
mportant
It is possible to set the Event Scheduler to DISABLED only at server startup. If event_scheduler is ON or OFF, you cannot set it to DISABLED at runtime. Also, if the Event Scheduler is set to DISABLED at startup, you cannot change the value of event_scheduler at runtime.
To disable the event scheduler, use one of the following two methods:
As a command-line option when starting the server:
--event-scheduler=DISABLED
In the server configuration file (my.cnf, or my.ini on Windows systems):
include the line where it will be read by the server (for example, in a [mysqld] section):
event_scheduler=DISABLED
Read MySQL documentation for more information.
DROP EVENT IF EXISTS EVENT_NAME;
CREATE EVENT EVENT_NAME
ON SCHEDULE EVERY 10 SECOND/minute/hour
DO
CALL PROCEDURE_NAME();
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.

MySQL scheduling an event

I tried with this syntax but it never transferred the data.
CREATE EVENT event_test1
ON SCHEDULE EVERY 1 MINUTE STARTS '2010-09-02 15:19:25'
ON COMPLETION NOT PRESERVE ENABLE DO
insert into schema2.table1 (ID) select ID from schema1.table1 Limit 1000
I don't see the o/p in the table1 of schema2, what did i miss?
Did you turn events on?
SET GLOBAL event_scheduler = 'ON';
Also, the SHOW EVENTS command will show you if the event is there and running.