TIME parameter in JOB statement or EXEC statement specifies
What type of time (CPU time or execution time)?
Answers were Sorted based on User's Feedback
Answer / varun
TIME specifies the maximum CPU time allocated for a
particular job or job step. If TIME is in the JOB card, it
relates to the entire job; if in the EXEC statement, it
relates to the job step.
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / sathish kumar
It is a amount of cpu time that a job or perticuler job
step is permitted to utilized before it is terminated.
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / varun
TIME parameter can be used to overcome S322 abends for
programs that genuinely need more CPU time. TIME=1440 means
no CPU time limit is to be applied to this step.
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / runjhun
TIME parameter in JOB statement specifies max. CPU
timelimit for the entire job whereas that coded in EXEC
specifies the time limit for that particular step only.
Is This Answer Correct ? | 1 Yes | 0 No |
How do you pass parameters to the program as the job is being executed ?
How system will identify whether user wants to create PS or PDS? If answer is SPACE parameter then why we need to pass ps or po as dataset organisation while creation
What is COND=EVEN ?
Can we have a JOBSTEP without any EXEC ?
What are the difference between jcl and jes?
which utility is used to update pds?
i have job card like this //job ***** //step1 exec pgm=iebgener //sysut1 dd dsn=main.sss,disp=shr // dd dsn=main1.sss,disp=shr // dd dsn=main2.sss,disp=shr //sysut2 dd dsn=out1.mmm ,disp=(new,catlg,delete) dcb=( ) // sysin dd * like this what i have to do to skip dsn=main1.sss please giveme answer asap
What is MOD and when would you use it?
Explain the purpose of dd * statement in jcl?
How can the submitting users racf authority be overridden in a job stream?
What does the keyword DCB mean and what are some of the keywords associated with it?
Write a JCL by using the below requirement: File1 =1, File2 =11 and output needs to come as File3 =111?