JCL z/OS DFSMS - IEBCOMPR Compare Two PDSEs



Desenvolvido por DORNELLES Carlos Alberto - Analista de Sistemas - Brasília DF. - cad_cobol@hotmail.com

JCL z/OS DFSMS - IEBCOMPR Example 8: Compare Two PDSEs

In this example, two PDSEs are compared.
Neste exemplo, dois PDSEs são comparados.

  //DISKDISK  JOB ...
  //          EXEC PGM=IEBCOMPR
  //SYSPRINT  DD  SYSOUT=A
  //SYSUT1    DD  DSN=PDSE1,DISP=SHR
  //SYSUT2    DD  DSN=PDSE2,DISP=SHR
  //SYSIN     DD  *
              COMPARE TYPORG=PO
  /*

PDSEs no longer must be SMS managed.
Because these PDSEs are cataloged, you need not specify the UNIT or VOLUME parameters.
Os PDSEs não devem mais ser gerenciados por SMS.
Como esses PDSEs são catalogados, você não precisa especificar os parâmetros UNIT ou VOLUME.

The control statements are discussed, as follows:
As instruções de controle são discutidas da seguinte forma:

  • SYSUT1 DD and SYSUT2 DD define input PDSEs, PDSE1, and PDSE2.
    Because no DCB values are specified, the DCB values that were specified in creating the data sets will be used.
  • SYSIN DD defines the control data set, which follows in the input stream.
  • COMPARE TYPORG=PO indicates that the input data sets are PDSEs.

  • SYSUT1 DD e SYSUT2 DD definem PDSEs de entrada, PDSE1 e PDSE2.
    Como nenhum valor DCB é especificado, os valores DCB que foram especificados na criação dos conjuntos de dados serão usados.
  • SYSIN DD define o conjunto de dados de controle, que segue no fluxo de entrada.
  • COMPARE TYPORG = PO indica que os conjuntos de dados de entrada são PDSEs.

Parent topic: IEBCOMPR Examples



© Copyright IBM Corp.