Using DBVisualizer is there any way to run a SQL Script or Command on a timer?
I am using MySQL
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
One option is MySQL 5's events (http://dev.mysql.com/doc/refman/5.1/en/create-event.html)
The other option is a scheduled task (cron in Linux). | |||
|
feedback
|
|
If run a job from cron every two minutes, it means you wouldn't have to have this application loaded/running. | |||
|
feedback
|