GDG Create syntax ?
Answers were Sorted based on User's Feedback
Answer / duraiece2001
//JOB1 JOB (A123),DURAI,NOTIFY=&SYSID,CLASS=A,
// MSGLEVEL=(1,1)
//STEP1 EXEC PGM=IDCAMS
//SYSIN DD *
DEFINE GDG(NAME(FINANCES.MONTHLY) -
LIMIT(5) -
NOEMPTY -
SCRATCH)
/*
//
| Is This Answer Correct ? | 26 Yes | 0 No |
Answer / ravichandra ch
//JOB1 JOB NOTIFY=&SYSID
//STEP1 EXEC PGM=IDCAMS
//SYSIN DD *
DEFINE GDG(NAME(FINANCES.MONTHLY) -
LIMIT(5) -
NOEMPTY/EMPTY -
SCRATCH/NOSCRATCH) -
/*
//
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / roman g.
Every answer here causes RC16 after run.
The reason is missing SYSPRINT DD in JCL.
...
//SYSPRINT DD SYSOUT=*
...
| Is This Answer Correct ? | 7 Yes | 2 No |
In JCL I have 5 steps,I need to execute 1st,2nd and 5th steps only,can any one answer me please?
Describe the JOB statement, its meaning, syntax and significant keywords?
How to run cobol program using jcl?
What is difference between Return Code, user completion code, Abend code and reason Code?
The maximum number of steps in a job?
how do you code a null statement?
I have 20 steps in a job... step01, 02....step17...step20. For some reason I want to execute step17 only if the return code for all the previous steps are less than or equal to 4. otherwise if return code for any of the previous 16 steps is greater than 4, then step17 should be bypassed. How do I do that ?? how and in which step should i formulate COND parameter
which utility is used to update pds?
What does SYSIN * indicate?
How to identify where file is empty or not? How many ways are there to identifying?
What are s0c1, s0c4, s0c5, s0c7 and socb?
is there any way to execute more than one proc in the same exec statement at the same time..?