Previous Topic: SyntaxNext Topic: POSITION


Parameters

PDSSTATS supports the following values:

Y

Update the PDS member's statistics when the member had been updated. This is the default value.

N

Do not change the PDS member's statistics when the PDS member had been changed.

Example 1

This example will not update the PDS member's statistics, regardless of whether the members are changed or not.

COPY,
  OUTFILE(MSTRCOPY),
  REPLACEMEM(Y),
  PDSSTATS(N),
  IF(1,0,EQ,C'PGM=RATE4A'),
    REPLACE(1,0,C'REGION=',C'REGION=6M)

Example 2

This example will not UPDATE the member PRDCOPY statistics if the member is changed.

UPDATE,
  PDSSTATS(N),
  MEMBER(PRDCOPY),
  REPLACE(1,0,C'REGION=',C'REGION=6M)

Note: Use the MEMBER keyword to reference members directly.