MVSFORUMS.com Forum Index MVSFORUMS.com
A Community of and for MVS Professionals
 
 FAQFAQ   SearchSearch   Quick Manuals   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Copy PDS to PDS getting message PDF0179I

 
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Utilities
View previous topic :: View next topic  
Author Message
chandra
Beginner


Joined: 26 Sep 2003
Posts: 130
Topics: 36

PostPosted: Sun Aug 09, 2009 4:13 pm    Post subject: Copy PDS to PDS getting message PDF0179I Reply with quote

Hi All,

I am trying to copy one PDS to New PDS, I am using IEBCOPY to do this as follows.

Code:
//JOBSTEP  EXEC  PGM=IEBCOPY
//SYSPRINT DD  SYSOUT=*
//SYSUT1   DD  DSNAME=PROD.JCL,
//             DISP=SHR
//SYSUT2   DD  DSNAME=TEST.TEMP.PDS,
//             DISP=(NEW,CATLG),
//             UNIT=SYSDA,
//             SPACE=(CYL,(20,20),RLSE)
//


I am getting " MEMBER LIST LIMIT EXCEEDED" message and no members has been copied to the output dataset. Could you please let me know how to do overide the LIMIT parameter in IEBCOPY ?

Code:
PDF0101I  START PDSFAST EXECUTION

PDF0103C   DEFAULT  COPY             OUTDD=SYSUT2,INDD=SYSUT1       * GENERATED
PDF0111I  UNLOAD:   SYSUT1   DSN=PROD.JCL                       VOL=PRDPKY(DISK)
PDF0112I            SYSUT2   DSN=SYS09221.T111853.RA000.TS09347L.TEMPPDS.H01   V
PDF0112I+ PS)

PDF0179I  MEMBER LIST LIMIT EXCEEDED - MEMBER MESSAGES WILL BE SUPPRESSED
PDF0131M  SYSUT1:   MEMBERS:    5,964 COPIED       0 NOT COPIED   5,964 TOTAL
PDF0132D            DIR BLKS:   1,491 USED       509 FREE         2,000 TOTAL
PDF0138S  SYSUT2:   TRACKS:     1,596 USED       204 FREE         1,800 TOTAL
PDF0146S            EXTENTS:        6 USED         0 FREE             6 TOTAL
PDF0143S            FORMATTED: 1,595.59 TRACKS  93,798,894 BYTES
PDF0144S            WRITTEN:    6,311 BLOCKS  72,229,600 BYTES
PDF0189I  END OF COPY STEP 1       - RC(0)
PDF0120P  JOB PERFORMANCE:   7.37 ELAPSED,  .06 TCB CPU,  245 EXCPS
PDF0199I  END OF PDSFAST EXECUTION - RC(0)

_________________
Regards,
Chandra
Back to top
View user's profile Send private message
superk
Advanced


Joined: 19 Dec 2002
Posts: 684
Topics: 5

PostPosted: Sun Aug 09, 2009 7:15 pm    Post subject: Reply with quote

A couple of observations:

1. You're not using IEBCOPY. You're using PDSFAST.
2. If SYSUT2 is supposed to be a new PDS, where in your space allocation are you specifying the number of directory blocks?
Back to top
View user's profile Send private message
chandra
Beginner


Joined: 26 Sep 2003
Posts: 130
Topics: 36

PostPosted: Sun Aug 09, 2009 9:56 pm    Post subject: Reply with quote

Hi Superk,

Thanks for the reply.

I don't know how PDSFAST program has been called from IEBCOPY.

I changed my space patameter to
Code:
SPACE=(CYL,(20,20,2000),RLSE)

Still I am getting same message


