Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


i have a base gdg consisting of 12 versions like jan to dec. i
need to concatante this gdg to another gdg which have version 1
or to the base gdg itself can anyone give me the code pls ?

Answers were Sorted based on User's Feedback



i have a base gdg consisting of 12 versions like jan to dec. i need to concatante this gdg to anoth..

Answer / sha

Assume, old gdg base is FINANCES.MONTHLY and new gdg base
is FINANCES.MONTHLY.NEW

The code to concatenate the old gdg 12 versions is

//STEP1 EXEC PGM=IEBGENER
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSUT1 DD DSN=FINANCES.MONTHLY,DISP=SHR
//SYSUT2 DD DSN=FINANCES.MONTHLY.NEW(+1),
// DISP=(,CATLG,DELETE),UNIT=DISK,
// SPACE=(CYL,(20,20),RLSE),
// DCB=*.SYSUT1

Please correct me if I'm wrong...

Is This Answer Correct ?    10 Yes 3 No

i have a base gdg consisting of 12 versions like jan to dec. i need to concatante this gdg to anoth..

Answer / user

//STEP1 EXEC PGM=IEBGENER
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSUT1 DD DSN=FINANCES.MONTHLY.G0001V00,DISP=SHR
DD DSN=FINANCES.MONTHLY.G0002V00,DISP=SHR
.....
DD DSN=FINANCES.MONTHLY.G0012V00,DISP=SHR
//SYSUT2 DD DSN=FINANCES.MONTHLY.NEW(+1),
// DISP=(,CATLG,DELETE),UNIT=DISK,
// SPACE=(CYL,(20,20),RLSE),
// DCB=*.SYSUT1

Is This Answer Correct ?    3 Yes 1 No

i have a base gdg consisting of 12 versions like jan to dec. i need to concatante this gdg to anoth..

Answer / guest

the version 1 will be for jan only

finances.monthly.G0001V00 - it is for Jan
finances.monthly.G0002V00 - it is for feb
...
...
finances.monthly.G0012V00 -it is for dec

Is This Answer Correct ?    1 Yes 1 No

i have a base gdg consisting of 12 versions like jan to dec. i need to concatante this gdg to anoth..

Answer / mdv

Technically, both answer #2 and #3 are correct. However,
answer #3 is better.


There are cases when the LRECL of some generations ( after
some change) are different from the others. In that case,
you cannot use the base.

You'll have to concatenate same LRECL files together and
proceed.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JCL Interview Questions

What are the parameters that are used in creating a gdg?

0 Answers  


can we modify the code in copy book? if it possible how to submit ofter the modification.

3 Answers   IBM, L&T,


How is a GDG base created?

5 Answers  


What does the TIME parameter signify ? What does TIME=1440 mean ?

6 Answers   Accenture, TCS,


What type of versions we r using in mainframe (jcl, cobol, db2, vsam, cics)?

1 Answers   Accenture,


How would I code JCL to copy a gdg data set G001v00 and create a gdg Data set G001v01

2 Answers  


what is the control cards?

3 Answers  


How to execute step2,step1,step3 when step1,2&3 are in order

6 Answers   TCS,


Please give me the coding for converting VB to FB and FB to VB

3 Answers   HP,


i want to restart frm step 2, previously i coded cond parameter on step2 wht happens at tht time ?

4 Answers   Infosys,


Can we create VSAM file by using IEBGENER?

4 Answers   Principal Finance,


Suppose a proc step has a DD statement like //ABC DD DSN=TEST.FILE1,DISP=SHR DSN=TEST.FILE2,DISP=SHR and the above DD name is overridden from the JCL as given below //procstepname.ABC DD DSN=TEST.FILE3 - Will the DD statement now have just TEST.FILE3 or it will be TEST.FILE3 and TEST.FILE2? Suppose if it is overridden twice like //procstepname.ABC DD DSN=TEST.FILE3 //procstepname.ABC DD DSN=TEST.FILE4 Will this give a JCL error? If not, what will be final output?

2 Answers  


Categories