ddxiami

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 2497|回复: 0

[文章] MySQL中的定时执行

[复制链接]
发表于 2013-8-16 11:00:35 | 显示全部楼层 |阅读模式
原文地址:http://ourmysql.com/archives/803?f=wb

    查看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)


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|技术文档库 ( 闽ICP备15017263号-2 )|网站地图

GMT+8, 2025-5-19 02:14 , Processed in 0.035105 second(s), 16 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表