What will happen if we try to create GDG (+2) generaton
instead of (+1) generation?
Answer / varun v
It will create a GDG generation which is one ahead of the
current generation.
Example:
Suppose the current generation is ***.G0001V00
and now instead of creating (+1), you have given (+2) in
your JCL and submitted the job. Now the new generation
created will be ***.G0003V00
Similarly if you give (+4) in the JCL, the new generation
created will be ***.G0005V00
| Is This Answer Correct ? | 19 Yes | 2 No |
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
Describe the cobol database components?
I try to use some column names in my cobol progorm but these column not in db2 table ..when do i get error ..while bind time or runtime?
WE HAVE 2 FILES IN COBOL. ONE IS FIXED LENGTH RECORDS ANOTHER ONE IS VARIABLE LENGTH. IF I DECLEAR LRECL OF FIXED ONE AS 80 AND 2ND RECORD AS 132. WHAT WE NEED TO DECLEAR LRECL FOR THOSE 2 FILES IN JCL?
I have a variable account-number declared as comp-3, s9(10) comp-3 in a file. How do i find a particular account number say 123456 in that file?
what is meaning by design document? who can repared for this?
what is the result of the following? DIVIDE A INTO B GIVING C. a.C=A/B b.the reminder of B/A is stored in C c.C=B/A d.the reminder of A/B is stored in C
Which is the best IBM mainframe Training Institute in Ameerpet, Hyderabad
Why IBM?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
What are the functions like c or c++ in cobol?
if a>b continue display x. dispaly y. end-if display 1 display 2. display 3. what should be my output ?