mysql如何查看定时器有没有执行

mysql如何查看定时器有没有执行,第1张

mysql如何查看定时器有没有执行

1.查看是否开启evevt与开启evevt。

1.1、MySQL evevt功能默认是关闭的,可以使用下面的语句来看evevt的状态,如果是OFF或者0,表示是关闭的。

show VARIABLES LIKE '%sche%'

1.2、开启evevt功能

SET GLOBAL event_scheduler = 1

2.创建定时器的过程

2.1、创建测试表test

drop table if exists test

create table test

(

id int(11) not null auto_increment primary key,

time datetime not null

) engine=innodb default charset=utf8

2.2、创建evevt要调用的存储过程test_proce

delimiter //

drop procedure if exists test_proce//

create procedure test_proce()

begin

insert into test(time) values(now())

end//

delimiter

2.3、开启evevt(要使定时起作用,MySQL的常量GLOBAL event_scheduler必须为on或者是1)

执行show variables like 'event_scheduler'查看evevt是否开启;

若没开启执行set global event_scheduler='on'

2.4、创建事件test_event(其作用:每隔一秒自动调用test_proce()存储过程)

drop event if exists test_event

create event test_event

on schedule every 1 second

on completion preserve disable

do call test_proce()

2.5、开启事件test_event

转: mysql的定时任务一般用event(事件)来完成,触发器无法完成。 一、通过mysql的命令行客户端来完成 1、set global event_scheduler =1//开启event_scheduler 执行这个语句如果出现,可在mysql的配置文档中设置[mysqld]段中添加 event_sched.


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6426572.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-22
下一篇 2023-03-22

发表评论

登录后才能评论

评论列表(0条)

保存