I have a dataset with record length 40 in production, due
to some requirements it was changed to 80. Then how can we
know the jobs which are effected by this change and how can
we resolve it.
Answers were Sorted based on User's Feedback
Answer / shrik
Search the information of all the jobs that use this
particular changed program.
Then u need to override/change the DCB parameter LRECL to 80
from 40 which wuld resolve the issue.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / rajaraman
if the dataset use any copybook,search in program
library.then u will get affected programs.then search in
the jcl library.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / vasanth
If you are using CA7 for scheduling , shift=f6 and give the
DSN name , it should show all the jobs using this data set
| Is This Answer Correct ? | 3 Yes | 0 No |
What are the kinds of job control statements?
What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
Explain about LMINIT - generate a data ID for a data set
Describe the various parameters utilized in the creation of a gdg?
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
In Job, there are 10 steps. If I want to execute the first 6 steps and don't want to execute from 7th to 10th step. What is the solution for this ?
what is the job entry system used in your project?
I have a dataset with record length 40 in production, due to some requirements it was changed to 80. Then how can we know the jobs which are effected by this change and how can we resolve it.
How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?
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 are JCLLIB and STEPLIB in JCL?