What does IEBGENER do?

Answers were Sorted based on User's Feedback



What does IEBGENER do?..

Answer / guest

Used to copy one QSAM file to another. Source dataset should
be described using SYSUT1 ddname. Destination dataset should
be described using SYSUT2. IEBGENR can also do some
reformatting of data by supplying control cards via SYSIN.

Is This Answer Correct ?    43 Yes 0 No

What does IEBGENER do?..

Answer / pradeep

The IEBGENER can be used to call one JCL from another JCL,
example:

//TEST003 JOB 'SORT002',MSGCLASS=X,CLASS=T
//*
//STEP001 EXEC PGM=IEBGENER
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=XXX.GENERAL.STUDY(TEST001),DISP=SHR
//SYSUT2 DD SYSOUT=(A,INTRDR)
//SYSIN DD DUMMY

Here the TEST003 Job when submitted, we inturn submit the
JCL member XXX.GENERAL.STUDY(TEST001)

Is This Answer Correct ?    25 Yes 6 No

What does IEBGENER do?..

Answer / balakrishnan,maples148

used to copy a group of records of variable length from one
qsam file to another. the file may be ps or pds member..
source file must be specified in SYSUT1 and destination is
specified in SYSUT2.

Is This Answer Correct ?    23 Yes 5 No

What does IEBGENER do?..

Answer / shakila vinayagam

You can use IEBGENER to perform the following tasks:
1) Create a backup copy of a sequential data set, a member
of a partitioned data
set or PDSE or a UNIX system services (USS) file such as a
HFS file.
2)Produce a partitioned data set or PDSE, or a member of a
partitioned data set or
PDSE, from a sequential data set or a USS file.
3) Expand an existing partitioned data set or PDSE by
creating partitioned members
and merging them into the existing data set.
4) Produce an edited sequential or partitioned data set or
PDSE.
5) Manipulate data sets containing double-byte character
set data.
5) Print sequential data sets, members of partitioned data
sets or PDSEs or USS
files.
6) Reblock or change the logical record length of a data
set.
7)Copy user labels on sequential output data sets.

Is This Answer Correct ?    13 Yes 4 No

What does IEBGENER do?..

Answer / vijay

1.IEBGENER is used to copy contents from
* one PS to another PS/member of a PDS,
* one PDS member to a PS/member of a PDS.

2.It is also used to concatenate two datasets with same
BLK size.

3.The source can be a instream data/ a PS/member of a PDS.
The destination can be a PS/member of a PDS/spool data.

Is This Answer Correct ?    6 Yes 0 No

What does IEBGENER do?..

Answer / amar

000100 //TECH301A JOB CLASS=A,NOTIFY=&SYSUID
000110 //JCLLIB1 JCLLIB ORDER=USER.PROCLIB
000200 //STEP01 EXEC PGM=IEBGENER
000300 //SYSUT1 DD DSN=TECH301.AAAAA.PS,DISP=SHR
000400 // DD DSN=TECH301.BBBBBB.PS,DISP=SHR
000401 //SYSUT2 DD DSN=TECH301.CCCCCC.PS,DISP=SHR
000500 //SYSPRINT DD SYSOUT=*
000600 //SYSOUT DD SYSOUT=*
000700 //SYSIN DD DUMMY


BY using the IEBGENER we can pass two input files data into single output file

by
Amarnath k

Is This Answer Correct ?    5 Yes 2 No

What does IEBGENER do?..

Answer / aditya skand

using this utility we can also send emails

Is This Answer Correct ?    3 Yes 1 No

What does IEBGENER do?..

Answer / praveenkumar p

What to do the IEBUPDTE?????

Is This Answer Correct ?    3 Yes 2 No

What does IEBGENER do?..

Answer / mohan tk

1.Create backups of sequential dataset or create members of
partitioned dataset.
2.create partioned dataset or members from a sequential
input dataset.
3.copying a sequential dataset

Is This Answer Correct ?    0 Yes 0 No

What does IEBGENER do?..

Answer / guest

It is Dummy Utility. It is used to copy ps to
ps ,concentating data sets it will be ps file or pds file.

Is This Answer Correct ?    8 Yes 19 No

Post New Answer

More JCL Interview Questions

What is the meaning of the EXEC statement keyword, COND? What is its syntax?

2 Answers  


How much space OS allocates when you create a PS or PDS?

4 Answers  


If the COND parameter is specified in both the JOB and EXEC statements, which one will take precedence? If JOB takes priority and if all the conditions evaluate to false, then will the conditions on the EXEC step be evaluated next?

4 Answers   Wipro,


Explain COND used in JCL?

1 Answers   Patni,


how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?

0 Answers   IBM,


JCL Example: // //RUNJCL JOB CLASS=5,MSGCLASS=6,NOTIFY=&SYSUID //STEP01 EXEC PGM=IEFBR14 // .. .. If this JCL will run or it'll throw the ERROR?

4 Answers   HCL,


Explain the purpose of dd * statement in jcl?

0 Answers  


Is it possible to left uncode disp? If yes, how?

0 Answers  


what are the ways of passing data to a cobol program from jcl?

1 Answers   IBM,


i am trying to copy a PS file into VSAM file in step2 by using PGM=IDCAMS,COND=(0,LT) and the pS file is getting sorted in the step1. I got the return code 00 for step1 but step2 got flushed. can u please help on this. Below is My JCL. SEPP050 EXEC PGM=SORT,REGION=6144K SYSIN DD DSN=SYSCMN.PROD.CCLIB (F5910BNN), DISP=SHR SYSOUT DD SYSOUT=* SYSUDUMP DD SYSOUT=A SORTIN DD DSN=Z1225BT.F5910EPP.HISOUT, DISP=SHR SORTOUT DD DSN=Z1225BT.F5910EPP.HISOUT.SORTOUT5, DISP= (NEW,CATLG,DELETE),UNIT=DELQ, SPACE=(CYL, (500,500),RLSE), DCB= (RECFM=FB,LRECL=1606,BLKSIZE=16060,BUFNO=15) SORTWK01 DD UNIT=SYSDA,SPACE=(CYL, (1)) SORTWK02 DD UNIT=SYSDA,SPACE=(CYL, (1)) SORTWK03 DD UNIT=SYSDA,SPACE=(CYL, (1)) SORTWK04 DD UNIT=SYSDA,SPACE=(CYL, (1)) SYSIN1 DD UNIT=VIO,SPACE= (80,1) * SEPP060 EXEC PGM=IDCAMS,COND= (0,LT) SYSPRINT DD SYSOUT=* SYSOUT DD SYSOUT=* SYSLIST DD SYSOUT=* *** DD01 DD DSN=Z1225BT.F5910EPP.HISOUT.SORTOUT, // DISP=SHR //*** //DD01O DD DSN=Z1225BT.F5910PHS, // DISP=SHR, // AMP=(AMORG,'BUFND=12,BUFNI=5') //SYSIN DD DSN=SYSCMN.PROD.CCLIB(F5910BBB), // DISP=SHR Output RC for the two steps: SDCBPJ05 SEPP050 00 236 .00 .00 .0 SDCBPJ05 SEPP060 FLUSH 0 .00 .00 .0

3 Answers  


How many steps we can overide in the proc's?

2 Answers   CS,


What is GDG and what is the maximum limit of versions that can be created?

9 Answers   Convergys,


Categories