Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i use the IEBGENER utilty to copy a member from one pds to another.

something similar to this:

//myjob job1
// exec pg=eibgener

??

don't know the the rest.

share|improve this question

2 Answers

Assuming the output PDS has already been created and contains sufficient space, you could try something like:

//jobname  your-jobcard-info                               
//stepname EXEC PGM=IEBGENER                    
//SYSUT1   DD DSN=input-pds(member),DISP=OLD 
//SYSUT2   DD DSN=output-pds(member),DISP=OLD
//SYSPRINT DD SYSOUT=*                          
//SYSIN    DD DUMMY                               
//*                                              

I think IDCAMS REPRO is more commonly used for this sort of thing these days.

share|improve this answer

Most folks use IEBCOPY for copying members from one PDS(E) to another. Sample JCL is available by following the link.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.