how do u define a file in cobol and jcl ?
Answers were Sorted based on User's Feedback
Answer / venkateswarlu
In cobol we define a file by using 'SELECT' statement.
In jcl we define it by using 'DD' statement.
| Is This Answer Correct ? | 7 Yes | 0 No |
decalre file in cobol- select filename assign to dd1
in jcl - dd1 will be the ddname for your jcl
| Is This Answer Correct ? | 2 Yes | 0 No |
delete rules in db2
what is fixed length and variable length and difference between them
How we can code in a jcl to execute a job in a particular time and date without using any job shudular?. (Eg) i want to execute a particular job at 8 am on 01/01/2010.
how to increase the space of a dataset in instream procedure.
i have step1,step2,step3 from where can i start coding cond parameter ?
If i have defined an temperory dataset in step2, how can i call back or use the same dataset in step5 of the same job
Why we will create load module in PDS only, Why nt in PS?
Explain about LMQUERY�give a dialog information about a data set
what are JCLLIB and STEPLIB in JCL?
wt will happen to the step of a job if u code COND=ONLY
Suppose we have 5 steps in a job.No step should be executed After submitting every step in a job
i have a jcl in which 4 & 5 step creates a new generation. 4th step output is as input for the 6th step & 5th step output is used as input in the 7th step. How they are refered as in the 6th & 7th steps? If the job abends in 6th step then how the 5th step output is refered in 7th step?