I'm happy to live!

Develop with pleasure!

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  39 随笔 :: 2 文章 :: 31 评论 :: 0 Trackbacks
MySQL中的定时执行

 

  查看event是否开启

  show variables like '%sche%';

  将事件计划开户

  set global event_scheduler =1;

 

  创建存储过程test

  CREATE PROCEDURE test ()
  BEGIN
  update examinfo SET endtime = now() WHERE id = 14;
  END;

 

  创建event e_test

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

 

  每隔30秒将执行存储过程test,将当前时间更新到examinfo表中id=14的记录的endtime字段中去.

 

  关闭事件任务

  alter event e_test ON
  COMPLETION PRESERVE DISABLE;

 

  开户事件任务
  alter event e_test ON
  COMPLETION PRESERVE ENABLE;

 

  以上测试均成功,测试环境为mysql 5.4.2-beta-community mysql community server(GPL)

posted on 2009-11-20 00:25 Norsor 阅读(1372) 评论(2)  编辑  收藏 所属分类: 日常随笔

评论

# re: mysql中的定时运行 2009-11-20 17:42 tomcatlee
5.0.86-community-nt 没有 event_scheduler 这个变量?  回复  更多评论
  

# re: mysql中的定时运行 2009-11-20 19:38 乐蜂网
是的欧服idifdifudif  回复  更多评论
  


只有注册用户登录后才能发表评论。


网站导航: