I have scheduled some batches in solaris server cron tab, which is my db server. The probem is, that sometimes the batch runs but sometimes the same batch does not picked by cron to run.
Can anybody tell me what can be the reason for this?
Thanks in Advance.
Namrta
Harlin Seritt
Greenhorn
Joined: Apr 22, 2008
Posts: 4
posted
0
If you can post a copy of the cronjob entry and some code, I'll be happy to help you out.
Namrta Pandey
Ranch Hand
Joined: Jul 22, 2008
Posts: 36
posted
0
command which I have fired to schedule the batch is :
What am I missing? Where is 'cron' involved in the Java code? Are you saying you are running the Java as the cron job via a script and that this then uses Runtime.exec() to invoke another script? What does the cron email show when the process does execute and those times when the cron job does not execute?
Note1 - your cron job will not execute on the hour since 0 is not in the set of times.
Note2 - your use of Runtime.exec() is flawed. You need to read the 4 sections of http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html and implement ALL the recommendations. Failure to do so will just cause you more grief.
Retired horse trader.
Note: double-underline links may be advertisements automatically added by this site and are probably not endorsed by me.