Copy a File from z/OS to HP NonStop Using the FASTLOAD Option

This Process is submitted at the HP NonStop node to copy an entry-sequenced file from z/OS to a key-sequenced file at the HP NonStop node. The SYSOPTS subparameter SET FASTLOAD SORTED sets FASTLOAD and indicates to FUP that the data is sorted.

This option (particularly useful for key-sequenced files) will bypass invocation of FASTSORT by FUP. The FASTLOAD option can be used to reduce disk I/O overhead. The XLATE subparameter is included in the Process to turn on the text conversion utility and translate from EBCDIC to ASCII.

FASTLOAD  PROCESS      PNODE=CD.HPNONSTOP                 -
                       SNODE=CD.OS390 		
STEP01    COPY  FROM  (DSN=OS390.ESDS.FILE                -
                       DISP=SHR SNODE)                    -
                TO    (DSN=$C.DATA.KSDS                   -
                       DISP=RPL                           -
                       SYSOPTS=("SET FAST.LOAD.SORTED Y"  -
                                "SET XLATE ON") PNODE)