mysql 事件调度
Posted zhu小伍
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 事件调度相关的知识,希望对你有一定的参考价值。
适用于mysql 5.1 及以后版本
1、查看是否开启
show variables like ‘%scheduler%‘
2、查看进程
show processlist
3、事件调度器默认是关闭的,通过下面命令开启
set global event_scheduler=1
4、简单创建一个事件
create event test_1 on schedule every 5 second do insert into test(time,age) values(now(),1)
5、禁止或者删除
禁用:alter event test_1 disable
删除:drop event test_1
以上是关于mysql 事件调度的主要内容,如果未能解决你的问题,请参考以下文章