Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Equivalent in MySQL to MS SQL Jobs?

Is there a MySQL equivalent to the MS SQL Server jobs and job scheduling? Or is that kind of thing considered an application-layer thing in the MySQL world?

like image 516
McGarnagle Avatar asked Apr 04 '12 22:04

McGarnagle


1 Answers

Are you looking for the Event Scheduler?

When you create an event, you are creating a named database object containing one or more SQL statements to be executed at one or more regular intervals, beginning and ending at a specific date and time.

like image 86
Sir Crispalot Avatar answered Oct 13 '22 10:10

Sir Crispalot