码迷,mamicode.com
首页 > 数据库 > 详细

MySQL作业

时间:2014-12-06 16:40:57      阅读:369      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   on   div   art   

创建作业事件

CREATE DEFINER=`root`@`%` EVENT `e_move_loginLog` ON SCHEDULE EVERY 1 MONTH STARTS 2015-01-01 05:30:01 ON COMPLETION NOT PRESERVE ENABLE DO CALL sp_moveLoginRecord()

 

创建作业事件

CREATE EVENT if not exists e_test 
on schedule every 30 second 
on completion preserve 
do call test(); 

 

查看event是否开启: show variables like %sche%; 
将事件计划开启: set global event_scheduler=1; 
关闭事件任务: alter event e_test ON COMPLETION PRESERVE DISABLE; 
开户事件任务: alter event e_test ON COMPLETION PRESERVE ENABLE; 

 

MySQL作业

标签:style   blog   io   ar   color   sp   on   div   art   

原文地址:http://www.cnblogs.com/zhuawang/p/4148365.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!