Equivalent in MySQL to MS SQL Jobs?

Go To StackoverFlow.com

4

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?

2012-04-04 22:02
by McGarnagle
I would actually consider it an operating system thing (e.g. cron - a_horse_with_no_name 2012-04-04 22:04
possible duplicate of what are required to run job scheduler in mysql?Ben 2012-04-04 22:22


5

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.

2012-04-04 22:18
by Sir Crispalot
Ads