InterviewSolution
Saved Bookmarks
| 1. |
If you have seven jobs to do, but you want to hold one at the same time, how can I accomplish this? |
|
Answer» Holding a job among the available ones is just a MATTER of following a set of PREDEFINED rules. As per JCL's predefined job rules, each job has a keyword. If TYPRUN is specified on the job statement, a job can be held for later EXECUTION. The TYPRUN holds a job with its variable name set to HOLD. Syntax: TYPRUN=HOLD //JTP JOB (P007),'Aayush' TYPRUN=HOLD |
|