View previous topic :: View next topic |
Author |
Message |
Bee_bop Beginner
Joined: 12 Dec 2005 Posts: 29 Topics: 15 Location: Singapore
|
Posted: Wed Jul 19, 2006 10:01 pm Post subject: IEBGENER : Conflicting DCB parameters |
|
|
Hi Experts,
I'm using IEBGENER to copy dataset but having an error of "CONFLICTING DBC PARAMETERS". My file LRECL is different form the input file. I need to use IEBGENER utility only, is there an option to make the IEBGENER process the copying of dataset ?
Thanks in advance.
Bee_bop |
|
Back to top |
|
 |
shekar123 Advanced
Joined: 22 Jul 2005 Posts: 528 Topics: 90 Location: Bangalore India
|
Posted: Wed Jul 19, 2006 11:44 pm Post subject: |
|
|
Beep Bop,
You need to have the same Dataset DCB attributes for SYSUT2 as SYSUT1 while copying datasets from one to another using IEBGENER .Check this info for the error IEB311I CONFLICTING DCB PARAMETERS
Code: |
IEB311I CONFLICTING DCB PARAMETERS
Explanation: The DCB parameters in the SYSUT2 DD statement are
not compatible with those specified in the SYSUT1 DD statement
(that is, (1) the I/O blocksize is not a multiple of the I/O
logical record length when the record format is FB, or F or (2)
the I/O blocksize is not at least 4 bytes larger than the I/O
logical record length when the record format is VB or V.)
Source: DFSMSdfp
System Action: The job step is ended. The return code is 12.
Application Programmer Response: Probable user error. Make sure
that the DCB parameters of the output DD statement are compatible
with the DCB parameters of the input DD statement, considering any
editing that was requested.
System Programmer Response: If the error recurs and the program
is not in error, look at the messages in the job log for more
information. Search problem reporting data bases for a fix for
the problem. If no fix exists, contact the IBM Support Center.
Provide the JCL and all printed output and output data sets
related to the problem.
|
_________________ Shekar
Grow Technically |
|
Back to top |
|
 |
Bee_bop Beginner
Joined: 12 Dec 2005 Posts: 29 Topics: 15 Location: Singapore
|
Posted: Thu Jul 20, 2006 12:37 am Post subject: |
|
|
Thanks for the info Shekar123, I guess we'll have to change the LRECL.
Regards,
Bee_bop |
|
Back to top |
|
 |
Jaya Beginner

Joined: 02 Sep 2005 Posts: 77 Topics: 10 Location: Cincinnati
|
Posted: Thu Jul 20, 2006 1:11 am Post subject: |
|
|
Beep_bop,
Check the following link for an IEBGENER example that edits and copies a sequential input dataset.
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/dgt1u104/6.9.7?DT=19990113105507
You can hard code spaces in the field parameter of the record statement to increase the output file length.
Hope this helps..
Thanks,
Jaya. _________________ "Great spirits have always encountered violent opposition from mediocre minds."
-Albert Einstein |
|
Back to top |
|
 |
|
|