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?
Asked
Active
Viewed 7,676 times
6
-
2I would actually consider it an operating system thing (e.g. `cron`) – Apr 04 '12 at 22:04
-
1possible duplicate of [what are required to run job scheduler in mysql?](http://stackoverflow.com/questions/5700522/what-are-required-to-run-job-scheduler-in-mysql) – Ben Apr 04 '12 at 22:22
1 Answers
6
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.

Sir Crispalot
- 4,792
- 1
- 39
- 64