InterviewSolution
Saved Bookmarks
| 1. |
Explain the usage of coding class parameters in JCL. |
|
Answer» In JCL, the CLASS is a keyword parameter that is used to classify the jobs that run in a particular OS installation. CLASS informs the operating system about the nature of the JOB that is being submitted. It prevents contention between jobs that use the same RESOURCE. A parameter like this aids in balancing the LOAD of all the jobs running in an environment. It can also be used to prioritize the execution of jobs. Syntax: CLASS= JOB-CLASSBelow are the POSSIBLE values for the JOB-CLASS:
Example: //JCL1234 JOB ‘max021’,’Ashish’CLASS=A |
|