Code:
PDF0179I  MEMBER LIST LIMIT EXCEEDED - MEMBER MESSAGES WILL BE SUPPRESSED
PDF0131M  SYSUT1:   MEMBERS:    5,964 COPIED       0 NOT COPIED   5,964 TOTAL
PDF0132D            DIR BLKS:   1,491 USED       509 FREE         2,000 TOTAL
PDF0133M  SYSUT2:   MEMBERS:    5,964 ADDED        0 REPLACED     5,964 TOTAL
PDF0132D            DIR BLKS:   1,491 USED       509 FREE         2,000 TOTAL
PDF0138S            TRACKS:     1,686 USED       114 FREE         1,800 TOTAL
PDF0146S            EXTENTS:        6 USED         0 FREE             6 TOTAL
PDF0143S            FORMATTED: 1,641.17 TRACKS  96,477,822 BYTES
PDF0144S            WRITTEN:   12,258 BLOCKS  71,620,160 BYTES
PDF0189I  END OF COPY STEP 1       - RC(0)
PDF0120P  JOB PERFORMANCE:   2.33 ELAPSED,  .05 TCB CPU,  240 EXCPS
PDF0199I  END OF PDSFAST EXECUTION - RC(0)

_________________
Regards,
Chandra
Back to top
View user's profile Send private message
CZerfas
Intermediate


Joined: 31 Jan 2003
Posts: 211
Topics: 8

PostPosted: Mon Aug 10, 2009 7:23 am    Post subject: Reply with quote

Try this SYSIN-command to supress the member listing:
COPY OUTDD=SYSUT2,INDD=((SYSUT1,R)),LIST=NO

regards
Christian
Back to top
View user's profile Send private message
taltyman
JCL Forum Moderator
JCL Forum Moderator


Joined: 02 Dec 2002
Posts: 310
Topics: 8
Location: Texas

PostPosted: Mon Aug 10, 2009 8:02 am    Post subject: Reply with quote

I'm confused. The PDF messages in your second run indicates that it added the members. Are you sure that they aren't there?
Back to top
View user's profile Send private message
Bill Dennis
Advanced


Joined: 03 Dec 2002
Posts: 579
Topics: 1
Location: Iowa, USA

PostPosted: Mon Aug 10, 2009 8:59 am    Post subject: Reply with quote

It does appear that the msg is only informational and the PDSFAST ended RC=0. If someone only had the PDSFast documentation to look up the message ID!
_________________
Regards,
Bill Dennis

Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity.
Back to top
View user's profile Send private message
Terry_Heinze
Supermod


Joined: 31 May 2004
Posts: 391
Topics: 4
Location: Richfield, MN, USA

PostPosted: Mon Aug 10, 2009 9:40 am    Post subject: Reply with quote

Quote:
I don't know how PDSFAST program has been called from IEBCOPY.
Chandra,
IEBCOPY may have invoked PDSFAST similar to the way that sometimes IEBGENER invokes SORT depending on the parameters sent to it via SYSIN.
_________________
....Terry
Back to top
View user's profile Send private message Send e-mail
chandra
Beginner


Joined: 26 Sep 2003
Posts: 130
Topics: 36

PostPosted: Mon Aug 10, 2009 10:17 am    Post subject: Reply with quote

Hi All,

Thanks for all the help...It iw working fine now after changing the Directory blocks..
_________________
Regards,
Chandra
Back to top
View user's profile Send private message
Frank Yaeger
Sort Forum Moderator
Sort Forum Moderator


Joined: 02 Dec 2002
Posts: 1618
Topics: 31
Location: San Jose

PostPosted: Mon Aug 10, 2009 10:40 am    Post subject: Reply with quote

Quote:
sometimes IEBGENER invokes SORT depending on the parameters sent to it via SYSIN.


You have it backwards. IEBGENER does NOT invoke sort. DFSORT's ICEGENER (a replacement for IEBGENER) invokes IEBGENER when it cannot use DFSORT.
_________________
Frank Yaeger - DFSORT Development Team (IBM)
Specialties: JOINKEYS, FINDREP, WHEN=GROUP, ICETOOL, Symbols, Migration
DFSORT is on the Web at:
www.ibm.com/storage/dfsort
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Terry_Heinze
Supermod


Joined: 31 May 2004
Posts: 391
Topics: 4
Location: Richfield, MN, USA

PostPosted: Mon Aug 10, 2009 4:24 pm    Post subject: Reply with quote

My mistake -- thanks for the correction, Frank.
_________________
....Terry
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic   printer-friendly view    MVSFORUMS.com Forum Index -> Utilities All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


MVSFORUMS
Powered by phpBB © 2001, 2005 phpBB Group