Can we delete the data using IEFBR14 , IEBGENER??
Answers were Sorted based on User's Feedback
Answer / sukumar
Yes, you can delete it... using IEFBR14
//JOB1 JOB NOTIFY=&SYSUT1
//STEP1 EXEC PGM=IEFBR14
//DD1 DD DSN=ISAM12.CLASS.PGM12,DISP=(MOD,DEL,DEL),UNIT=3390
//SYSIN DD DUMMY
//
But IEBGENER is used to concatenate a dataset / edit / copy
| Is This Answer Correct ? | 24 Yes | 5 No |
Answer / tidda
just put DISP=(MOD,DELETE,DELETE)
pgm=XYZ will also do!
| Is This Answer Correct ? | 12 Yes | 6 No |
Answer / karunakar reddy
Hey Try as below and see if the below JCL can help.
//DELETEDS JOB (@),'PREP T-2 FOR R01',
// REGION=0M,
// CLASS=C,MSGCLASS=X,
// NOTIFY=&SYSUID
//JS10 EXEC PGM=IEBGENER
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DUMMY,DCB=SSR.TEST.FILE
//SYSUT2 DD DSN=SSR.TEST.FILE,DISP=(OLD,KEEP,KEEP)
//SYSIN DD DUMMY
//SYSUDUMP DD SYSOUT=*
| Is This Answer Correct ? | 4 Yes | 6 No |
Answer / biswaranjan
Its possible.But 1st you have to delete the dataset and
recreate a empty dataset with the same name.
//XXXXXXXX JOB TEST,'SORT',
// MSGCLASS=X,
// CLASS=C,NOTIFY=&SYSUID
//STEP1 EXEC PGM=IEFBR14
//DD1 DD DSN=XXXXXXX.WORK.TEST,DISP=(MOD,DELETE,DELETE)
//SYSIN DD DUMMY
//STEP2 EXEC PGM=IEFBR14
//DD1 DD DSN=XXXXXXX.WORK.TEST,DISP=(NEW,CATLG,DELETE)
//SYSIN DD DUMMY
//
| Is This Answer Correct ? | 4 Yes | 8 No |
Explain about ISPF/TSO Commands
what are the various stages of job processing?
what is use of disp parameter in dd statement?
Can we use empty VSAM as input?
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's the significance of freespace(0 0) and freespace(100 100)
What is TimeStamp, What is TimeStamp error and What is the Abend Code for TimeStamp Error ?
what is a MODELDSCB?
We are using 2 files , file one has data, file two is empty.Using jcl how can we find the other file is empty?
what is the compile process of cobol program expalin with code
what is the difference between return code and maxcc?
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.