You are not logged in.
Announcement
Unanswered posts
|
Pages: 1

In TOS or runing the Job out side of TOS, How to get the status of a Job run (success or failure) etc?
Also, How can we sequence the Jobs.. ie, I need to execute Job B after a sucesss of Job A etc.,
Thanks
Offline
for your second question you can create a third job that call the job A and after the job B with a trigger link OnsubjobOK
Last edited by cahsohtoa (2008-03-20 15:52:23)
Offline

thats that is wonderful
Offline

Plese anybody provide me how to get the job status if the job is successful or failed......java and perl project
Offline

Please help provide a way to get a job run status running outside of TOS 2.3.1
Offline
If the job success, the return code is 0. If the job fails, the return code will be anything but 0.
[pierrick@plegall] /tmp/export1/topic2470_failure
$ bash topic2470_failure_run.sh
The worksheet "first sheet" does not exist in this Excel book, existing worksheets are {}
[pierrick@plegall] /tmp/export1/topic2470_failure
$ echo $?
2
[pierrick@plegall] /tmp/export2/topic2470_success
$ bash topic2470_success_run.sh
1
2
3
[pierrick@plegall] /tmp/export2/topic2470_success
$ echo $?
0Offline
Pages: 1