views:

126

answers:

2

I would like to execute a procedure periodically, how to do that in MySQL?

A: 

Hello, MySQL allow this with the Event Scheduler : http://dev.mysql.com/doc/refman/5.1/en/events.html

Kedare
+1  A: 

If you have MySQL 5.1 you can use events.

http://dev.mysql.com/doc/refman/5.1/en/events.html

Damodharan R