Copy a Sequential File from a z/OS Node to an HP NonStop Node

The following Process transfers a sequential file from z/OS to HP NonStop. The Process is submitted on the z/OS node. Because the parameter SET EXT (50 50) is specified, the HP NonStop file system allocates 50 pages (one page=2048 bytes) to the primary extent and 50 pages to all secondary extents. Using the default for MAXEXTENTS results in a file with a capacity of 16 x 50 x 2048, or 1638400 bytes.

HPNONSTP  PROCESS      PNODE=CD.OS390.DALL              -
                       SNODE=CD.BILL                    -
                       SNODEID=(127.202,WILLIE)
STEP01    COPY  FROM  (PNODE DSN=SMITH.FDATA            -
                       DISP=SHR)                        -
          TO          (DSN=’$C.ROGER.TESTSND’           -
                       SYSOPTS=\"’SET EXT(50 50)’"   \  -
                       DISP=NEW)