What does IEBGENER do?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
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 |
Answer / aditya skand
using this utility we can also send emails
| Is This Answer Correct ? | 3 Yes | 1 No |
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 |
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 |
How to find the length of variable length copybook using fileaid ??
Explain about LMQUERY�give a dialog information about a data set
How To get the last record in VSAM file in cluster? and How can u get the ksds file records into ur cobol program ? Pls tell me about these two questions.
What are isolation levels? Where do we need to specify them in compiling JCL?
What parameter of the job statement is used to limit the cpu time consumed by the job?
If a job has 3 steps and step 1 and step 3 should get executed and step 2 should not get executed irrespective of the return code from the previous steps. How can it be done?
MOD, DELETE; What does a disposition of (,DELETE) mean ?
We have two PS files,want to compare those files and put the duplicate records in one file. Input file 1 contains(1,2,4,9,10) Input file 2 contains (1,4,5,11,12,14,16). Help me with jcl.
THERE IS ONE STEP AS BELOW: //STEPJS060 EXEC PGM=XYX, COND=((200,EQ,JS010),(0,NE,JS020.C),EVEN) COULD ANY ONE EXPLAIN HOW COND PARAMETER WORKS HERE? I AM CONFUSED BECOZ OF "EVEN".
What dd statement is used to supply the name of a dataset?
i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?
what is JCLLIB and PROCLIB in jcl and their syntax