views:

24

answers:

1

i want to run a routine backup of my database from my java application. i'm actually considering a cron job within quartz to fire the backups at the specified time, but i don't know if thats the proper and most efficient way to do it. are there any other ways i can do it? and is there anything i should look out for??

+1  A: 

Yes you can definitely do this.

If you want to have database backup note that all databases have dedicated backup tools, so an external cron job may suit you as well.

David Rabinowitz